『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Revision: 14141Revision: 14141Author: deeptika@adobe.comDate: 2010-02-12 00:07:28 -0800 (Fri, 12 Feb 2010)Log Message:***********Spark AT Marshalling: Registering the application so that appropriate listeners can be added by AutomationManager to support automation of marshalled spark applications.QE notes: Doc notes: Bugs: FLEXENT-1234 - (id is incorrect for marshalled spark WindowedApplication)Reviewer: Tests run: CheckintestsIs noteworthy for integration: Ticket Links:*********** http://bugs.adobe.com/jira/browse/FLEXENT-1234Modified Paths:************** flex/sdk/branches/4.x/frameworks/projects/automation_spark/src/spark/automation/delegates/components/SparkApplicationAutomationImpl.as
Revision: 14139Revision: 14139Author: klin@adobe.comDate: 2010-02-11 16:36:39 -0800 (Thu, 11 Feb 2010)Log Message:***********Fix for Player classes not code hinting to framework FB projects. Changed all the $ tokens to use $ instead. While the compiler understands $, Flash Builder's code model does not.No code changes.QE notes: N/ADoc notes: N/ABugs: NoneReviewer: PeteTests run: checkintestsIs noteworthy for integration: NoModified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties flex/sdk/trunk/frameworks/projects/sparkskins/.
There's a bonafide bug that I've reported through the Adobe bug tracking system, but I really need afix now, so was going to have a look at the flex/as3 source and was wondering if anyone could point me in the right direction, (or better yet, provide the solution.)Its easy to reproduce this:I was just able to duplicate the bug using the code example from the end of the Text documentation page in Flex 3.5 reference.(http://livedocs.adobe.com/flex/3/langref/mx/controls/Text.html)Just replace their htmlText in that example with a huge block of htmlText containing anchors tags. Then make the browser window small. Then click some arbitrary area of the htmlText with the mouse (That step is important.) Then scroll using the thumb. Stop the scroll with the mouse pointer directly over one of the hyperlinks you created and release the mouse button. The entire block of htmlText is selected and highlighted and the mouse pointer will not revert to a hand. (Well it will after you click somewhe
I'm trying to write just a simple test ensuring that a TextInput control has focus when a component is loaded. However focusManager is null even after I've used the UIImpersonator class to setup my component. Am I doing it wrong or is this a bug?UIImpersonator.addChild(sc);Assert.assertEquals(sc.itemInput.name, Object(sc.focusManager.getFocus()).name);
Revision: 14073Revision: 14073Author: gauravj@adobe.comDate: 2010-02-09 13:22:00 -0800 (Tue, 09 Feb 2010)Log Message:***********Merge branch revision 4.x, 14072 --> trunkModified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.java
Revision: 14072Revision: 14072Author: gauravj@adobe.comDate: 2010-02-09 13:04:43 -0800 (Tue, 09 Feb 2010)Log Message:***********Adding support for optional description to the @productversion ASDoc tag.QE notes: None.Doc notes: NoneBugs: SDK-24999Reviewed By: PaulTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24999Modified Paths:************** flex/sdk/branches/4.x/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.java
Hi, I am using a combo box that is populated with arabic data, the problem I am facing is that the text in the combo box is being shown from left to right while arabic language is from right to left. I used TLF for text editor and it's working great, but I couldn't figure out how to use it with combo boxes, and also I couldn't find anything on the web regarding this issue. Any suggestions on how I can solve this issue. Thanks for your help, iNour
Hi,Any idea why DefaultItemRenderer (http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/DefaultItemRenderer.as) is not inheriting from ItemRenderer (http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/ItemRenderer.as)?Thanks,
Revision: 14064Revision: 14064Author: klin@adobe.comDate: 2010-02-09 10:47:24 -0800 (Tue, 09 Feb 2010)Log Message:***********Add Sort and SortField to the spark manifest. This allows us to refer to them under the spark namespace when populating the sort property of an ArrayCollection.QE notes: NoDoc notes: NoBugs: SDK-25356Reviewer: GlennTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-25356Modified Paths:************** flex/sdk/trunk/frameworks/spark-manifest.xml
Is the the bug in my test case or in the TLF code (Flex 4.0.0.13555)?public class UndoBugTest extends TestCase{ //========================================================================== // // set up and tear down // //-------------------------------------------------------------------------- private var app:Application private var container:UIComponent private const ANY_URL:String = "http://livedocs.adobe.com/" protected function get initialImport():XML { return <TextFlow color="#000000" fontFamily="Tahoma" fontSize="14" fontStyle="normal" fontWeight="normal" lineHeight="130%" textDecoration="none" whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008"> &nbs
Revision: 14047Revision: 14047Author: klin@adobe.comDate: 2010-02-08 14:58:51 -0800 (Mon, 08 Feb 2010)Log Message:***********Modifying framework projects to not depend on the FLEX_SDK linked resource. Instead, we use the $ token (relative path to frameworks/) to point directly to the required swcs in the libs folder. This greatly simplifies the files, since there is now no need to exclude swcs from the SDK.Also, modified the projects such that the spark and framework projects may be imported together to FB without any other projects by having them depend on the swcs in the libs folder rather than the projects. However, other projects that depend on spark and framework will depend on the projects still. Thus, you must import spark and framework projects before importing the others.A developer working on the textlayout and osmf projects will have to replace the swcs on the build path in the spark/framework projects with their respective projects.No code changes.QE notes: N/ADoc not
Hi,I'm trying to get a timer event to update an internal variable in a class accessible through bindable getter, but it's not working. The timer event fires, I can see this in debug mode but apparently the change propagation through binding on the event doesn't work. I've been staring at this for half an hour and would really like to know what I'm doing wrong, if you have an idea please let me know.This is my class:package managers { import flash.events.Event; import flash.events.EventDispatcher; import flash.events.TimerEvent; import flash.utils.Timer; [Bindable] public class TestEventBinding extends EventDispatcher { public static const MYEVENT:String = "myevent";
Hi,I am unable to update the text within a TLF. This must be pretty basic, but am overlooking something.This is the pseudo code:pg_xml = new XML(str);textFlow = TextConverter.importToFlow(pg_xml, TextConverter.TEXT_LAYOUT_FORMAT);var tlf_sp = new Sprite();textFlow.flowComposer.addController(new ContainerController(tlf_sp, width, height));tlf_sp.x = posx;tlf_sp.y = posy;textFlow.flowComposer.updateAllControllers();addChild(tlf_sp);Elsewhere, the text needs to be updated:pg_xml = new XML(str);textFlow = TextConverter.importToFlow(pg_xml, TextConverter.TEXT_LAYOUT_FORMAT);//TODO: figure out how to update text! updateAllControllers doesn't work.//textFlow.flowComposer.compose(); //-- Didn't work.//textFlow.flowComposer.updateAllContainers(); //-- Though this couldn't be used, I was just trying out, but didn't work either.textFlow.flowComposer.updateAllControllers();TLF version used: 4.0.0.13895I just need to update the contents of a TLF rather than recreating a new textflow. Any help will
Hello,I've been reading the FlexUnit docs and playing with the FlexUnit4Turnkey project. Assuming I have an existing Flex/AIR application that I want to start writing tests against should I be creating a new Flex application that contains my unit tests which has a reference to the project I am testing so that I can instantiate those classes and call methods on them? I assume that I do not write all my unit tests directly in my actual application! Also, is it possible to automate an Adobe AIR desktop application for UI testing?ThanksKevin
Revision: 14017Revision: 14017Author: klin@adobe.comDate: 2010-02-05 16:16:37 -0800 (Fri, 05 Feb 2010)Log Message:***********Fix for icons being off-center in the wireframe CheckBox and RadioButton. The icon was not being vertically centered.QE notes: NoDoc notes: NoBugs: SDK-25304Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-25304Modified Paths:************** flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/CheckBoxSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/RadioButtonSkin.mxml
Revision: 14016Revision: 14016Author: klin@adobe.comDate: 2010-02-05 16:12:41 -0800 (Fri, 05 Feb 2010)Log Message:***********Fix for List RTE when dropping into list with null dataProvider. If the dataProvider is null, we create an ArrayCollection to hold items being dropped in the List.QE notes: NoDoc notes: NoBugs: SDK-25218Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-25218Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as
Hi guys,Is this ture to say that for every button that has an icon in spark, a new skin should be created?
It's all in the title really. I was hoping there might be a way to check if the user had a certain font already installed on there computer to try and save loading the font at runtime when not needed. Is this possible with Flex4 and the new TLF?ThanksOllie
I have an HSlider that filters products displayed by min & max prices. When a thumb is pressed, the data tip shows the price at the slider point where the thumb sits at that moment.My question: how would I reference those thumb data tip values so I can display them on labels above the slider?In other words, I want the thumb data tip to remain visible to the user, not go away when the thumb is releasedAny tips? (I don't mean data tips).Carlos
Hello fellow developers,I wonder if it is possible to set a minimum height or a fixed height for a DIV container (P container, SPAN conrainer) like in HTML?Thank you!
Revision: 13959Revision: 13959Author: jimurphy@adobe.comDate: 2010-02-03 08:39:37 -0800 (Wed, 03 Feb 2010)Log Message:***********Create branch 4.x based on Trunk rev 13597Added Paths:*********** flex/sdk/branches/4.x/
Hi all, I've updated to the last beta 2 of Flash Player 10.1 (10,1,51,66) and compiled this simple Flex application to illustrate the fact that not all chinese characters can be displayed correctly with non-embedded text (device font).<?xml version="1.0" encoding="utf-8"?><s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768" creationComplete="resourceManager.localeChain = ['zh_CN'];" layout="{new VerticalLayout()}">
I have following TLF XML:private var text:XML =<flow:TextFlow fontSize="20" paddingRight="50" paddingBottom="50" paddingTop="50" paddingLeft="50" whiteSpaceCollapse="preserve" xmlns:flow="http://ns.adobe.com/textLayout/2008"> <flow:p> <flow:span>Hallo liebers Programmili... du tust schon langsam meinem koepchen weh</flow:span> </flow:p></flow:TextFlow>;I try to get the Paragraph for a selection inside the text using following Methodes:var index:int = tf.interactionManager.anchorPosition; // i get 29 herevar child:FlowElement = tf.getChildAtIndex(index); // undefined - it should be the flowElement containing the text... <flow:span></flow:span>var para:ParagraphElement = test.getParagraph();//undefined - it should be the paragraphI really started to enjoy the new
How do you prevent carriage returns when using the TLF?With the old TextField youi could just do multiline = false.Is the an equivalent in the TLF?Old style code below ...var tf:TextField = new TextField();tf.border = true;tf.width = 100;tf.height = 20;tf.type = TextFieldType.INPUT;tf.border = true;tf.multiline = false;tf.text = "Hello World";addChild(tf);Thanks in advance,Adrian
The non-breaking hyphen (\u2011, &#8209) is not displayed correctly - the wrong glyph is shown. To reproduce, do the following: 1. Start the TLF demo editor http://labs.adobe.com/technologies/textlayout/demos/ 2. Import the markup below Results: - Line wrapping is correct: no line break at the hyphen - Times New Roman on Windows does have the glyph defined - it should look like an ordinary hyphen. This was seen in Build 3291. Cheers David Markup: <?xml version="1.0" encoding="utf-8"?> <flow:TextFlow whiteSpaceCollapse="preserve" xmlns:flow=" http://ns.adobe.com/textLayout/2008"><flow:p marginRight="5"><flow:span fontSize="60"> 2011 non-breaking hyphen Macro‑media </flow:span></flow:p></flow:TextFlow>
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.