-
Als letztes aktiv
whats is the advantage of using umcairngorm over cairngormis umcairngorm a freeware?
Revision: 4978 Author: gosmith@adobe.com Date: 2009-02-16 18:25:10 -0800 (Mon, 16 Feb 2009) Log Message: ----------- Various changes to Gumbo text styles. The marginLeft, marginRight, marginTop, and marginBottom styles have been removed. They used to inherit from a TLF container to a TLF paragraph and got applied there, but this is not longer the case so that TLF can support container-level margins in the future. Since container-level margins are not currently supported, there should not be a corresponding component-level style. In order to make it possible to specify a format on a container to set inter-paragraph spacing, TLF will add spaceBefore and spaceAfter soon, and Flex will expose these as component styles. The tabStops style is no longer supported on TextBox or components that use TextBox in their skins. It is supported on TextGraphic, TextView, and FxTextArea, but only as a TLF-parsed String (rather than an Array or Vector of TabStop instances as in FTE). Examples of tabst
I am trying to get the bounds of a portion of a textFlow. I tried to extract the part via:var tf:TextFlow = _textFlow.deepCopy(start, end) as TextFlow;trace(tf.flowComposer.numLines);I wanted to use the TextLine.getBounds() method to get the bounding box of the text. But the number of lines is always zero, so I can't extract the line via_textFlow.flowComposer.findLineAtPosition(0).I tried working with compose() and so on, but the number of lines stays at zero.Is there another possibility to get the bounds?Thanks in advance.
Dear allTell me please, how I can use TLM features to write in armenian in Captivate text fields.Is it possible?
Revision: 7653Author: gauravj@adobe.comDate: 2009-06-08 15:07:23 -0700 (Mon, 08 Jun 2009)Log Message:***********updating the package target to include the new jar.QE Notes: None.Doc Notes: None.tests: checkintestsModified Paths:************** flex/sdk/branches/3.x/build.xml
We are having a problem when animating and scaling some text with the new CFF embedding method. When it gets quite small the font is too 'sharp' and there is a shimmering effect where the player attempts to render the font and fit it into the pixels. Applying a heavier anti alias would help here. And setting the cffHinting doesn’t seem to make much difference.With the old components we had things like fontSharpness and fontThickness to control this. There doesn't seem to be an equivalent here.Am I missing something - or is something like this in the pipeline?
I have a custom editor built in flash that I want to convert to the Text Layout Framework.I have all contents in containers, but when I do an export to XML, I want to know what content was displayed in what container.I tried to do this by going through al the textlines in the textflow; I can get all textline objects, but cannot get to the content and the formatting information.Could anyone give me a hint on how to do this? I would already be happy if I could do a separate export for each container.Thanks for your reply!Arend.
Some japanese characters replaces squares, but this characters shows correct in TextArea. How can I see this characters in TLF?Text example:123 ヒホミァおきなヴァ ・ マギナァGHJEnglish
Hey,I've added public test functions to my classes like: [Test] public function basicTest():void { Assert.assertEquals("Test is 5 == 5", 5, 5); }and a test suite takes this class as a variable.[Suite] [RunWith("org.flexunit.runners.Suite")] public class ModulesTestSuite { public var t1:MyClass; }I use this mxml to run the tests:<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="runMe()" xmlns:flexUnitUIRunner="http://www.adobe.com/2009/flexUnitUIRunner" styleName="flexUnitApplication" > <mx:Script> <![CDATA[ impo
I got a TextFlow with an image in the first line (before the first character) and the picture is cut off on the top. I checked the_controller.verticalScrollPosition and it doesn't go below a specific number. The text is shown correctly so I assume that the images size is ignored and the top of the text is the lowest scroll position.In the attached image you can see that the scroll bar shows that the position is above 0, but I can't scroll any higher.Is this a bug or am I doing something wrong?Thanks in advance
Hi again I have noticed that the StatusChangeEvent.INLINE_GRAPHIC_STATUS_CHANGE calls my event handler twice.Is this the way it is supposed to work or something in my code?I have placed the listener on the textFlow after the call to updateAllControllers.By the way is the code for this text editor (where I am now typing my question) available somewhere?I am especially interested in the method for inserting the graphic smiley.regardsMicheal
Hi,i am using an XML file in my Flex project.When i use it on Flex Builder, it works fine then when i do an export release build, and try to load the D:\temp2\bin-release\test.html page,i get an error : [RPC Fault faultString="Error #2148: SWF file file:///D:/temp2/bin-release/POC.swf cannot access local resource data/villes.xml. Only local-with-filesystem and trusted local SWF files may access local resources." faultCode="InvokeFailed" faultDetail="null"] How can i turn that XML file ( D:\temp2\bin-release\data\villes.xml) trustable so Flash Player does not complain ?Thanks
Hi All, I have been trying to write a theory test for my component but doesnt seem to get it working, is there something wrong that i am doing while writing the theory case, would write the process that i am following, before that would like to ask if i can write after and before test methods in the testclass along with the datapoint(data for the theory) and the theory method, this becomes necessary in cases where i need to innitialize my comments with some values n then apply a theortical test on my component. the process i follow is as follows - 1. create a seprate testCase - TestMyComp.as package sampleSuite.tests { import flexunit.framework.Assert; public class TestMyComp { private var myComp:MyComp; &nbs
Revision: 7553Author: gauravj@adobe.comDate: 2009-06-04 09:32:51 -0700 (Thu, 04 Jun 2009)Log Message:***********Fix the default value of the "required" attribute for asdoc.Bugs: SDK-21488QE Notes: None.Doc Notes: None.tests: checkintestsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21488Modified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java
Hello everybody,I found this problem in Text Layout, i don't know it is true problem or my limitation.I imported a html stringexamle:var myText:String = "<p><a href=\"javascript:window.open('http://www.fifa.com', 'popupWin', 'height=400, width=600');\">Click here</a></p>"; txtFlow = new TextFlow(); txtFlow = TextFilter.importToFlow(myText, TextFilter.HTML_FORMAT); txtFlow.flowComposer.addController(new ContainerController (this, 400, 400) ); txtFlow.flowComposer.updateAllControllers();What i found: 1. when the mouse is over the link, there is no cursor. If the link is not a javascript (a direct link instead) then there is cursor.2. When i click on the link, a new page is opened, also, a popup wind
Revision: 7541Author: gruehle@adobe.comDate: 2009-06-03 17:14:58 -0700 (Wed, 03 Jun 2009)Log Message:***********AIR Window/WindowedApplication bug fixes:SDK-21585 - When minimizable = false, calling minimize() still minimizes.Added early exit to minimize() if minimizable is false. Fixed in all 4 window classes (spark/halo, Window/WindowedApplication)SDK-21494 - You get a runtime error when setting baseColor on a WindowedAppliationThere were problems with the exclusions list in several of the AIR skinsQA Notes: 21585 needs to be regressed for all 4 window classes.Doc Notes: noneReviewer: ChetTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21585 http://bugs.adobe.com/jira/browse/SDK-21494Modified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/Window.as fle
Is there any way we can show rulers in the application, Though i saw it in the demo application but i am unable to use it in the application.RegardsVarun Rathorehttp://www.vrathore.blogspot.com
Hello,is there any material on the limitations of the text rendering compared to how InDesign does it? I am really interested in that!Thanks, JHwww.heuing.eu
I am having an issue where when doing a deepCopy on my textFlow, it is not copying all the data. I have not yet been able to narrow this down just yet into a reproducible case for a bug report (is there a known issue? It used to happen with textscraps in the past and still happens to me occasionally when exporting as TextFilter.PLAIN_TEXT_FORMAT, but the data is there in the TEXT_LAYOUT_FORMAT). However, because of this, I have switched to just exporting the text in the text layout format and creating the String myself. The xml that is generated contains spaces and newlines correctly. They are not escaped or surrounded by CDATA, thus when putting them into an XML object you lose all the extra whitespace. Would it be possible to wrap these things that would be stripped by the XML object?Also, the SelectionManager documentation (from build 442) contains an example on how to copy text, however it uses text scraps and these appear to have been remo
HeyI have been using an older version of TLF and used blinking = false when I did nor want the cursor to blink.Now I cannot find another way to achieve this.It seems like if you use the SelectionManager you are stuck with this default blink.Or am I wrong?RegardsMicheal
Hi I have just starting using Cairngorm and its working well until I want to dispatch the result event back to the component that first called it. What is the best way to do this? I have have several components that want to be informed that the original event completed successfully. Thanks for your help Craig
h,kay..tell me how stupid I am. Apparently the baseclass "FontAsset" is missing - what am I missing?code:package mea.fonts { import flash.text.Font; public class fontCompiler extends Font{ [Embed(source="/mea/fonts/ttfSource/Laine.TTF", fontFamily="Laine", cff="true")] private const Laine:Class; public function fontCompiler(){ } }}compiler:----------Adobe Flex Compiler SHell (fcsh)Version 4.0.0 build 7410Copyright (c) 2004-2007 Adobe Systems, Inc. All rights reserved.(fcsh) fcsh: Assigned 1 as the compile target idLoading configuration file D:\eclipse\plugins\com.powerflasher.fdt.shippedflex_3.2.0.3958_0001\flex\frameworks\flex-config.xmlmea\fonts\fontCompiler_Laine.as(10): col: 49 Error: The definition of base class FontAsset was not found.
interfacing the textFlow interaction manager with IeditManager does not allow follow through to deleteText but everything else?(tf.interactionManager as IEditManager).deleteText(); //bad - interface does not seem to declare deleteText...Is this working as intended or just a very old and known issue?
Whats happened to the Commit email ?They seem to have stopped working again.last one posted he is 5 days old as far as I can seejust thopught I'd give you a heads up.thanksglenn tinylion
Revision: 7474Author: gruehle@adobe.comDate: 2009-06-01 12:53:22 -0700 (Mon, 01 Jun 2009)Log Message:***********Fix Gumbo Priority bug SDK-21360. Remove Alternative metadata from Halo ButtonBar.Ticket Links:************ http://bugs.adobe.com/jira/browse/SDK-21360Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ButtonBar.as
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.