새로운 Adobe 커뮤니티에 오신 것을 환영합니다.
Questions
최근 활동
Revision: 7851Author: gruehle@adobe.comDate: 2009-06-15 13:34:00 -0700 (Mon, 15 Jun 2009)Log Message:***********Move spark.skins.default.* to spark.skins.spark.*.Updated wireframe skins and flex4test files. The testWheel app has a compile error, but that is due to unrelated Vector changes.Reviewer: JasonTests: checkintests, flex4testModified Paths:************** flex/sdk/trunk/development/eclipse/flex/flex4test/src/SkinTest.mxml flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/CircularScrollBarSkin.mxml flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/MyVScrollBarSkin.mxml flex/sdk/trunk/development/eclipse/flex/flex4test/src/testWheel.mxml flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_US/spark/components/examples/DataGroupExample.mxml flex/sdk/trunk/frameworks/projects/flex4/defaults-3.0.0.css flex/sdk/trunk/frameworks/projects/flex4/defaults.css flex/sdk/tru
I've been reading through the documentation on the RichText class to learn more about how the TLF is handling tabbing and discovered it's now based on a traditional Tab Stop system. By default if no tab stops are defined the class treats a \t as a new line; however, I'd like to extend the behavior to act more like a 'typical' tabbing situation even if you haven't explicitly defined tab stops. Specifically, I was interested in creating a simple code-editor component which would allow for an unlimited number of tab stops as the user inputs data. The method of having to pass in a vector of tab stops obviously poses a problem.I'm currently leaning towards doing a check everytime the tab key is pressed to see if a tabStop exists after the carrot's location, then if one is not present generate new tabStops up to and one interval beyond the carrot's location. I think this should work for the most part (copying and pasting tabs would break), but if there is a better way
How to remove all elements from textflow?
Hi,I am using TLF version 442 for my application.When i am doing some changes like making text bold like below:"For Flash 10" to "For Flash 10". Then it shows it correctly.But again if I export this and and reimport it shows "ForFlash10" i.e. It eliminates the spaces.I have tried for "XML.ignoreWhitespace", it solves this but if I am having multiple span elements with this then it will take each one on next line. As it preserves the spaces now.I want it on same line. Is there any way of doing this, ignoreWhiteSpaces is also not as per the expectation as it leaves unneccessary spaces for lines.Regards,Rajesh
Hi alli am currently working on the medical project (built with Flex SDK3.3. and Flash Player 10.0), the project provides the drawing and image manuipulation feature on the (*.JPEG) photos, those JPEG photos are extracted from a medical DICOM format file (XRay, US, CT, etc...) with its size of every single jpeg is most likely around 3 - 4 MB (Dimension 3500 x 3000).The problem i now encountered is the memory problem. When the 4MB image load completed, the application would occupy around 8x MB memory. However, the issue occur when i going to implement the ColorMatrix which changing the image Brightness, Contrast, etc .. the memory allocation of app. increased significantly (up to 18x MB) MB. As a WEB app., 18x MB is a BIG number and is the serious concern of performanceHence, hope will get some help from all of you experts ....orany alternative way that would able to changing the Brightness, Contrast of the image but with better performanceorany technical suggestions if i implemen
private function setLinkToSelection (l : String) : void{ IEditManager(_textFlow.interactionManager).applyLink(l, "_blank"); }...private function onSelectionChange (e : SelectionEvent) : void{ // How can I check if there is an link?}I tried IEditManager(_textFlow.interactionManager).getCommonParagraphFormat() and getCommonCharacterFormat() but there ist no LinkProperty or LinkElement. I will do the same as in the EditorExample from Adobe. Select a text. Set a link to this text. Select this text again. Show the link on this text selection. Any idea?
Hello,We are facing problems in our website with the new text layout framework. Text wrapping is not functioning. Arabic text is being shown right to left and everything is fine except when we have an arabic article which includes long sentences that need to be wrapped. The framework takes out sometimes one letter of the word and put it by itself on one line. Is Text Wrapping supported in the new framework?Thanks and appreciate your help
Hi.I am struggling to implement what's called a 'cloze' exercise: A paragraph with missing words, which the user needs to type them in. I already managed to break the paragraph into TextElements and groups, etc., but how do I go about being able to insert my own inline components, which are also interactive (in my case a textinput - but could be also comboboxes etc.) ?( I thought about doing it with GraphicElements, but I can't seem to insert components like TextInput or Label with addChild() to a sprite etc - they just don't show up)Any help or ideas will be greatly appreciated.
How to make a link in textflow that send parameters to a function?
Is there any way of adding custom components or a simple datagrid into the text editor. like we can add images
Setting the multiline property of RichEditableText to false doesn't seem to work in the latest build.A work around is to set the heightInLines to 0 but the RET still allows the single line field to scroll.Is there another property I should be setting?
Revision: 7791Author: gauravj@adobe.comDate: 2009-06-12 10:29:23 -0700 (Fri, 12 Jun 2009)Log Message:***********report error due to unexpected symbol in asdoc tag. QE Notes: None.Doc Notes: None.Modified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
I have some text and two consecutive ilgs(Inline Graphic Elements). When I try to copy ilgs with the text or without text, and paste them I get following error.TypeError: Error #1009: Cannot access a property or method of a null object reference. at flashx.textLayout.edit::TextScrap/copyTextScrap() at flashx.textLayout.operations::PasteOperation/doOperation() at flashx.textLayout.edit::EditManager/doInternal() at flashx.textLayout.edit::EditManager/doOperation() at flashx.textLayout.edit::EditManager/pasteTextScrap() at flashx.textLayout.container::DisplayObjectContainerController/processPasteEvent() at flashx.textLayout.container::DisplayObjectContainerController/pasteHandler() at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at flash.ui::ContextMenuItem$/_paste() at flash.display::NativeMenu/_display() at flash.display::NativeMenu/display() at flash.ui::ContextMenu/display() at flash.display::InteractiveObject/onContextMenuEven
I'm currently working on an application which loads some fonts at runtime.One of the fonts I named _arial, normally you would set the textfield to embedfonts=true.When you than insert some htmlText, say <font face="_arial" size="14">Hello world</font>, the text is displayed in _arial size 14.Is there a way to achieve the same with the Text Layout Framework?
Hii,I am new to TLF.I am trying to wrap the text with in circle(shape) which is resizable. I am trying to acheive this through linked containers(correct me if iam wrong). when i resize the circle , linked containers with in the circle should be resized. can any one help me with this.thanks in advance.
Dear sirs,Is possible add an action that occurs in UndoManage outside textflow?I have 3 text flow, I can sync all only using same UndoManage in interacionManage, but I need that the moment that is added a new textflow also can is undo.Example:History: 1 - Add Bold2 - Add Italic*Add a new TextFlow3 - Change color to redWhen user call undo, before 3, I need remove the textflow.Thanks in advance.
Revision: 7784Author: gauravj@adobe.comDate: 2009-06-12 07:46:21 -0700 (Fri, 12 Jun 2009)Log Message:***********adding xslt change so info related to Alternative shows up in the asdocQE Notes: None.Doc Notes: None.Modified Paths:************** flex/sdk/trunk/asdoc/templates/class-parts.xsltAdded Paths:*********** flex/sdk/trunk/asdoc/templates/images/P_AlternativeMetadataIndicator_30x28_N.png
Revision: 7775Author: gruehle@adobe.comDate: 2009-06-11 17:51:45 -0700 (Thu, 11 Jun 2009)Log Message:***********Add support for external images to BitmapImage.Load external JPG, PNG, and GIF images (SWF loading not supported)External images need to be on the same server as the application, or have an appropriate crossdomain.xml file on the server.When loading an external image, keep the current image displayed until the external image is loaded. This allows a local proxy image to be used while the external image is loading.Events for ioError and securityError. BitmapImage will not automatically show a broken image icon. If you want one, handle these events and set the source to a broken image. Note: setting BitmapImage.source to the name of a class (type String) is no longer supported. You can still use a class reference (type Class).Bugs: SDK-21757QA Notes: Tests need to be addedDoc: YesReviewer: JasonTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21757Modifi
Revision: 7759Author: gauravj@adobe.comDate: 2009-06-11 14:39:04 -0700 (Thu, 11 Jun 2009)Log Message:***********display product name when mxmlc or compc is run from command line.Bugs: SDK-20952QE Notes: None.Doc Notes: None.Reviewed by: Caroltests: checkintestsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-20952Modified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Compc.java flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Mxmlc.java
Revision: 7751Author: aharui@adobe.comDate: 2009-06-11 10:00:59 -0700 (Thu, 11 Jun 2009)Log Message:***********Forgot to allow ResourceManager to run w/o the frameworkQE Notes: NoneDoc Notes: NoneBugs: SDK-21731Reviewer: darrelltests: checkintestsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21731Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
I had it posted in some other thread, reposting here since it is more relevant in this forum.I am particularly interested in the LigatureLevel.NONE value. It seems that it is no longer supported.How do I turn of ligatures in the font rendering?My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase. Is there any way (even roundabout) to turn ligatures off in flash?I am converting my ttf into a swf using a css like this:/* normal */ @11220649-face { src:url("Gara.TTF"); fontFamily: "Garamond"; fontWeight: "normal"; fontStyle: "normal"; cff: true;}Thanks,Om
I'm displaying a mix of English and Chinese in the same paragraph. Whenever chinese punctuation (0xFE00 to 0xFE6F) is following latin characters (0x0000 to 0x00FF), the chinese punctuation is shown as "empty square". The punctuation displays correctly otherwise when not following latin characters.It behaves the same on Windows and Mac. I'm using device 'Arial' font. You can see that in the two attachments. They're from the same <span>, the chinese comma (0xFE50) is not displayed in 'NotWorking.tiff' file, but displayed correctly in 'Working.tiff'.Any help would be appreciated. Thanks.
Revision: 7687Author: aharui@adobe.comDate: 2009-06-09 13:41:18 -0700 (Tue, 09 Jun 2009)Log Message:***********Forgot to have WindowedSystemManager use instance instead of static for mixins. (regular SystemManager was changed to use instance instead of static before checkin)Also fix porting error in MarshallPlan.asQE Notes: NoneDoc Notes: NoneBugs: SDK-21461Reviewer: darrelltests: checkintestsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21461Modified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallPlan.as
Revision: 7677Author: gauravj@adobe.comDate: 2009-06-09 10:54:15 -0700 (Tue, 09 Jun 2009)Log Message:***********adding xslt change so Theme shows up in asdoc for the styles (where applicable)QE Notes: None.Doc Notes: None.Modified Paths:************** flex/sdk/trunk/asdoc/templates/ASDoc_terms.xml flex/sdk/trunk/asdoc/templates/class-files.xslt
I am facing problems using AdvanceDataGrid (ADG) as Tree and using itemRenderers.I want a grid something like this.To get the checkbox in the ADG, I have used <mx:rendererProviders><mx:rendererProviders><mx:AdvancedDataGridRendererProvider columnIndex = "1"dataField = "mailType" renderer = "com.jpmorgan.bds.dashboard.rephierarchy.view.renderer.CheckBoxADG"/></mx:rendererProviders>The code for CheckBoxADG is as under: <?xml version="1.0" encoding="utf-8"?><mx:Canvasxmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%"><mx:Script><![CDATA[private function setData():void{if(data.creationCompleteFlag==false) {checkBox.selected = data.mailType;data.creationCompleteFlag =true;}}private function changeListData(event:Event):void{data.mailType = event.target.selected;}]]></mx:Script><mx:CheckBox id="checkBox" styleName="morcomCheckBox" creationComplete="setData()"change="changeListData(event)"/>NOW THE ISSUE:When I scro
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
이미 계정이 있으신가요? 로그인
sso.login.detail.descriptionWithRegistrationLink
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.