『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hi,Is there a way to add the custom property to character format and save in to XML TextFlow without significant changes in TLF?
I have a swf that when viewed in the standalone player all fonts appear correctly. But when I load that swf into another swf, one of the fonts has seemingly random glyphs that don't get embedded, and instead show up as Times New Roman. The content of these text fields won't change at runtime and they don't have instance names. When I enumerate the fonts I can see that the font is embedded, so I don't understand why some letters and numbers show up in a different font. Any ideas on how to solve this?
When I scroll TLF with mouse wheel, also whole browser page scrolls. This is nothing new, I think we all know about this AS3 inconvenience (mouse wheel is working fine in AS2).But recently I discovered that mx.components.TextArea implements mouse wheel nicely, that is, if TextArea can be scrolled in delta direction, it is, and page scrolling gets blocked.So how is it with this scrolling issue? Can You block wheel scrolling outside flash somehow? Or is it internal flash feature, that only textArea can use? I think no one can answer this better then Adobe team.If unfortunately I guessed right about the internal thing, maybe there's a way for unelegant hack to use TextArea to capture mousewheel but not anything else?Thank You in advance!
Hi I am creating an application using TLF and I use this property textLayoutFormat.ligatureLevel =LigatureLevel.MINIMUM;I check it in Both FlashPlayer 10.0 and Beta 10.1, but it didn't reflect any changes.If anyone known how to use this property please let me know.Thanks.
Hi Guys,I think i have found a bug in the current Native Extensions implementation.Basically if you add an iOS 4 style block to your code then FlashBuilder can't build the project I get an error like this.ld: absolute addressing (perhaps -mdynamic-no-pic) used in -[MobileImagePicker searchForAlbums] from /var/folders/nw/nwjKk-0UFzKXgLSHtcbjxE+++TI/-Tmp-/530e198b-499e-4ee1-afb3-e566ea8d2bf3/libuk.co.betadesigns.extension.NativeImagePicker.a(MobileImagePicker.o) not allowed in slidable image. Use '-read_only_relocs suppress' to enable text relocsCompilation failed while executing : ld64In order to get rid of this error I had to set "Enable Linking with shared libraries" to NO which allows the application to build however as soon as i call context.createExtensionContext() the Application exits.Has anyone managed to get blocks working in an IOS extension?Any help or ideas would be much appreciated.ThanksAnthony
Hi,I am pretty new to 'TLF but have some understanding of fonts.If I read things right, TLF boils down to separating input into TextElement objects, and flash player does the rest. Now consider a font that provides style sets (not the predefined ones like lining / oldstyle digits but, say, medium an exaggerate swashes labelled ss01 and ss02). Is there any way to select such a feature?Also, for the predefined things, is there any way to find out whether a particular font supports them?
I've application when Im using RichEditableText in skin for TextInput. Also I'm binding "text" property from previosly entered text from server. If there is simple text, all is ok, if there are new lines (\n) after binding text to RichEditableText, whole app hangs or is it veeery slow. Cpu is 100%. In profiler I've found out, that there is infinite loop for recreating TextFlow objects. Really dont know what's problem.
When i using float property in image ... i am not able to select the image. If i am not using the float property i am able to select image. In red color line is my problem when i using the float property of image.My code:public function selectionChangeListener(event:SelectionEvent):void{ var cTF:TextFlow = event.selectionState.textFlow; // slect the correspondent managers for this selection if( selectManagersByTextFlow( cTF ) == false ) return; selectionState = event.selectionState; selectedElementRange = E
Is there any function to remove the list?// I can modify the list, but I don't know how to remove the list. it seems that there is no function to remove<?xml version="1.0" encoding="utf-8"?><s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:ai="http://ns.adobe.com/ai/2009" &
Hi guys,I have a thing to ask you that is making me crazy...I'm working on an application with text editor that uses TLF.I can apply styles and I can save persistently the text in an external xml file.When I play with text and styles it's all right. Problems arrive when I save the <TextFlow/> block in an external file and then reloads it in the application.(I save text with TextConverter.export() method );1st way I've tryed:when I reload text it misses space between styled text and common text:(myTextFlow.importToFlow( mySavedTextFlow, TextConverter.TEXT_LAYOUT_FORMAT);)for example when I save this text:"this is bold and this is normal but this is italic."I reload and view this:"this isboldand this is normal but this isitalic."2nd way I have tryied... is converting the xml <TextFlow/> block in a string and then assigning it to myTextFlow.tlfMarkup...If this was the original string: "this is bold and this is normal but this is italic."the loaded text appears like:"this
I created a bug for this issue over on the adobe Jira ( http://bugs.adobe.com/jira/browse/SDK-32076 )My problem is as follows:1. Focus into editable TextArea with a list element (eg Bulleted list) in its TextFlow. 2. Place cursor at first position within list element 3. insert a DBCS character using IME (User reported issue using Korean as example) Actual Results: List is destroyed and character appears as first character on line Expected Results: List remains, character is entered as first character after bullet I wonder if you have any ideas or can suggest a workaround?Thanks!
HiI installed flash builder4 premium trail version .After creating project when i click on the design mode . It displays an alert box containg the message like cannot load design mode with title as outof memory . How can slove this problem.Here i attached the image file.Thanks in advanceRegards---------ss
Hi,I noticed fonts are no longer displaying when switching from 4.5.1 to 4.6. The fonts are loaded with a .css-file (Compile CSS to SWF) and loaded with loadStyleDeclarations at applicationComplete. There's both embedAsCFF true and false fonts used. Everything works fine with 4.5.1, but 4.6 uses only default fonts. I have ran clean on the project a few times. According to the events there is no error in loading the style-swf.If I put the style section (from the css-file) inside the main application the fonts are working in 4.6 too.Any thoughts?
Is float property supported in Div TLF 2.0?
Hello,I have a chat with the support of smiles:When I copy the contents to clipboard I get the following output:User1 19:59Lorem ipsum 19:59Lorem ipsum User2 19:59Lorem ipsum Is it possible to define alternative text for graphic element and get something like this?User1 19:59: Lorem ipsum :) 19:59: Lorem ipsum :) User2 19:59: Lorem ipsum 🙂Thanks.
I need to dynamically change some attributes of my spark DataGrid at runtime, such as header colors, column colors and whether or not to show the grids row/col lines. I've seen hundreds of examples of doing this, but they are all hard-coded. For instance; by creating a custom "BlueGridHeaderRenderer" and the color is hard coded to Blue. What I need to do is to be able to change the color at runtime via ActionScript. For instance; by creating a MyHeaderRenderer and being able to set the color dynamically in code through either a function or property. Seems like a pretty simple request...but I've been banging my head against the wall on this one. Is this even possible?? If so, can someone share some sample code, or at least point me in a direction?Thanks!
I want to use various Arabic Fonts in Flash. I using AS3 and the textLayout.swc with the FDT in Eclipse. And compiling with the Flex SDK 4.0.0. The Compiler-Arguments are-default-size 780 260 -default-frame-rate 31 -static-link-runtime-shared-libraries=true -managers=flash.fonts.AFEFontManager -default-background-color 0xFFFFFF -library-path {flexSDK}/frameworks/locale/en_US --target-player=10.0.32I try this:Embed the Arabic Font in a Font-Class [Embed(source='../../../../assets/fonts/AXTGIB__.TTF', fontName='AXtGIhaneBold', mimeType="application/x-font", embedAsCFF="true")] public var AXtGIhaneBold : Class; public function Fonts() { Font.registerFont(AXtGIhaneBold); } Create a TextFlowElement and do this: textFlow = new TextFlow(); layoutFmt = new TextLayoutFormat(); layoutFmt.direction = Direction.RTL; layoutFmt.fontFamily = "AXtGIhaneBold"; 
List support in TLF 2.0.<s:list id="list1" listStylePosition="outside"> <s:li>Item 1</s:li> <s:li>Item 2</s:li> <s:li>Item 3</s:li> </s:list>My question is how i write above code piece in html. I try this <ul> <li>1111</li></ul>But i am not able print out list in TLF.Thanx in advanced.
Hi,In TLF 1.0 we used following code snippet to get image URL when Mouse is clicked with in TextFlow. The following code not working ever since i have updated to TLF2.1.Earlier, the image was also getting selected on Mouse click but not happening with this build. It always gives null on click. private function onMouseUp():void{ var textFlowLine:TextFlowLine = _textFlow.flowComposer.findLineAtPosition(_textFlow.interactionManager.anchorPosition) var textLine:TextLine = textFlowLine.getTextLine(); var caretIndex:int = _textFlow.interactionManager.anchorPosition - textFlowLine.absoluteStart; var inlineGraphic:Loader = textLine.getAtomGraphic(caretIndex) as Loader; if(inlineGraphic != null) { var url:String = LoaderInfo(inlineGraphic.contentLoaderInfo).url; &n
Hii'm in testing with a trial version of Flash Prof cs5.5.An application that work correctly with old version 1 of TLF, when use method tlf.textFlow.flowComposer.updateAllControllers(); return the error in title.there are differences in the parameters among old and new version?there are settings in Flash for use the old version textLayout_1.0.0.595.swz with cs5.5.thans in advanceJeanPaul
I am getting error while upgrading the flex sdk 4.1 to 4.6 in TLF. DescriptionResourcePathLocationType1044: Interface method changeTypeName in namespace flashx.textLayout.edit:IEditManager not implemented by class flash.text:EditManagerEx.EditManagerEx.asHTMLEditor/src/flash/textline 106Flex ProblemPlease suggest what i doing ..in order to get out this error.Thanx in advanced.
Hello,I am trying to achieve implementing hyperLink a content dynamically and even viceversa.Can any one have a solution for my query?Currently I am using TLF 2.1.ThanksRajesh
While Updating my Flash Builder 4.5 to 4.5.1, and 2 other updates, one being the AIR for Apple iOS support.When I try installing the update for the iOS support, I get the message: Update is not applicable. Error Code: U44M1P28
Hi,I have embeded unicode (Latha) font in flash.When i type, example(இதுபோல்), it is displayed very strangly.I am getting problem only when i embed the font. I have attached the screentshot of display for this word (இதுபோல்).Please someone help me to fix this.
I have a LinkElement in a RichEditableText's textflow. The link's href has encoded spaces in it (%20). If I catch a click event and debug down to the LinkElement level the href still appears correct, however when it opens in new browser tab the url has been re-encodedie %20 is now %2520 - as the % sign has itself been encoded. Is there a way that I can stop this behavior? Thanks
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.