『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Revision: 9914Author: aharui@adobe.comDate: 2009-09-01 23:40:28 -0700 (Tue, 01 Sep 2009)Log Message:***********Revert 9892. Panel is used in too many other tests.Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ApplicationSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/defaults.css flex/sdk/trunk/frameworks/projects/wireframe/src/WireframeClasses.as flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/PanelSkin.mxmlRemoved Paths:************* flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/ApplicationSkin.mxml
Revision: 9892Author: aharui@adobe.comDate: 2009-09-01 16:06:51 -0700 (Tue, 01 Sep 2009)Log Message:***********Panel skin changes per XD spec, and a few other Panel Skin bugs. Default Panel size changed to match spec. Panel titles are now single-line and show ellipsis.QE Notes: Panel-related bitmap compares will need upgradingPanel_Properties_title5Panel_Properties_DfrdInst_nonePanel_Properties_DfrdInst_autoDoc Notes: NoneBugs: SDK-21680, SDK-21671, SDK-21666, SDK-19962, SDK-19959Reviewer: RyanAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/managers/PanelTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21680 http://bugs.adobe.com/jira/browse/SDK-21671 http://bugs.adobe.com/jira/browse/SDK-21666 http://bugs.adobe.com/jira/browse/SDK-19962 http://bugs.adobe.com/jira/browse/SDK-19959Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as flex/sdk/trunk/frameworks/projects/s
Revision: 9891Author: aharui@adobe.comDate: 2009-09-01 16:00:51 -0700 (Tue, 01 Sep 2009)Log Message:***********Change default value of ButtonBar and List labelField to "label". Improve code in LabelUtil to handle strings betterQE Notes: NoneDoc Notes: Yes, default value changedBugs: SDK-22930Reviewer: RyanAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/managers/ButtonBar, ListTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-22930Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/ListBase.as flex/sdk/trunk/frameworks/projects/spark/src/spark/utils/LabelUtil.as
Revision: 9890Author: aharui@adobe.comDate: 2009-09-01 15:57:01 -0700 (Tue, 01 Sep 2009)Log Message:***********Fix bug involving changes to tabbing related propertiesQE Notes: NoneDoc Notes: NoneBugs: SDK-19577Reviewer: CoreyAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/managers/FocusManagerTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-19577Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as
Revision: 9884Author: gruehle@adobe.comDate: 2009-09-01 12:38:49 -0700 (Tue, 01 Sep 2009)Log Message:***********Move CalendarIcon.png from sparkskins to framework.QE notes: N/ADoc notes: N/ABugs: SDK-22746Reviewer: Tests run: checkintestsIs noteworthy for integration: noTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-22746Modified Paths:************** flex/sdk/trunk/development/eclipse/flex/framework/.actionScriptProperties flex/sdk/trunk/frameworks/projects/framework/build.xml flex/sdk/trunk/frameworks/projects/sparkskins/build.xmlAdded Paths:*********** flex/sdk/trunk/frameworks/projects/framework/assets/CalendarIcon.pngRemoved Paths:************* flex/sdk/trunk/frameworks/projects/sparkskins/assets/CalendarIcon.png
I've noticed that FXG, and Spark in general, has very few [Bindable] properties, while in Degrafa, almost every property is [Bindable], some of the classes event have class [Bindable] tags. I am taking advantage of this greatly.Are you guys planning on making more of the properties [Bindable]? Or does the compiler auto-generate custom [Bindable] events in the background (that would be very nice)?A reasonable compromise would be to have each property dispatch a custom "myNameChange" event, only if "target.hasEventListener('myNameChange')". Otherwise this forces us into a position where, to bind to the properties, we have to extend every class and add that functionality.For instance, I would like to know when the "layout" changed on a skinnable container, and when "clipAndEnableScrolling" changes, but they're not [Bindable] like most of the other properties in there.To prevent a performance hit, you could just do something like Degrafa does, with custom events:[Bindable
Hi,If you use several dynamic ContainerContainer, the last container must NOT be empty. Otherwise you can get some #1009 error on text selection... in any case, it's my case.In my app, if the text in the TextFlow is not present in all containerController, it is impossible to select text. In the method scrollTimerHandler(event: Event) (on ContainerController), findFirstAndLastVisibleLine () return an array of null object, and an #1009 error is throws (lastVisibleLine is null).Now I test the existence of the text in all containerController, and it works fine. But It seems to me that is a little annoying if we not being able to create empty ContainerContainer...It's an unusual case of use ? The last ContainerController must not be empty? Perhaps, I use a bad way for the creation of containerControllers (even if it seems to me that this is not very complicated). anyone else with this type of problem?regardsFabien
Is there any way of stopping a FU4 test run that is currently in progress?Thanks,Brian
I found the TLF component in .net magazine issue 190. I went through the tutorial and everything went smooth execpt for adding images. After I insert the images and select send to stage, the images get deleted out of the editor and the stage doesn't update. I do have the component selected on the stage that I want to apply the images to. Any ideas?thanks
I need to determine the exact dimensions of a specific line of text within a ContainerController. I want to specify the y coordinate (relative to the top of the ContainerController), and deal with the line of text nearest to that point.Prior to Flash 10 text capabilities, when I wrote my own primitive linked containers based on TextFields, I was able to utilise TextField methods such as getCharBoundaries(), getLineIndexAtPoint(), getLineOffset(), getLineLength(), etc... to obtain precise measurements about characters and lines.Does the Text Layout Framework have equivalent methods? Or is it just a matter of working out which TextLine object is nearest to a particular y-coordinate (is there a method that does that efficiently?), and using various getAtom... methods?. . . . . . . . . . . . . . . .For an overview of my e2publish application (which I abandoned a couple of years ago, and I'm now looking at reviving using the Text Layout Framework) - see http://www.e2easy.co.cc/e
Hello Adobe,my small team is planing to build an application by using Flex SDK. As far as I know the SDK is free for download. But we will sell our application. Is there any licenses that we have to buy to be able to do that.Best regards
Revision: 9778Author: aharui@adobe.comDate: 2009-08-28 17:16:26 -0700 (Fri, 28 Aug 2009)Log Message:***********Change default creationPolicy for NavigatorContent to null. If null, NavigatorContent will check its parent Navigator's creationPolicy. If the parent Navigator's creationPolicy is "all", NavigatorContent will use "all" and create all of its children. Otherwise, NavigatorContent will use "none" as the creationPolicy.QE Notes: default value for creationPolicy is nullDoc Notes: default value for creationPolicy is nullBugs: NoneReviewer: RyanAPI Change: NoIs noteworthy for integration: Notests: checkintestsModified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/NavigatorContent.as
Revision: 9771Author: gauravj@adobe.comDate: 2009-08-28 14:33:53 -0700 (Fri, 28 Aug 2009)Log Message:***********Include class that were moved from framework_textLayout to spark project into spark.swcQE notes: None.Doc notes: NoneReviewed By: PeteTests run: checkintestsIs noteworthy for integration: NoModified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
Is it possible to do multiple packages in a single namespace in MXML without making a library project?<Application xmlns:myViews="package.one.*,package.two.*,package.three.*">That would be very useful because I keep my views in different packages (by use-case or whatever), and I end up having sometimes 10 namespaces like that. If I could merge them into one, that'd be nice.Thanks for the tip,Lance
Looking at the turnkey project theory tests, I see that no matter how many combinations are tried for a given theory there's only one result shown for the whole series of tests.I'd been hoping to use theories to construct data-driven tests, but have one test per datapoint reported. For instance, I'd have a "theory" that my code should be able to import any given input file and not throw errors. Then I'd put the theory to the test over a large set of files and get individual test results for each file in the set.Is this stretching the theory idea too far? Or should I be able to make a runner that would do this the way I want (creating unique test IDs for each data point, running through the entire data set if errors are encountered, etc.).
Revision: 9726Author: gauravj@adobe.comDate: 2009-08-27 17:46:09 -0700 (Thu, 27 Aug 2009)Log Message:***********Fix build by adding HostComponentExtension to AS3Compiler for asdoc.QE notes: None.Doc notes: NoneTests run: "ant doc" targetIs noteworthy for integration: No.Modified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocAPI.java
Hi,I'm trying to work out the equivalents of custom anti-aliasing (in the Flash IDE) within the Text Layout Framework (using a TextFlow containing Paragraph elements.) I've searched everywhere but can find no anti-aliasing properties?Thanks,Jamie
Man, it's very difficult to customize the animation system in spark. I realize that a lot of effort is going into it, but why not take a look at how simple and powerful openflux solved the problem?For instance, in Spark, mixed into the core of the ScrollBar and the Slider are "private" variables for an "Animation" object that controls animating scrolling. Hardcore... There are a few things difficult about this approach:1) You don't have access to that animator, other than through hard-coded instance methods that, if that philosophy were applied everywhere in Flex would get totally unmanageable.2) There is no consistency in the design in which these animators are used, no interface, it's almost like they're just there to solve some super specific case, but good luck trying to solve the next.3) It's built into the scrollbar, like the Scrollbar was built into the Flex 3 Container, and that wasn't the best idea. A "ScrollBar" doesn't by nature need an animator that
... or what should I use insetd of?
I am building a reader app using the text layout and text flow, but I am having difficulty setting certain styles ('formats') on paragraphs, particularly related to padding and margins. If I take the tlf markup I create and import it into the adobe labs rich text editor, all is well. This leads me to suspect that there is a problem with how I/we are implementing the text flow renderer/controller.Note some styles do work, such as indenting, bold, font, etc.Anyone seen this behavior and have a possible cause/solution?Thx,d
Revision: 9716Author: aharui@adobe.comDate: 2009-08-27 14:21:41 -0700 (Thu, 27 Aug 2009)Log Message:***********PARB changes for ViewStack. No more anticpated changes to these APIs.QE Notes: APIs are hopefully finalDoc Notes: APIs are hopefully finalBugs: NoneReviewer: RyanAPI Change: YesIs noteworthy for integration: Notests: checkintests mustella/containers/ViewStackModified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as flex/sdk/trunk/frameworks/projects/spark/src/spark/components/ButtonBar.as flex/sdk/trunk/frameworks/spark-manifest.xml flex/sdk/trunk/frameworks/tests/basicTests/halo/views/AccordionTests.mxml flex/sdk/trunk/frameworks/tests/basicTests/halo/views/TabNavigatorTests.mxmlAdded Paths:*********** flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ISelectableList.as flex/sdk/trunk/frameworks/projects/spark/src/spark/components/NavigatorContent.asRemoved Paths:************* flex/sdk/trunk
Revision: 9715Author: aharui@adobe.comDate: 2009-08-27 14:20:28 -0700 (Thu, 27 Aug 2009)Log Message:***********Introduce tabFocusEnabled to IFocusManagerComponent. This replaces tabEnabled as the way to remove a component from the tabbing loop. tabEnabled should be set to true for any component that can receive focus, and tabFocusEnabled determines whether the FocusManager will actually give it focus. If tabEnabled=false on a non-TextField, the player will sometimes momentarily remove focus and dispatch a focusOut when the component has focus and is later clicked on. This is now quite common with TLF-based text components so we are forced to make this change.QE Notes: tests using tabEnabled must now use tabFocusEnabledDoc Notes: needs documentationBugs: SDK-22731Reviewer: GordonAPI Change: YesIs noteworthy for integration: Yestests: checkintests cycloneTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-22731Modified Paths:************** flex/sdk/trunk/frame
Any ideas if you're going to make more properties in Spark optionally bindable?public function set prop(value:String):void{ _prop = value; dispatchBindingEvent("propChange");}protected function dispatchBindingEvent(type:String):void{ if (!suspendEventProcessing && hasEventListener(type)) dispatchEvent(new Event(type));}Doesn't seem to break anything.
In flex4, DisplayObjectContainerController was replaced by ContainerController, there is no contentWidth and contentHeight in the new ContainerController. So how can i get contentWidth and contentHeight which i used to autosize my sprite.
Hi,How we can achieve Two way binding between TLF and TextArea text, Keeping in mind that there may be multiple spans or multiple paragraphs.Please let me know this is very urgent for me.Rajesh
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.