『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
I was following the commit logs and saw that http://bugs.adobe.com/jira/browse/SDK-18564 bug about the air updater framework being used with gumbo had been fixed. I updated my trunk and tried to compile and got an error trying to compile the rsls. So I switched the i10 branch and now I have an error building the headless airupdater. main: updateAIR: application_updater.application_updater_headless: [mkdir] Created dir: /Applications/Adobe Flex Builder 3 Plug-in/sdks/flex4_svn/frameworks/projects/air/build/intermediate/ApplicationUpdater/headless [copy] Copying 27 files to /Applications/Adobe Flex Builder 3 Plug-in/sdks/flex4_svn/frameworks/projects/air/build/intermediate/ApplicationUpdater/headless [exec] Loading configuration file /Applications/Adobe Flex Builder 3 Plug-in/sdks/flex4_svn/frameworks/air-config.xml [exec] Adobe Compc (Flex Component Compiler) [exec] Version 4.0.0 build 0 [exec] Copyright (c) 2004-2007 Adobe Systems, Inc. All rights reserved. [exec] [exec] c
I think your demo application showcasing the Text Layout Framework is really great. I am looking forward to using the new features. However, the option to download the source is a little misleading. I was expecting to be able to see the mxml and actionscript used to create these demos. Are you going to make that available? Otherwise, it makes it more difficult to learn this new framework.
Is this still going on? http://opensource.adobe.com/wiki/display/flexsdk/Flex+3+Contributions If so, I'm planning on getting a group of the SeaFlex User Group developers together for a Flex Bug Bash.
Hi, I have several test suites. I would like to run each of them in sequence because each has its own configuration. If I did the following, tests from different suites will be mixed with others while running. testRunner.test = new Suite1(); testRunner.startTest(); testRunner.test = new Suite2(); testRunner.startTest(); testRunner.test = new Suite2(); testRunner.startTest(); Anyone has ideas how to solve this? Thanks, Dina
Can someone please explain to me why this is not working??? The selectedItem property is not being reset when the "selectedColumn" property in the Model is updated. I have debugged this, adding an Event Listener to the Model for PropertyChangeEvent.PROPERTY_CHANGE Events, and I verified that the property IS being udpated. I event tried calling validateNow() and invalidateDisplayList() for the ComboBox component, but it does nothing. In the debugger the "selectedItem" property is "null".<br /><br />Here is pseudo-code showing my ComboBox component and Model. Why is the selectedItem not binding the property in the Model???<br /><br /><?xml version="1.0" encoding="utf-8"?><br /><mx:ComboBox xmlns:mx="http://www.adobe.com/2006/mxml" <br /> dataProvider="{__model.columns}" <br /> rowCount="{__model.columns.length}" <br /> selectedItem="{__model.selectedColumn}"><br /> <mx:Script><br />...<br />
After posting to the BlazeDS group, it was recommended that I repost here. I have been developing a flex application that consumes a 3rd party WSDL. I imported that WSDL using the built in flex WSDL data utilities available under the (Flex 3) Data menu. Things were progressing. Being new to the whole thing, it took me awhile to determine why I was unable to get the SOAP error codes. After learning that error codes in 500 range are not returned, and that using a proxy such as BlazeDS will allow me to see the SOAP errors, I decided to try to make this work. Enter BlazeDS. After scouring the web, reading a lot, looking at the examples, etc., I can now create new projects and, using webservices directly, get results using the BlazeDS proxy. However, try as I might, I have been unable to create a project that imports the WSDL using the flex data tools, and then have the project work against BlazeDS. The automatically generated webservice class supports instantiation with a destinat
In Flex 3, with a Text component, I can make the component fit its contents (use case: multi-line tooltip, chat-bubble) so that I restrict the max width and the height grows as necessary.<br /><br />To do this in Flex 3, you need to patch the Text component, e.g.<br /><br /><?xml version="1.0" encoding="utf-8"?><br /><mx:Text xmlns:mx="http://www.adobe.com/2006/mxml"><br /> <!--<br /> Text fields do not wrap correctly as reported in this bug:<br /> https://bugs.adobe.com/jira/browse/SDK-12826<br /> <br /> This fix, suggested by Mike Schiff, fixes the issue, so that we can set a minWidth of 0, <br /> maxWidth, and width=100% and have speech bubbles correctly size themselves.<br /> https://bugs.adobe.com/jira/browse/SDK-12826#action_157090<br /> --><br /> <mx:Script><br /> <br /> override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight
Hi, I would like to know how to import into an on stage instance of the component (well call it 'c_text') text from an on stage dynamic text field. The content of the dynamic textfield (well call it 't_txt') changes every so often, so I would like that any changes in the dynamic text field will be expressed in the component instance as well....can anyone get me started?
Hi, Im having an issue with loading text into the component. Untill the new component came along i was loading data from a component called slideshowpro into a dynamic text field. my script looked like this (with the dynamic text field being t_txt): import net.slideshowpro.slideshowpro.*; function onImageData(event:SSPDataEvent) { if (event.type=="imageData") { t_txt.htmlText=event.data.caption; } } my_ssp.addEventListener(SSPDataEvent.IMAGE_DATA, onImageData); - I would like now to load the same data into the text layout component going by the same name (t2_text). How would i go about changing the above script to flow the data into the text layout component rather than the dynamic text field? thx.
Revision: 4757 Author: gauravj@adobe.com Date: 2009-01-30 09:23:58 -0800 (Fri, 30 Jan 2009) Log Message: ----------- Fix for StackOverflowError reported by the doc team QE Notes: None. Doc Notes: None tests: checkintests Modified Paths: -------------- flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
Quite a number of requests that come up in Flex Forums relate to the difficulties with the limitations of the print functions in Flex through classes like flexprintjob - I think that it would be really really useful for Flex to take in some of the third party Flex components that have been created outside of Adobe to improve and expand printing and include them in the Flex core. As an example the Flexreport code that provides print preview functions and also the components that drive the printing functions in Buzzword. Three reasons that printing should be prioritised: 1. A large number of the projects using Flex are in a corporate environment where printing of documents is vital. 2. Text layout improvements are a part of the Flash Player 10 and Flex 4, if that text cannot be printed out then the value of those layout improvements is wasted and a whole raft of potential killer Flex apps would be crippled. 3. I have noted that on a number of Silverlight groups there is quite a lot
Revision: 4746 Author: gruehle@adobe.com Date: 2009-01-29 15:36:59 -0800 (Thu, 29 Jan 2009) Log Message: ----------- User-submitted patch for SDK-16147 - HaloBorder does not take border widths into account when drawing background with rounded corners. Bugs: SDK-16147 (bug), SDK-16963 (patch) Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-16147 http://bugs.adobe.com/jira/browse/SDK-16147 http://bugs.adobe.com/jira/browse/SDK-16963 Modified Paths: -------------- flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/skins/halo/HaloBorder.as
Revision: 4745 Author: gruehle@adobe.com Date: 2009-01-29 15:16:30 -0800 (Thu, 29 Jan 2009) Log Message: ----------- Style changes on Halo containers with a contentPane were not being picked up by children. QE Notes: This was a bug in 3.0 too. Doc Notes: None Bugs: SDK-18459 Reviewer: Pete Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-18459 Modified Paths: -------------- flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
Revision: 4722 Author: gauravj@adobe.com Date: 2009-01-28 15:40:43 -0800 (Wed, 28 Jan 2009) Log Message: ----------- Fix for - asdoc comment on a setter does not appear if the getter is not marked @private QE Notes: None. Doc Notes: None Bugs: SDK-18879 tests: checkintests Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-18879 Modified Paths: -------------- flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java
Revision: 4715 Author: gruehle@adobe.com Date: 2009-01-28 13:19:59 -0800 (Wed, 28 Jan 2009) Log Message: ----------- Wireframe skin fixups: - ScrollBar/ScrollThumb minimum size consistent with the new Spark minimums - Fixed border color for text area skin. QE Notes: None Doc Notes: None Bugs: SDK-18949, SDK-18824 Reviewer: None Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-18949 http://bugs.adobe.com/jira/browse/SDK-18824 Modified Paths: -------------- flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxHScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxHScrollBarThumbSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxTextAreaSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxVScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxVScrollBarThumbSkin.mxml
Hello, what is the best way to use the new text component to import the arabic language via xml into flash. I noticed in the demo with the spinning globe that the arabic text is actually unicode, the unicode string is actually LTR, then is displayed RTL. Obviously this works nicely with wordwrap etc. Is there some sort of converter I can get to convert RTL arabic to LTR unicode? I'm wondering also if its possible to import the Arabic font as a string from XML, and have things like the word wrap work correctly, I'm presuming here (maybe naively) that there isn't a RTL XML format and if there is flash doesn't wrap its head around it. I can't imagine writing whole paragraphs of text backwards in xml. To do this do I need to use markup code as per the bidi.xml file in the examples, where it seperates out each line for display to deal with the wrap issues. Any insight would be great, I'm sorry if my explanations are a little newby, i'm no gun. K.
Question 1: Is it possible to tell EditManager to do something on Enter key event and do not move text caret to the lower line in the same time? Question 2: Is it possible to tell EditManager to limit user input to some amount of characters, some thing similar to maxChars of the TextField? Question 3: How to get text represented by the TextFlow in XML format with extra spaces? For example: I write "Hello world" and then select world "Hello" and change its colour to blue. If I make text export form the TextFlow in XML format I get following: <flow:TextFlow whiteSpaceCollapse="preserve" xmlns:flow=" http://ns.adobe.com/textLayout/2008"> <flow:p direction="rtl" marginLeft="2" marginRight="3" marginTop="5"> <flow:span color="0x6699">Hello</flow:span> <flow:span>world</flow:span> </flow:p> </flow:TextFlow> Which have no space before the word "world", as it should be (but in the same time I see on my screen that the space actually a
Revision: 4701 Author: gruehle@adobe.com Date: 2009-01-27 18:05:57 -0800 (Tue, 27 Jan 2009) Log Message: ----------- Fix an RTE that occurs when adjusting the mouse shield index. QE Notes: None Doc Notes: None Bugs: SDK-18859 Reviewer: None Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-18859 Modified Paths: -------------- flex/sdk/trunk/frameworks/projects/flex4/src/mx/utils/MouseShieldUtil.as
Revision: 4695 Author: gauravj@adobe.com Date: 2009-01-27 14:54:54 -0800 (Tue, 27 Jan 2009) Log Message: ----------- Modify asdoc tool to support SkinState and SkinPart. remove unused code. QE Notes: None. Doc Notes: None Reviewed By: Paul (SkinState change) tests: checkintests Modified Paths: -------------- flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/MetaDataEvaluator.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocUtil.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocCommentTable.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java
Revision: 4693 Author: gruehle@adobe.com Date: 2009-01-27 14:25:29 -0800 (Tue, 27 Jan 2009) Log Message: ----------- FxScrollBar min size is now 35 pixels. The thumb is hidden if there isn't enough room to show at its minimum size. QE Notes: The new min size for scroll thumbs may require new mustella bitmap baselines. Doc Notes: None Bugs: SDK-17126, SDK-18039 Reviewer: Evtim Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-17126 http://bugs.adobe.com/jira/browse/SDK-18039 Modified Paths: -------------- flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxScrollBar.as flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxHScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxHScrollBarThumbSkin.mxml flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxVScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxVScrollBarThumbSkin.mxml
Revision: 4688 Author: gauravj@adobe.com Date: 2009-01-27 10:31:30 -0800 (Tue, 27 Jan 2009) Log Message: ----------- Fix for - @inheritDoc tag in DRMManagerError not functioning. QE Notes: None. Doc Notes: None Bugs: SDK-18881 tests: checkintests Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-18881 Modified Paths: -------------- flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocAPI.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
Revision: 4685 Author: gauravj@adobe.com Date: 2009-01-27 08:13:38 -0800 (Tue, 27 Jan 2009) Log Message: ----------- removing unused code. QE Notes: None. Doc Notes: None Bugs: SDK-18839 Reviewed By: Paul tests: checkintests Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-18839 Modified Paths: -------------- flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ArgumentsNode.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ArrayNode.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/BindingNode.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/BooleanNode.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ClassNode.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/DeclarationsNode.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/DefinitionNode.java flex/
I couldn't work out how to use AS3 to set the column count of the text layout component. Any help?
Revision: 4679 Author: gruehle@adobe.com Date: 2009-01-26 15:26:21 -0800 (Mon, 26 Jan 2009) Log Message: ----------- New FxPanel skin. Default layout for FxPanel is now absolute (basic) to be consistent with FxApplication. QE Notes: Any FxPanel mustella tests with bitmap comparison will need new baseline images. Default layout changes may affect test files. Doc Notes: None Bugs: None Reviewer: None Modified Paths: -------------- flex/sdk/trunk/development/eclipse/flex/flex4test/src/SkinTest.mxml flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxPanelSkin.mxml
Revision: 4673 Author: gruehle@adobe.com Date: 2009-01-26 12:46:51 -0800 (Mon, 26 Jan 2009) Log Message: ----------- Adding preview images to the theme directories. QE Notes: None Doc Notes: None Bugs: SDK-17735, SDK-16429 Reviewer: None Ticket Links: ------------ http://bugs.adobe.com/jira/browse/SDK-17735 http://bugs.adobe.com/jira/browse/SDK-16429 Added Paths: ----------- flex/sdk/trunk/frameworks/themes/Ice/preview.jpg flex/sdk/trunk/frameworks/themes/Institutional/preview.jpg flex/sdk/trunk/frameworks/themes/Smoke/preview.jpg flex/sdk/trunk/frameworks/themes/Spark/ flex/sdk/trunk/frameworks/themes/Spark/preview.jpg flex/sdk/trunk/frameworks/themes/Wooden/preview.jpg
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.