-
Als letztes aktiv
Revision: 8411Author: gruehle@adobe.comDate: 2009-07-06 16:43:15 -0700 (Mon, 06 Jul 2009)Log Message:***********Make the following skin parts optional: TrackBase (includes sliders and scrollbars): thumb, track SkinnableTextBase (includes TextInput and TextArea): textDisplay SkinnableContainer (includes Panel and Application): contentGroupVerified all access of these parts are protected with null checks.Bug: SDK-21663QE Notes: Tests should be added for components with missing partsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21663Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/SkinnableContainer.as flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableTextBase.as flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TrackBase.as
Ok first of all, sorry if this has been coverd but the "search forums" field apprently searchs all adobe forums and not just this one. I have been using TextLayout Framework for some time now and I have been embedding open type fonts with jsfl, and this works wonderfully with fonts such as the Champion family that have fonts such as "Champion Bantamweigh" or "Champion Featherweight". But font families like ITC Avant Garde Std is where I get completely lost.Here is how I am embedding my fonts ():embedFont("ITC Avant Garde Std Bold", "ITC_Avant_Garde_Std_Bold");embedFont("ITC Avant Garde Std Demi", "ITC_Avant_Garde_Std_Demi");embedFont("ITC Avant Garde Std Md", "ITC_Avant_Garde_Std_Md");embedFont("ITC Avant Garde Std Bold Obl", "ITC_Avant_Garde_Std_Bold_Obl");embedFont("Champion Bantamweight", "Champion_Bantamweight");embedFont("Champion Featherweight", "Champion_Featherweight");function embedFont(fontName, className){ var symbolName = fontName + "_DF4"; 
Hi all,Is anyone here using the lastes build of the flex 4 sdk andusing the components that use tlf? Since the namechange (not saying that is root of problem) things seem to have stopped working.Just wondered if ther was any here also finding problems.(why do i only ever get a problwem during Adobe breaks, lol This is the first real on I've had all year. lol such is life)cheers
Hi,I have a textFlow with multiples ContainerController. I need to get the height of each controllers.If I have just one controller, no problem : controller.getContentBounds() return the good Rectangle.But, if i have much controllers, the getContentBounds method not return the good height of the LAST controller.It’s a bug ? There is other rules to get the real height of each controllers ?Regardsfabien
Hi I have added images in TextFlow layout . I have text in two columns and i need to merge the columns to put images . when doing resize on the window the column count will change to single at the time the image also need to resize to that columnany idea? Regardssundarapandian.k
Hi, I'd like to get hold of the source for the Text layout demo at http://labs.adobe.com/technologies/textlayout/demos/ Would this be possible? Thanks
Hello I made a small online tester for a OpenType font with OT-features.http://www.underware.nl/site2/index.php?id1=liza&id2=testAll works fine, but when I type œ (alt+q) it won't show in the right typeface.The same goes for alt+f and alt+b. All these glyhps work fine in the online tester here:http://labs.adobe.com/technologies/textlayout/demos/ Does this have to do with the encoding of the XML?I use: <?xml version=\"1.0\" encoding=\"utf-8\"?> Kind regards
I'm trying to work with the new TextLayout Component in FlashDevelop.Maybe I'm lazy but I've gotten used to code completion. I want to import things like TextFlow and ICharacterFormat. How can I import these classes and others from the flashx.textLayout package so that code completion will work in FlashDevelop?
What is the best way to re-use the events with different parameter?For example in one view, we dispatch an event called GetStudentsEvent("FirstYear");in another view, we dispatch an event called GetStudentsEvent("SecondYear");The problem is, in the Command, we should set the result in ModelLoator,for example modelLocator.studentList; So the 2 views will have the some result.What I do is to create every time a different object in modelLocator whenan event is re-used. For example: modelLocator.studentList1, modelLocator.studentList2, ...and in the Command, I check the event's parameter and set the values to different modelLocator.Are there any better ways to do this?
Hi Experts,i am stuck on just a very simple example .i have a login button wich trigger a caringorm event ; how can i disable this button during my command result and enable on finis.i have walked through callback example http://www.gridlinked.info/cairngorm-secret-tip-3-responders-for-view-notifications/ but i dont understand it completely as it extends UMevent.can anyone have better example or had any workaround on this senario?
i see the Times Reader, a AIR application with TLF, for article view. Exist a example with the same multiple columns resizing ??
Dear sirs,The undo manager, by default, saves the action to be later undone later? In my application is not work perfectly. I write the text, change something (formatting or positioning), and when I call the undo, this not is undone perfectly.The images attached, shows my actions sorted .1 - Initial text2 - Text Edited3 - Undo maxNOTE: Was not exceeded the limit of 25 actions.The source code was also be attached.
Hello, in the forum I read "TLF has full support for keyboard input"... Someone can get an example? Thanks.
Hi, I am new to Flex, so sorry if my questions seem naive.My company has an internal CMS application which I helped write several years ago. The front-end is a desktop app which has a Rich Text Editor that allows users to drag images from another panel of the app, drop them on a paragraph, and depending on where they dropped (right or left side of the paragraph), right or left align the image with the paragraph. The text flows around the image as it would on an HTML page, since HTML content is the primary output of our CMS. The RTE does not have to maintain complete fidelity with the website, but it gets pretty close. The users find it intuitive and productive.We need to bring our app up to date. We are trying to go the RIA route, and we need the ability to mimic HTML layout, particularly positioning of DIVs and normal HTML text flow around images. Here is a sample:<html><body><div style="width:400"><div style="position:relative;
HiI have a test with a SWFLoader loading an application in a different application domain.Test with SWFLoader is ok when you load the application in the same application domain but when I want a new Application Domain, I have an error message with a flahplayer debug version when I use the unload method.Is this a bug ?
Due to another helpful reply in this forum I finally have a single line editable textfield working.Problem now is that I still need to set configuration options. I dont really fully understand the framework as yet.Here is my code. var config:Configuration = new Configuration(); config.manageEnterKey = false; var textFlow:TextFlow = new TextFlow(config); textFlow.interactionManager = new EditManager(); textFlow.fontFamily = "Arial"; textFlow.fontSize = 20; textFlow.lineBreak = "explicit"; textFlow.flowComposer.addController(new DisplayObjectContainerController(sprite,width,height)); textFlow.flowComposer.updateAllContainers();However I need to also set some other options on my field.Firstly I need to set the initial text of the field. Before I was doing this " var textFlow:TextFlow = TextFilter.importToFlow(text, TextFilter.PLAIN_TEXT_FORMAT);" but now I cant seem to figure out how to use the importToFlow along with the configuration.Secondly. I need to restrict the field to only all
Hi, I have imported Text into TextLayout container. I have set it columnCount = 2 .. its showing text with 2 columns and the remaining overflow text are shown in the second column with scoll . but i need to get the overflow text and need to show in different container..any idea? send me detailsRegards,sundarapandian.k
How would I go about making an edit field that only allows a user ot type in a single line (e.g. for a basic form).I sort of assumed the answer would lay with the textFlow.lineBreak commands ... Thought there would have been a "none" option or somehting but cant see any such option.Can anyone offer an example? I'm obviously just blind
Hello,what is the best way to append text with inline graphic to the end of existing textFlow component ? Imagine chat flash client - server sends a new string of XML markup text and client needs to append it to the bottom of "chat history" textFlow.i read that one of the possible methods is to export to XML then append new markup text and then import to textFlow - but isnt it too slow, considering that textFlow will have alot of data ?Thank you in advance!
I thought I would update to the latest trunk version of the sdk. When I run my code I keep getting this Error being thrown:"Error: Could not find compiled resource bundle 'layout' for locale 'en_US'."It worked fine with the beta sdk and nightly builds from a long time before that. The error occured in builds 7573 and 7830, so what ever changed happened before then. I put a break point in there, and other resource bundles are being loaded ok.My project uses RSLs and modules. I'm using Flash Builder beta.I'm not familiar with resource bundles and not sure what to look for. Any ideas as to what to try or where to look?Is there something I need to update to run the latest code? Is the the appropriate place to post questions regarding the nightly builds? Or should I be asking somewhere else?Thanks!PS Here is the full stack trace if it gives anyone more ideas:Error: Could not find compiled resource bundle 'layout' for locale 'en_US'. at mx.reso
I am newbie to TLF, just looked through examples provided with build.I need to diplay an HTML data returned from call to ColdFusion cfc. What are steps which i need to do to show html paragraphs returned in a proper way? Do i need to format them to something like:<flow:TextFlow xmlns:flow="http://ns.adobe.com/textLayout/2008" fontSize="14" textIndent="15" marginBottom="15" paddingTop="4" paddingLeft="4"> <flow:p/></flow:TextFlow>and then return it to Flex 3.2 SDK?Thanks,Mika
Hello,I'm trying out the FlexUnit4 Beta 1 using FlexBuilder 3 on a Mac OS X Leopard, executing the tests that come with the TurnKey release everything seems to be OK, but when I modify a test so it fails and try to execute the tests again and I get the following screen:The progress bar does not move forward regardless of how long I leave the tests to run. It appears that the tests execution is halting on the first failed assertion regardless of which assertion it is. I tried several times with different assertions (ussing Assert static methods and Hamcrest-as3 assertThat) always with the same result.One of the tests I made was to change the method testEnsureSetupComplete in flexUnitTests.flexUnit4.suites.frameworkSuite.cases.TestAsynchronousSetUpTearDown for the following:[Test]public function testEnsureSetupComplete() : void { Assert.assertTrue(false); //Added line Assert.assertEquals( 1, simpleValueOne ); &nbs
Revision: 8311Author: aharui@adobe.comDate: 2009-06-26 08:50:07 -0700 (Fri, 26 Jun 2009)Log Message:***********Another mistake from the frame1 work. When marshall events get modified, the marshaling method must handle all versionsQE Notes: NoneDoc Notes: NoneBugs: SDK-21881Reviewer: darrelltests: checkintestsTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21881Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/events/EventListenerRequest.as
Revision: 8310Author: aharui@adobe.comDate: 2009-06-26 08:47:17 -0700 (Fri, 26 Jun 2009)Log Message:***********Fix bugs in WindowedSystemManager related to drag-drop, off-screen mouse events, performance when lots of windows are up, and some cleanupQE Notes: NoneDoc Notes: NoneBugs: SDK-21507, SDK-20619, SDK-21453, SDK-21539Reviewer: darrelltests: checkintests mustella/MarshallPlanTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21507 http://bugs.adobe.com/jira/browse/SDK-20619 http://bugs.adobe.com/jira/browse/SDK-21453 http://bugs.adobe.com/jira/browse/SDK-21539Modified Paths:************** flex/sdk/branches/3.x/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/managers/SystemManager.as flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/managers/SystemManagerGlobals.as flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/managers/systemClasses/
Revision: 8309Author: aharui@adobe.comDate: 2009-06-26 08:41:04 -0700 (Fri, 26 Jun 2009)Log Message:***********Fix bugs in WindowedSystemManager related to drag-drop, off-screen mouse events, performance when lots of windows are up, and some cleanupQE Notes: NoneDoc Notes: NoneBugs: SDK-21507, SDK-20619, SDK-21453, SDK-21539Reviewer: darrelltests: checkintests mustella/MarshallPlanTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-21507 http://bugs.adobe.com/jira/browse/SDK-20619 http://bugs.adobe.com/jira/browse/SDK-21453 http://bugs.adobe.com/jira/browse/SDK-21539Modified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManagerGlobals.as flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/EventProxy.as flex/sdk/tr
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.