『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
-
新着順
Revision: 9419Author: aharui@adobe.comDate: 2009-08-20 09:19:04 -0700 (Thu, 20 Aug 2009)Log Message:***********2nd attempt to check in prototypes of ControlBars in Panel and Application, Spark Containers in Halo Navigators, Halo ViewStack in Spark ButtonBar. APIs should match spec but are subject to change from PARB. Skins are subject to tweaking after XD reviewQE Notes: The following tests will fail and need updating:gumbo/containers/Panel/Properties/Panel_Properties_position Panel_Properties_rotateapollo/spark/components/Window/properties/window_properties_titleIcon_tests titleIcon_test8 Doc Notes: NoneBugs: NoneReviewer: Darrell, Glenn, RyanAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/gumbo/components/Application, gumbo/components/ButtonBar, gumbo/containers/Panel, apollo/gumbo/spark/Window, containers/ViewStack, containers/Accordion, states/Integration/TabNavApp, states/ReparentModified Paths:************** flex/sdk/trunk/frameworks/project
can anyone let me know how to get current system date in flexand how to compare seleted date and system date in flexthanks in advance
Revision: 9416Author: aharui@adobe.comDate: 2009-08-19 19:15:38 -0700 (Wed, 19 Aug 2009)Log Message:***********Revert 9399. The prototypes broke mustella states tests. Will try again later.Modified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/SparkChromeWindowedApplicationSkin.mxml flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/NavBar.as flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as flex/sdk/trunk/frameworks/projects/framework/src/mx/events/FlexEvent.as flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Application.as flex/sdk/trunk/frameworks/projects/
I'm just curious.What does the 'CFF' mean?What abbreviation is the 'CFF'?thanks
Hello,The problem happened when I added an image and then applied a format that was removed from the queue with popUndo(), because I do not want him to do the next operation to undo.to see the problem is just paste the code below into a new file .as.package { import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import flashx.textLayout.container.ContainerController; import flashx.textLayout.conversion.TextFilter; import flashx.textLayout.edit.EditManager; import flashx.textLayout.edit.IEditManager; import flashx.textLayout.edit.IUndoManager; import flashx.textLayout.edit.SelectionState; import flashx.textLayout.elements.InlineGraphicElement; import flashx.textLayout.elements.InlineGraphicElementStatus; import
I am new to flex and this forum. So can anyone tell me how to produce a delay in my program. I just need 3 second delay in my program. I just need to write a delay function. The function look like..private function delay():void{ // 3 second delay code}Thank you,--Amit
Revision: 9399Author: aharui@adobe.comDate: 2009-08-19 13:39:10 -0700 (Wed, 19 Aug 2009)Log Message:***********Check in prototypes of ControlBars in Panel and Application, Spark Containers in Halo Navigators, Halo ViewStack in Spark ButtonBar. APIs should match spec but are subject to change from PARB. Skins are subject to tweaking after XD reviewQE Notes: The following tests will fail and need updating:gumbo/containers/Panel/Properties/Panel_Properties_position Panel_Properties_rotateapollo/spark/components/Window/properties/window_properties_titleIcon_tests titleIcon_test8 Doc Notes: NoneBugs: NoneReviewer: Darrell, Glenn, RyanAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/gumbo/components/Application, gumbo/components/ButtonBar, gumbo/containers/Panel, apollo/gumbo/spark/Window, containers/ViewStack, containers/Accordion, Modified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/SparkChromeWindowedAppl
Hello,I am trying to dinamically adjust the size (height) of a container so a text snippet doesn't move to the next container. In other words I try to make sure that this exact snippet belongs to only one container. The way I try to achieve it is by listening to events which may influence the amount of text which fits the container. For example 'resize' event for the wrapping Sprite (or rather its parent) or 'INLINE_GRAPHIC_STATUS_CHANGED' event for the text flow because images can decrease the space for text. Whenever such events happen I check if the snippet belongs to more than one container and if not I increase the container's height (setting the composition height accordingly as well) and then I call 'compose()'. My expectation is that immediately after calling compose() I would be able to iterate over all TextFlowLines and retrieve the corresponding TextLines out of them. I also expect that all these will be valid and properly positioned/measured because I just called compose().
Hey there,What is your recommended way of styling text? And how would you store user-defined styles and apply them to different parts of text (like "header1", "highlighted", etc.)? Would you have to go through and use a text editor, or have you found a simple solution where you can just say “styleName” or “id” = “myStyle”, and it would apply styles from either a TextLayoutFormat object, or from some CSS parsed into a TextLayoutFormat object. Right now I am manually parsing CSS into TLF objects, caching them in a Dictionary, looping through Elements with “getChildByID”, and for-loop-assigning the TLF properties to the element. Seems like there could be something easier.Thanks a lot,Lance
Revision: 9336Author: gauravj@adobe.comDate: 2009-08-14 20:20:44 -0700 (Fri, 14 Aug 2009)Log Message:***********Fix "ant asdoc" targetQE notes: None.Doc notes: NoneTests run: checkintestsIs noteworthy for integration: No.Modified Paths:************** flex/sdk/trunk/asdoc/build.xml
Hi All,I have explored TLF API and have few doubts to implementation. Here is my list of doubts(All in context of Flex 3.2, no flex 4 as of now):1. Can I use TLF with List Component, I want to use single TextFlow to manage all text in a single object and then have LinkedContainers kind of functionality within itemRenderers. Is it possible ?2. I want to use inline text change(don't know the exact term). Its like, when I type in "[smile]", I want to replace it with an image/gif, soI want to add an InlineGraphicElement when this text gets added, but I am unable to find the text typed in before, I tried to listen to flashx.textLayout.events.FlowOperationEvent.FLOW_OPERATION_END and FLOW_OPERATION_START, could anybody guide, which event I should be listening to,in order to replace that text with an inline graphic element ?3. I had a look at TLFDataGridItemRenderer.as, but I think this class is intended to be used in Flex 4, am I correct ? if yes then how I can have something similar for Lis
Revision: 9326Author: aharui@adobe.comDate: 2009-08-14 16:03:39 -0700 (Fri, 14 Aug 2009)Log Message:***********Last set of changes to BasicTests for now. Runs in about half the time of checkintests in part because we don't run every one of the old tests since some are redundant.Modified Paths:************** flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.css flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/TextInputTestScript.mxmlAdded Paths:*********** flex/sdk/trunk/frameworks/tests/basicTests/BickhamScriptPro-Regular.otf flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/AccordionTestScript.mxml flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/AlertTestScript.mxml flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/CollectionTestScript.mxml flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/RP
Revision: 9314Author: aharui@adobe.comDate: 2009-08-14 12:00:24 -0700 (Fri, 14 Aug 2009)Log Message:***********Merge layout, graphics, and fxg tests into BasicTests.Add more tests from spark tests into BasicTests.Modified Paths:************** flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/ListAndDataGridTestScript.mxml flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/ScrollBarTestScript.mxml flex/sdk/trunk/mustella/mustella.swcAdded Paths:*********** flex/sdk/trunk/frameworks/tests/basicTests/fxg/ flex/sdk/trunk/frameworks/tests/basicTests/fxg/scripts/ flex/sdk/trunk/frameworks/tests/basicTests/fxg/scripts/FXGCompileTestScript.mxml flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/ flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/FXGCompileTests.mxml flex/sdk/trunk/frameworks/tests/basicTests/fxg/views
Revision: 9306Author: aharui@adobe.comDate: 2009-08-14 00:50:57 -0700 (Fri, 14 Aug 2009)Log Message:***********2nd attempt to add in BasicTestsModified Paths:************** flex/sdk/trunk/build.xml flex/sdk/trunk/mustella/mustella.swc
Revision: 9305Author: aharui@adobe.comDate: 2009-08-14 00:30:26 -0700 (Fri, 14 Aug 2009)Log Message:***********delete files that ended up in the wrong placeRemoved Paths:************* flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests-config.xml flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests.css flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests.mxml flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTestsPreloader.as flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests_testScript.mxml flex/sdk/trunk/frameworks/tests/componentSmoke/basicImage.jpg flex/sdk/trunk/frameworks/tests/componentSmoke/basicLoader.swf flex/sdk/trunk/frameworks/tests/componentSmoke/halo/ flex/sdk/trunk/frameworks/tests/componentSmoke/spark/
Revision: 9304Author: aharui@adobe.comDate: 2009-08-14 00:27:56 -0700 (Fri, 14 Aug 2009)Log Message:***********attempt to fix build. Someday I'll learn how to use SVN properly.Modified Paths:************** flex/sdk/trunk/build.xml flex/sdk/trunk/mustella/mustella.swcAdded Paths:*********** flex/sdk/trunk/frameworks/tests/basicTests/ flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.css flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml flex/sdk/trunk/frameworks/tests/basicTests/BasicTestsPreloader.as flex/sdk/trunk/frameworks/tests/basicTests/BasicTests_testScript.mxml flex/sdk/trunk/frameworks/tests/basicTests/basicImage.jpg flex/sdk/trunk/frameworks/tests/basicTests/basicLoader.swf flex/sdk/trunk/frameworks/tests/basicTests/halo/ flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/ flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/ButtonTestScript.mxml
Revision: 9303Author: aharui@adobe.comDate: 2009-08-13 23:16:31 -0700 (Thu, 13 Aug 2009)Log Message:***********Initial checkin of basictests", a streamlined and extensible replacement for checkintests. checkintests will stick around for a bit longer until we feel better about basictests.Most of the files were added in revision 9302QE Notes: NoneDoc Notes: NoneBugs: NoneReviewer: NoneAPI Change: NoIs noteworthy for integration: Notests: checkintests basictestsModified Paths:************** flex/sdk/trunk/build.xml flex/sdk/trunk/mustella/mustella.swc
Revision: 9302Author: aharui@adobe.comDate: 2009-08-13 23:10:20 -0700 (Thu, 13 Aug 2009)Log Message:***********Added Paths:*********** flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests-config.xml flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests.css flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests.mxml flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTestsPreloader.as flex/sdk/trunk/frameworks/tests/componentSmoke/BasicTests_testScript.mxml flex/sdk/trunk/frameworks/tests/componentSmoke/basicImage.jpg flex/sdk/trunk/frameworks/tests/componentSmoke/basicLoader.swf flex/sdk/trunk/frameworks/tests/componentSmoke/halo/ flex/sdk/trunk/frameworks/tests/componentSmoke/halo/scripts/ flex/sdk/trunk/frameworks/tests/componentSmoke/halo/scripts/ButtonTestScript.mxml flex/sdk/trunk/frameworks/tests/componentSmoke/halo/scripts/CheckBoxTestScript.mxml flex/sdk/trunk/frameworks/tests/componentSmoke/halo/scripts/ColorPickerTestScrip
Hey, I'm new to using TLF, I'm just trying to get a block of text to display its text flow as 3 columns. I'm using the Spark RichText control (this uses the TLF right?). I have given the control an explicit width of 800 and a height of 200. I've then attached a css style wich specifies a columnCount of 3 for the control. I then populated the controls content property with xml representing a textflow using the tlf markup. I expected this to result in 3 colums of text that are 200px high and each one around 253px wide (allowing 20px columnGap).However the actual result is a single column that is 253px wide and the text extends beyond the 200px bounds of the RichText control wich does seem to have the correct height of 200px. So it seems the TextFlow is getting that it needs to fit into the columns correctly but it's ignoring the height of the RichText container and so never reaches a bottom so that it can break over to the next column.How do i get the
Hi,I wrote a question in the other board and they suggested that I come here for a better answer.http://forums.adobe.com/thread/474696?tstart=0I'll describe my question more clearly here.What I want to do is have some flex component hover over the top of the text at certain positions in the text, as I want to provide some rich editing for certain types of data - such as I want to provide a excel type grid for editing data inline within the document. When the user edits the grid, the text in the document is updated.Alternatively, if the component can be inline in the document that is ok as well.So what I managed to achive by myself is that I can position a flex button over the text, what I did was to convert the textarea to a bitmap image where I had changed some small bit of text to red before i did the bitmap, then i searched the image for the red color then position my button over the red text.This kind of works, but very hacky and not efficient. Im searching the bitmap for red text.
Revision: 9285Author: aharui@adobe.comDate: 2009-08-13 15:51:21 -0700 (Thu, 13 Aug 2009)Log Message:***********Fix an injection from frame1 cleanup. Resources in loaded swfs weren't being added to the ResourceManagerQE Notes: NoneDoc Notes: NoneBugs: SDK-21962Reviewer: DarrellAPI Change: NoIs noteworthy for integration: Notests: checkintests Ticket Links:************ http://bugs.adobe.com/jira/browse/SDK-21962Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
I'm building a flex application that will allow users to add content (text, images, swf, mp3, etc...) The same idea as the way we work with the Flex Builder, that is, we can add many components in the editor area.I then created the application framework and I'm using TLF. However, TLF does not allow me to add a swf file or even a button in the middle of the text area. Is there a way to work this out?What's the best way to accomplish an aplication like this?
Hi, guys.Wonder if i can disable localization of compiler warnings, so that sdk compiler won't take system locale (windows) and use english instead?Thanx in advance,Tim Tekaev
Hi all,I'm working on a project with a halo panel mixed in with the newer spark components. I'm trying to use the CFF embeded fonts with everything. The mx.Label and s.SimpleText components are working fine. The mx.Panel however, doesn't display it's Title when I set the textFieldClass to mx.core.UITLFTextField.Am I doing something wrong or is this a bug?Here is the code to add to a Web/AIR app. Also you will need to create a fonts/times folder in the project root and add your system times new roman fonts to it. Or use the project I am attaching. <mx:Panel title="This is a test of the fonts" width="100%" height="100%"> <mx:Label text="here is a label" x="50" y="50"/> <s:Group x="50" y="150" width="300" height="100" > <s:SimpleText text="here is simple text" />
Revision: 9230Author: gauravj@adobe.comDate: 2009-08-11 12:34:58 -0700 (Tue, 11 Aug 2009)Log Message:***********Hide new rsl root class in generated asdocQE notes: None.Doc notes: NoneReviewed By: DarrellTests run: checkintestsIs noteworthy for integration: NoModified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/tools/CompcPreLink.java
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.