『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Revision: 11689Author: klin@adobe.comDate: 2009-11-12 00:56:10 -0800 (Thu, 12 Nov 2009)Log Message:***********https://bugs.adobe.com/jira/browse/SDK-24167 - ComboBox was sometimes destroying a null dropdown. I moved the code to the if block that checks for a null dropdown in onTweenEnd().QE notes: NoDoc notes: NoBugs: SDK-24167Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-24167 http://bugs.adobe.com/jira/browse/SDK-24167Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBox.as
Revision: 11686Author: klin@adobe.comDate: 2009-11-11 23:50:52 -0800 (Wed, 11 Nov 2009)Log Message:***********https://bugs.adobe.com/jira/browse/SDK-24088 - Panel's updateDisplayList needs null check for TitleDisplay.QE notes: NoDoc notes: NoBugs: SDK-24088Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-24088 http://bugs.adobe.com/jira/browse/SDK-24088Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as
Hello,The insertInlineGraphic method of the IEditManager interface has a requirement to articulate the width and height of the DisplayObject and I find this limiting. Let me explain why.In a text editor, it is easy enough to let a user specify the URL of an image they want to load into the text flow along with the width and height of this image. But the ability to copy and paste an image or drag and drop it from another component is much more elegant.In a particular implementation I've set up, I start with a URL to an image and load it to an Image control, then once the content has loaded to the Image, I cast its content property to a Bitmap, get the width and height of the Bitmap, then pass the Bitmap along with the dynamically determined height and width to the insertInlineGraphic method.This works fine, however, if there is no crossdomain.xml on the server of the image provider then this obviously won't work as you won't be able to access the Image's content property to
Revision: 11674Author: gruehle@adobe.comDate: 2009-11-11 15:26:22 -0800 (Wed, 11 Nov 2009)Log Message:***********Add null check to default button skins.QE notes: NoneDoc notes: NoneBugs: SDK-24156Reviewer: KevinTests run: checkintestsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-24156Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/DefaultButtonSkin.mxml flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/DefaultButtonSkin.mxml
Revision: 11663Author: klin@adobe.comDate: 2009-11-11 11:35:45 -0800 (Wed, 11 Nov 2009)Log Message:***********Fixed width of ComboBoxButton to center the arrow. I also shortened the border Rect to allow the default height to be 23px. Replaced radiusX and radiuxY in the wireframe skin with topRightRadiusX and bottomRightRadiusX so that only the corners on the right side are rounded.QE notes: NoDoc notes: NoBugs: NoneReviewer: JasonTests run: checkintestsIs noteworthy for integration: NoModified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ComboBoxButtonSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ComboBoxSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/ComboBoxButtonSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/ComboBoxSkin.mxml
Using the text layout demo: http://labs.adobe.com/technologies/textlayout/demos/ Enter some text so there will be serveral lines. Start changing the format. Superscript, Subscript, add graphic, whatever...It eventually gets a very ragged edge on the right.... If you change justication back to normal and then back to full, it does not fix it...Don
Hi all,I meet a problem with embed the Arabric Font. [Embed(source="fonts/axtyoumn.TTF",fontFamily="AxtYoumna",embedAsCFF="true" ,unicodeRange="U+0000-U+1000")] public const AxtYoumna:Class; [Embed(source="fonts/AXTSIL__.TTF", fontFamily="AxtSImplifed",embedAsCFF="true",unicodeRange="U+0000-U+1000")] public const AxtSImplifed:Class; public function fonts() { Font.registerFont(AxtYoumna); Font.registerFont(AxtSImplifed); } }It succeed published into a .swf file. I load this file useFont.enumerateFonts(false);It shows the font I have embed, it seems embed succeed:FontsName::: AxtYoumna ||||| FontsType::: embeddedCFFFontsName::: AxtSImplifed ||||| FontsType::: embeddedCFF Then I use AxtYoumna, AxtSImplifed for my textfield charFormat.fontFamily = ffont; &
hello i finished my website and i publish it but when i open th HTML page the text in the textLayout component does not appear but if i run run the swf it work perfectely i dont know why . i am using flash CS4 the text is arabic it came from an external text filethank you for your help
just wondering if there is an update my team and I might have missed or if there is a work around for getting this information in Flex 4 spark components?-erik
I thought I heard somebody mention at Max 2009 that Flash player 10.1 would come with some Flas Text Engine improvements (/new features?) but I cannot find any details about that online. Does anyone (maybe someone from the TLF team?) have more details about what is comming in 10.1 with regards to FTE?
Hello,I am building a text editor based on the Text Layout Framework and have made some good progress.An aspect of my editor is for the insertion of graphics into the Rich Text Editor and I am struggling to understand the nature and behavior of InlineGraphicElement.In my implementation, I have a method as follows: public function addPhoto(displayObject:Object,width:uint,height:uint):void { var em:IEditManager = textArea.textFlow.interactionManager as IEditManager; em.insertInlineGraphic(displayObject,width,height); var graphic:InlineGraphicElement = textArea.textFlow.findLeaf(textArea.selectionActivePosition-1) as InlineGraphicElement; }Which should be pretty self-exp
Hello,I am trying to figure out how I can determine the (x,y) coordinates of an InlineGraphicElement that is inserted into the textFlow of a Spark TextArea control.For that matter, how can you determine the rectangular coordinates of a given selected block of text in a TextFlow?
Revision: 11640Author: klin@adobe.comDate: 2009-11-10 17:19:53 -0800 (Tue, 10 Nov 2009)Log Message:***********Fixes for ComboBox's skin.ComboBoxSkin.mxml, DropDownListSkin.mxml - Modified the dropDown's dropShadow to not collide with the textInput and button when the dropDown pops up.ComboBoxButtonSkin.mxml - Removed shadow to fix a focus bug where the focus ring would be off. The button's border is now lined up with the right side of the button to line up the right side of the button with the dropDown. I also recentered the arrow.QE notes: NoDoc notes: NoBugs: SDK-23656, SDK-23646Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-23656 http://bugs.adobe.com/jira/browse/SDK-23646Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ComboBoxButtonSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ComboBoxSkin.mxml flex/sdk/
Hi,I have some issue with implementation of multi languages to display in the editor.Coming to my case.Intially content is this... When i am trying to edit the same...it displays like this.Can anyone help me why its displaying in form of boxes.Thanks in advance.
Revision: 11635Author: klin@adobe.comDate: 2009-11-10 16:34:58 -0800 (Tue, 10 Nov 2009)Log Message:***********Fix for https://bugs.adobe.com/jira/browse/SDK-24112. Panel and TitleWindow controlBars weren't setting cornerRadius correctly during a resize because we were using a boolean that was only set when cornerRadius changed.QE notes: NoDoc notes: NoBugs: SDK-24112Reviewer: GlennTests run: checkintestsIs noteworthy for integration: Yes, FBTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-24112 http://bugs.adobe.com/jira/browse/SDK-24112Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TitleWindowSkin.mxml
Revision: 11632Author: gruehle@adobe.comDate: 2009-11-10 16:13:20 -0800 (Tue, 10 Nov 2009)Log Message:***********Disable mouse interactivity on the spark border skin for mx components. QE notes: -Doc notes: -Bugs: SDK-23417Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-23417Modified Paths:************** flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/BorderSkin.mxml
Revision: 11631Author: gruehle@adobe.comDate: 2009-11-10 15:26:53 -0800 (Tue, 10 Nov 2009)Log Message:***********Revert part of 11576.QE notes: -Doc notes: -Bugs: SDK-24138, SDK-24146Reviewer: -Tests run: checkintests, mustella validator testsIs noteworthy for integration: NoTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-24138 http://bugs.adobe.com/jira/browse/SDK-24146Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/defaults.css
Revision: 11628Author: klin@adobe.comDate: 2009-11-10 14:24:36 -0800 (Tue, 10 Nov 2009)Log Message:***********Skin changes for TitleWindow. The closeButton is equidistant from the top, right, and bottom of the title bar area. The titleDisplay is double that distance away from the closeButton.Fixed TitleWindow checkintest to click the closeButton in the right place.QE notes: NoDoc notes: NoBugs: NoneReviewer: RyanTests run: checkintestsIs noteworthy for integration: NoModified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TitleWindowSkin.mxml flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/TitleWindowTestScript.mxml
Revision: 11618Author: aharui@adobe.comDate: 2009-11-10 10:12:56 -0800 (Tue, 10 Nov 2009)Log Message:***********Allow extra parameters on itemToLabel so you can use DataGrid as the dropdown in a combobox.QE Notes: NoneDoc Notes: While we did change the signature on itemToLabel, I think we shouldn't document the change. We are allowing extra params so we don't crash and we never use those params so the effective signature is the sameBugs: SDK-24027Reviewer: CoreyAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/components/ComboBoxTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-24027Modified Paths:************** flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/ComboBox.as
I checked out the FlexPMD RC4 source and I'm trying to build it. I'm in the flex-pmd-parent directory and ran mvn install. It fails to find 2 swc files:1) com.adobe.ac:flex-pmd-flex-lib:swc:1.0.RC42) com.adobe.flex.framework:datavisualization:rb.swc:en_US:3.2.0.3958I can't find either of the files. Any suggestions?ThanksBrenda
I am using the Cairngorm Popup 1.0 library and have defined a popup like: <popup:PopUpWrapper id="newObjectClass" center="true" modal="true" closed="newObjectClassClosedHandler(event)"> <uid:NewObjectDialog id="newObjectDialog"/> </popup:PopUpWrapper>However when I try to compile this I get an error like:[ERROR] /home/k/dev/src/flex-application/src/main/flex/Editor.mxml:[142,-1] Event type 'com.adobe.popup:PopUpEvent' is unavailable.If I removing the 'closed' attribute on the PopUpWrapper compilation succeeds.When I look at the library's PopUpBase I see that the following is declared:[Event(name="closed",type="com.adobe.popup.PopUpEvent")]I cannot find the class com.adobe.popup.PopUpEvent although I do see that the library inc
Hi, can anybody explain to me why i get a java.lang.NullPointerException when running the ant task html-wrapper. I used the example of the documentation and changend only the FLEX_HOME Path as well as the APP Path. The compiling works very well. ThanksCube
Hi,I have a chat application in flex using sockets.It works fine on Flash player 9, but while uisng flash player 10 , prompts the following errorError: [SecurityErrorEvent type="securityError" bubbles=false cancelable=false eventPhase=2 text="Error #2048"]whats wrong?? iam keep searching througth the web for a solution… …Im using .Net framework 2.0 for socket server and flex 2
Hi GuysI try to use the TLF component for Flash CS4 with arabiclanguage.When the TLF needs the scrollbar to show all the textthis scrollbar appears on right side of TLF box.Can I move the scrollbar on the left side as soon as ina scrollPane component?Thank you.
I want to find way to reference all RemoteObjects created throughout the life of the app regardless of their purpose, creator, etc...My ultimate goal is to be able to record all server side requests and responses that goes through the RemoteObjects, which is why I am trying to find a way to get a handle on all the RemoteObjects which communicate with remote servers.At a high level, does Cairngorm have a method for doing this?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.