『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Revision: 10144Author: aharui@adobe.comDate: 2009-09-10 18:46:11 -0700 (Thu, 10 Sep 2009)Log Message:***********Change Label verticalAlign to use "top" if there is too much text. RichText already works this way.QE Notes: NoneDoc Notes: NoneBugs: SDK-20589Reviewer: GordonAPI Change: NoIs noteworthy for integration: Notests: checkintestsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-20589Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
I have a text flow object that I want to add more FlowElements to. I want the FlowElements to be added to the last place the user clicked in the text flow.What I've tried is below.I create an xml object and add a link, image and some spans to a paragraph and then try to add it to the text flow that is already displaied.private function addNewText(){ var xml:XML = new XML( <p> <a href="www.byu.edu" target="_self" > <img height="auto" width="auto" source="http://www.insideria.com/riaimages/rss_icon. </a> <span>There are many </span> <span fontStyle="italic">such </span> &nb
Revision: 10129Author: gauravj@adobe.comDate: 2009-09-10 14:07:41 -0700 (Thu, 10 Sep 2009)Log Message:***********Fix for Multiple @Example not supportedQE notes: None.Doc notes: NoneBugs: SDK-22763 Tests run: checkintestsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-22763Modified Paths:************** flex/sdk/trunk/asdoc/templates/class-files.xslt flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.java
I want to monitor keystrokes and get most through the following code but do not get the enter key event. The enter key inserts a line into the textFlow but no event is passed to my listener. Is this a bug or do I need to listen for some keyboard events another way? var compSprite:Sprite = new Sprite(); compArea.rawChildren.addChild(compSprite); textFlow1 = TextFilter.importToFlow(markup, TextFilter.TEXT_LAYOUT_FORMAT); textFlow1.addEventListener(StatusChangeEvent.INLINE_GRAPHIC_STATUS_CHANGED, refreshFlow); contr = new ContainerController(compSprite, compArea.width, compArea.height); var undoMgr:U
So, i know the Indesign team helped with the Text Layout Framework, and I am actually using IDML alongside the framework to produce stuff (http://troyblank.com/workSamples/IDMLParser/)My question is about Kerning, so Indesign has Optical and Metric kerning if i understand kerning correctly, but the framework only kerns or not kerns, but from experimentation it appears the type of kerning the framework can only do is what Indesign calls optical, can anyone confirm this?Also if this is the case is there any plans to utlize any other kerning tables via the text layout framework?
How can I handle focusIn and focusOut events TextFlow ?Thanks in advance ..
Hii am trying to select my inline graphic after it is added to textflow.using filerefrence once image is loaded and following funcion is to handle thisfunction imageLoadComplete(e:Event):void { imgLdr.contentLoaderInfo.removeEventListener(Event.COMPLETE,imageLoadComplete); var mc:MovieClip = new MovieClip(); mc.addChild(imgLdr.content); mc.addEventListener(MouseEvent.CLICK,imageClicked); EditManager(textFlow.interactionManager).insertInlineGraphic(mc,100,100); textFlow.flowComposer.updateAllContainers();}when i click on image event is called. after click i passed this image to resize handler and here is to resize this. but it handles image only if cursor is at side of the image or image is selected in a way that it is highlighted. other wise modifyinlinegraphic is not working for me if i pass my movieclip refrence.Please help i have spen
Unlike for RC2, there is no pom inhttp://opensource.adobe.com/svn/opensource/flexpmd/maven-repository/release/com/adobe/ac/flex-pmd/1.0.RC3/Thi smake RC3 unsable with Maven, could you publish it please ?
I am trying to do it, but there is no effect!Help, please!
I've been developing quite a complex Flex App for a client using a lot of the functionality offered by TLF and the Rich Editable Text flex component.The app enables Maths authors to write questions like the one shown in the attached screengrabs.In the grabs you can see an issue which occurs infrequently but still occurs in the latest Flex SDK that I've just updated the app to (4.0.0.9948).The issue is in the instance of the RichEditableText component that displays the question. The first line of text seems to be getting overlaid by the second (perhaps the line height is being incorrectly measured by the TLF).The font used is embedded in the CSS.The second grab shows the focus on the text when highlighted. You can see that's incorrect too. Presumably this is related?I will try to put together a simplified project that reproduces the app but I thought I'd raise it here first to see if this is a known issue and whether there's a work around?ThanksNick
Is there a way I can suppress all the [flexPmd] INFO output from the ANT task?Thanks!Brian
How do you recompile the TLF source, the ant task?Thanks!Lance
Consider the following scenario:- write text on a line- click ENTER- insert a graphic- select both lines=> as a result, at the end of the first line, an inaccesible empty space is selected.Also, if you write "www" on the first line and add a graphic on the second, the selection size when selecting all will be 5... My guess is it should be 4.
Hi there,I have been having a play with the TLF and I am having issues with images that I am loading from within the content.images load fine but if I have a base TextLayoutFormat with lineHeight set the image flows over the text.ideally I would like the text to flow around the image but I haven't been able to work out how to do this.any help would would be appreciated.var flow:TextFlow; var format:TextLayoutFormat = new TextLayoutFormat();format.fontFamily = "fontArial";format.fontSize = 18;format.color = 0x434244;format.kerning = Kerning.ON;format.lineHeight =28.8;format.renderingMode = RenderingMode.CFF;format.fontLookup = FontLookup.EMBEDDED_CFF;var config:Configuration = new Configuration();config.textFlowInitialFormat = format; firstContainer.x = 30; firstContainer.y = 60;
What is the best way to dynamically add links and images, or how do we even do that, assuming I'm using the Flex RichEditableText or TextArea? Do I have to manually create a LinkElement and somehow splice it into the TextFlow? If so, how may I go about doing that?Thanks so much for your help,Lance
When calling addChild on a FlowGroupElement, modelChange is called for the added child. I think the parent model should be notified of the change as well (modelChange should be called on the parent).If I missunderstood the usability of modelChange function, please offer an alternative. What I need is a generic function to override when the parent model changes (children are added, removed).
hiHow can I get/set all <img> tags ( source , width , height) when select the image and when the cursor is on the image as on http://labs.adobe.com/technologies/textlayout/demos/ ?thanks
Revision: 10078Author: gruehle@adobe.comDate: 2009-09-08 18:13:29 -0700 (Tue, 08 Sep 2009)Log Message:***********Fix SDK-23092 - DateChooser needs to honor the "dropShadowVisible" style.Ticket Links:************ http://bugs.adobe.com/jira/browse/SDK-23092Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DateChooser.as
Revision: 10077Author: gruehle@adobe.comDate: 2009-09-08 18:06:01 -0700 (Tue, 08 Sep 2009)Log Message:***********This should have been part of revision 10064. Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
Revision: 10076Author: gruehle@adobe.comDate: 2009-09-08 18:04:12 -0700 (Tue, 08 Sep 2009)Log Message:***********Redo fix for SDK-23080, since the last one introduced more problems.Ticket Links:************ http://bugs.adobe.com/jira/browse/SDK-23080Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RectangularDropShadow.as
Revision: 10071Author: gruehle@adobe.comDate: 2009-09-08 15:30:13 -0700 (Tue, 08 Sep 2009)Log Message:***********More styling bug fixes.QE notes: NoneDoc notes: NoneBugs: SDK-23079, SDK-23080, SDK-23090Reviewer: JasonTests run: checkintestsIs noteworthy for integration: noTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-23079 http://bugs.adobe.com/jira/browse/SDK-23080 http://bugs.adobe.com/jira/browse/SDK-23090Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/defaults.css flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RectangularDropShadow.as flex/sdk/trunk/frameworks/projects/spark/defaults.css flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/BorderSkin.mxml
Revision: 10068Author: jacobg@adobe.comDate: 2009-09-08 14:41:09 -0700 (Tue, 08 Sep 2009)Log Message:***********Add ASDoc example for Spark BorderAdded Paths:*********** flex/sdk/trunk/frameworks/projects/spark/asdoc/en_US/spark/components/examples/BorderExample.mxml
Revision: 10064Author: gruehle@adobe.comDate: 2009-09-08 12:59:34 -0700 (Tue, 08 Sep 2009)Log Message:***********Spark skins for all containers now use backgroundColor and backgroundAlpha styles instead of contentBackgroundColor and contentBackgroundAlpha. All controls (including List and NavBar/ButtonBar) continue to use contentBackgroundColor and contentBackgroundAlpha.Add new MX ContainerBorderSkin.QE notes: This should clear up some failures from last week. ContainerBorderSkin needs tests that are independent from BorderSkin tests.Doc notes: None.Bugs: SDK-23038, SDK-23037, SDK-Reviewer: pendingTests run: checkintestsIs noteworthy for integration: yesTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-23038 http://bugs.adobe.com/jira/browse/SDK-23037Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/defaults.css flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as flex/sdk/trunk/frameworks/projects/halo/defau
Revision: 10058Author: aharui@adobe.comDate: 2009-09-08 11:18:22 -0700 (Tue, 08 Sep 2009)Log Message:***********Fix DataGrid bugs. dragscrolling was not getting turned off (a potential module leak issue). IPEs were resetting the cursor when they probably shouldn't.QE Notes: NoneDoc Notes: NoneBugs: SDK-15433. SDK-15026Reviewer: CoreyAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/managers/DataGrid, ListTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-15433 http://bugs.adobe.com/jira/browse/SDK-15026Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridBase.as flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as
Hi,I am trying to build flexPmd from sources and facing an error saying that:...[INFO] ------------------------------------------------------------------------[INFO] Building Adobe Flex PMD Ruleset creator[INFO] task-segment: [clean, install][INFO] ------------------------------------------------------------------------[INFO] [clean:clean]Downloading: http://repository.sonatype.org/content/groups/public//com/adobe/ac/flexunit-theme/1.0/flexunit-theme-1.0.pom...Downloading: http://fna-v2.googlecode.com/svn/trunk/fna_m2_repository//com/adobe/ac/flexunit-theme/1.0/flexunit-theme-1.0.swc[INFO] ------------------------------------------------------------------------[ERROR] BUILD ERROR[INFO] ------------------------------------------------------------------------[INFO] Failed to resolve artifact.Missing:----------1) com.adobe.ac:flexunit-theme:swc:1.0...I've tried to find the missing library on the Internet... with no success so far. Could anybody help me with that?Regards,
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.