『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
-
新着順
Revision: 8278Author: gruehle@adobe.comDate: 2009-06-25 17:50:26 -0700 (Thu, 25 Jun 2009)Log Message:***********Change the borderColor for TabNavigator to match the border color of the other Spark skins.Bugs: SDK-20863Ticket Links:************ http://bugs.adobe.com/jira/browse/SDK-20863Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/defaults.css
Revision: 8277Author: gruehle@adobe.comDate: 2009-06-25 17:46:00 -0700 (Thu, 25 Jun 2009)Log Message:***********Use blendMode="normal" to fix problems with disabled appearance when baseColor is set.Bugs: SDK-19745, SDK-19762Ticket Links:************ http://bugs.adobe.com/jira/browse/SDK-19745 http://bugs.adobe.com/jira/browse/SDK-19762Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextAreaSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextInputSkin.mxml
Revision: 8274Author: gruehle@adobe.comDate: 2009-06-25 17:26:53 -0700 (Thu, 25 Jun 2009)Log Message:***********Remove redundant error event when loading style modules.Bugs: SDK-14699QE Notes: NoneDoc Notes: NoneReviewer: PaulTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-14699Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleManagerImpl.as
Revision: 8260Author: gauravj@adobe.comDate: 2009-06-25 14:35:39 -0700 (Thu, 25 Jun 2009)Log Message:***********Show tool tips in the left bottom frame (class list) to differentiate between two classes with the same name (but different package).QE Notes: None.Doc Notes: None.Modified Paths:************** flex/sdk/trunk/asdoc/templates/all-classes.xslt
Revision: 8245Author: gauravj@adobe.comDate: 2009-06-25 12:07:07 -0700 (Thu, 25 Jun 2009)Log Message:***********adding option (package-description-file) to specify file containing package descriptions for asdoc.Bugs: SDK-19755QE Notes: None.Doc Notes: None.Reviewed by: PaulTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-19755Modified Paths:************** flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocAPI.java flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_en.properties flex/sdk/trunk/modules/compiler/src/java/flex2/tools/ASDocConfiguration.java
It seems something changed with scrolling from build 452 (705274) to build 455 (706481). The below works fine in 452 (705274) but in 455 (706481) if i scroll down to the bottom i cant scroll back to the top. I origanlly thought it was an issue with images b/c we have a lot of InlineGraphicElements and saw some comments about scrolling issues with images in the last change log but made this test and its happening without them.<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalAlign="center" applicationComplete="init()"> <mx:Script> <![CDATA[ import flashx.textLayout.BuildInfo; im
Is there anyway to find out the x,y coordinates of a SpanElement, ParagraphElement or LinkElement as it scrolls in a scrollable TextArea?
Hi All,I created a simple html text where there is <font size ="somevalue"> text </font> then i imported it to textflow. And when i looked at textFlow formatting,,,i don't see the size is properly imported (i looked at fontSize property). Do you know if this is still an open issue and if you have a workaround?Thank you for your response,-Hoang Long
Hi,One more disappointing proplem for Japanese users was discovered.Japanese characters can't be printed in AIR version at all.Set AIR TLF, set hiragana or katakana alphabet and start to type > characters don't print.What the reason of this trouble it can be? Is there any solution?(Tried on Windows XP and Vista, Adobe AIR 1.5.1).Regards,Ann
helloI can't manage scrolling this is quite weird. I have a button with this action:controller.verticalScrollPosition+=controller.getScrollDelta(1);it works fine until the last line of text (which is always invisible). Then it stops and cannot event move back by:controller.verticalScrollPosition-=controller.getScrollDelta(1);just won't work. textFlow is as simple as possibletextFlow = TextFilter.importToFlow(markup, TextFilter.TEXT_LAYOUT_FORMAT);but if I import a plain texttextFlow = TextFilter.importToFlow(markup2, TextFilter.PLAIN_TEXT_FORMAT);scrolling doesn't work at all.
Dear Sirs,I need make a copy of textflow, but I'm having difficulties. I try to use the deepCopy, but it also copies the header <textflow /> , and when I insert in another textFlow, it's duplicate:var el1: FlowElement = textflow.deepCopy();textFlow2.replaceChildren(0, textflow.numChildren, el1);Result:<TextFlow whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008"><TextFlow whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008">Teste</TextFlow></TextFlow>Is there some way to go about this?
Hello,<br /><br />Eclipse 3.4.1 / Windows XP 64bits <br /><br />I installed the latest SDK and defined it as the default SDK.<br /><br />Then I tried to make an AIR application :<br /><br /><?xml version="1.0" encoding="utf-8"?><br /><FxApplication xmlns="http://ns.adobe.com/mxml/2009"><br /> <br /><layout><br /> <VerticalLayout/><br /></layout><br /><br /><Style><br /><br />@font-face<br />{<br /> src: url("fonts.swf");<br /> fontFamily: "Swansea";<br /> font-weight:normal;<br /> cff: true;<br />}<br /></Style><br /><br /></FxApplication><br /><br />XML namespace is :<br /><application xmlns="http://ns.adobe.com/air/application/1.5.1"><br /><br />It cannot compile :<br />transcoding parameter 'cff' is not supported by 'flex2.compiler.media.Mov
Hey,after some time of playing with the ASC classes I have got some questions regarding the Parser and how to put everything together.- The Parser does not know about block statements. Is there a reason for that? In parseBlock you just generate a StatementListNode but it would be great to know if those statements have been wrapped wih braces. Especially when you are going to support the let statement. This would be more a feature request. In general: it would be great if one could override any method of Parser. Parser is currently not a final class and most of the methods are private.- Is it correct that the Context is unique to a compilation unit while the ContextStatics are true for all units? If so, it seems like the global scope is built for each unit. Any reason for that or could I keep that static as well?- When compiling a single class I need to include of course builtin.abc, playerglobal.abc and toplevel.abc. This leads always to a cyclic dependency when using also the FlowAnal
Revision: 8149Author: gruehle@adobe.comDate: 2009-06-23 17:50:21 -0700 (Tue, 23 Jun 2009)Log Message:***********Remove dependency on UIComponent from mx.geom.Transform. This class is used by the Flex Component Kit, and cannot drag in UIComponent and its dependencies.Build new .mxp file with these changes.Bugs: SDK-21831QE Notes: NoneDoc Notes: NoneReviewer: JasonTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21831Modified Paths:************** flex/sdk/trunk/frameworks/flash-integration/FlexComponentKit.mxp flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/Transform.as
Revision: 8136Author: gruehle@adobe.comDate: 2009-06-23 16:16:49 -0700 (Tue, 23 Jun 2009)Log Message:***********Adjustments to default size and padding for TextInput and TextArea skins.TextInput default with is big enough to hold 10 characters (it will actually hold more than 10 "normal width" characters)TextArea padding matches TextInput paddingThese changes are done to the Spark and Wireframe skins.Bugs: SDK-16300 & SDK-16294QE Notes: New baseline bitmaps are needed (sorry Peter!)Doc Notes: NoneTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-16300 http://bugs.adobe.com/jira/browse/SDK-16294Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextAreaSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextInputSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/TextAreaSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/Text
Hi.I created a textflow, added a ParagraphElement to it that includes a few SpanElements and InlineGraphicElements..I've set the flowComposer with a ContainerController, and so far everything is fine: I can see the text and the graphics displayed correctly.I am listening to the COMPOSITION_COMPLETE event:(_textFlow.addEventListener(CompositionCompletionEvent.COMPOSITION_COMPLETE, onCompositionComplete);)on 'onCompositionComplete()' what I want to do is simply iterate through all the elements in the textflow and get their bounds (and other properties)I've succeeded iterating through the FIRST TextLine's elements like so:var tfl:TextFlowLine = _textFlow.flowComposer.findLineAtPosition(0); // get first textflowlinevar tl:TextLine = tfl.getTextLine(0); // get corresponding textlinevar regions:Vector.<TextLineMirrorRegion> = tl.mirrorRegions;for (var i:int = 0; i < regions.length; i++) { // regions.element= the element /
So, is it possible to add DisplayObject using xmlText property? Something like that:this._textLayout.xmlText = "<flow:TextFlow><flow:p><flow:img width="auto" height="auto" source="new Bitmap(new BitmapData(100, 100))" /></flow:p></flow:TextFlow>";Or I should parse string and replace <flow:img/> by ParagraphElement.addChildAt(0, InlineGraphicElement) ?Sorry for bad english.
hi,I've noticed that TLF consumes enormous amount of CPU. While trying to render text aprox. 45 000 of signs, player hangs for a long while (I have MacPro 2x2.66 GHz and 5 GB RAM) . It smoothly works at half of this, btw. Any ideas to speed it up, gain performance?Or should I try to divide text into pages, chapters etc. to avoid rendering all at once?cheers folks.
Hi all,I'm working on a project where the client wants to be able to click the text and have a side screen display some info about the text and be able to edit at the same time.So click the link and start typing in new text while the link's default action takes place, or my custom action.Any ideas on how to get this to work with the framework?
Revision: 8083Author: gauravj@adobe.comDate: 2009-06-23 06:38:58 -0700 (Tue, 23 Jun 2009)Log Message:***********Change FlexTask to load the jar that is specified in the task class. This makes asdoc html generation to work without setting the classpath in the <asdoc> task.modify asdoc build.xml to replace flex4 with spark.QE Notes: None.Doc Notes: None.Reviewed by: PaulModified Paths:************** flex/sdk/trunk/asdoc/build.xml flex/sdk/trunk/modules/antTasks/src/flex/ant/FlexTask.java
Hello, I'm new to the forum and I have been toying around with Gumbo for a while now. I tend to use states a lot and did notice that setting itemCreationPolicy to immedate is the new way to go if you want to have your controls initiated in order to work with them in actionscript before a specific state is entered. Nesting buttons and textinput controls inside containers like Box or Panel and setting includeIn or excludeFrom on those containers works like a charm, but if I want to have a specific control inside a container instantiated immedately I have to set includeIn and itemCreationPolicy on every child of the container that appears before the control I want to have access to in actionscript.Example:<mx:VBox horizontalAlign="center" width="100%" height="100%" id="receiverSearchBox" includeIn="FindReceiver,FindReceiverLoading,FindReceiverEx" itemCreationPolicy="immediate"><mx:Text text="{resourceManager.getString('evoChat2008','message_receiver_long')}" styleName="standardLa
im having problems with my embedded fonts. the show up as embedded using Font.enumerateFonts(false); , but they do not show up in the textflow.they do work in a textField using css.the fonts are embedded using exported library items from flash cs4 professional ide.ive tried embedding using embed tag. but i couldn't get it to work either.any hel appreciated!!!
Are there any installation instructions for FlexUnit 4? I am new tot he flex and flexunit world.thankswayne
We've open sourced the Flex Apache compiler module under the MPL license and can be found in SVN here. We won't be providing updates or new builds. However, we've open sourced it in hopes that the community members who are interested in using this compiler module can use it freely and maintain it.
this works in build 452, but not anymore in 455, i'm trying to change the color of clicked words to red.am I doing anything wrong?...... // create text flow, with paragraph and spans in it..._textFlow = new TextFlow();var p:ParagraphElement = new ParagraphElement();span.tlf_internal::getEventMirror().addEventListener(MouseEvent.CLICK, tfmo); // to enable regionsvar span:FlowElement;span = new SpanElement();(span as SpanElement).text = "hello" span.format = ef; // ef is some TextLayoutFormat I created earlier span.setStyle("wordObject", currWord);span.tlf_internal::getEventMirror().addEventListener(MouseEvent.CLICK, tfmc); // to enable regionsp.addChild(span);_textFlow.addChild(p); var cc:ContainerController = new ContainerController(container, container.width, container.height); _textFlow.flowComposer.addController(cc); _textFlow.addEventListener(CompositionCompletionEvent.COMPOSITION_COMPLETE, onCompositionComplete); _textFlow.flowComposer.updateAllControllers(); .........priva
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.