『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Revision: 16022Revision: 16022Author: klin@adobe.comDate: 2010-05-10 16:43:50 -0700 (Mon, 10 May 2010)Log Message:***********Merge from 4.x to trunk.Fix for http://bugs.adobe.com/jira/browse/SDK-26346. The thumbnail bitmap was being added to a group before the group was on the display list. This caused the bitmap flip its direction since the group's layoutDirection inheriting style couldn't resolve. The fix is to add the group to the display list before adding the bitmap to the group.QE notes: NoDoc notes: NoBugs: SDK-26346Reviewer: RyanTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-26346 http://bugs.adobe.com/jira/browse/SDK-26346Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoDisplay.asProperty Changed:**************** flex/sdk/trunk/
Revision: 16021Revision: 16021Author: klin@adobe.comDate: 2010-05-10 16:32:23 -0700 (Mon, 10 May 2010)Log Message:***********Fix for http://bugs.adobe.com/jira/browse/SDK-26346. The thumbnail bitmap was being added to a group before the group was on the display list. This caused the bitmap flip its direction since the group's layoutDirection inheriting style couldn't resolve. The fix is to add the group to the display list before adding the bitmap to the group.QE notes: NoDoc notes: NoBugs: SDK-26346Reviewer: RyanTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-26346 http://bugs.adobe.com/jira/browse/SDK-26346Modified Paths:************** flex/sdk/branches/4.x/frameworks/projects/spark/src/spark/components/VideoDisplay.as
Dear ladies and gents,we have just integrated textflow in rather larger Flex/Flash dynamic Framework. All is working out quite well, except for the embed fonts issue. We spend hours after hours trying to make it work ... no dice.Could you pretty pretty please describe one more time the best practice to use dynamically loaded fonts with TLF?a) the most practicle way of using dynamic fonts would be to load SWFs at runtime ... am I correct?So we bought newest Flash CS4, hoping to have cff=true Option with embedding fonts. [Embed(source='C:/WINDOWS/Fonts/Arial.ttf', fontName='_Arial', cff='true')] public static var _Arial:Class;--> does not work, Flash tells us: cff not supported by flex2.compiler.media.FontTranscoder'What Flash CS4 has to do with Flex of any compilation escapes me, but you guys probably know, why you did it.b) from lots of tipps in Forums I read, Installing Flex Gumbo might be of help. Tried that, too, including the new SDK (last stable build, t
I have downloaded Flash CS5. Where is the .as file for TLFTextField? I would like to evaluate how easy it is to subclass.http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/text/TLFTextField.html
Hi,Is there a way to have a TextFlow with multiple containers but that the text doesn't float between containers.In other words, I want to add several sprites to a text flow, and manage them independently.Should I have a text flow for each container? how expensive it is in terms of performance?tks.
I would like to create a textfield with TLF (as a more versatile replacement for flash.text.Textfield).Unfortunately, I am not sure how to get started. Does this already exist? Can someone point me in the right direction? Hopefully this will be useful to more people than just me. Thanks.
HiIn InDesign there is an Open Type typographical property called Contextual Alternates. Is this (or something comparable) available in TLF?Tobi
I am completely new to Flex and FlexUnit. I am trying to execute a unit test that tests whether a rest webservice call generates the correct output. I am using the FlexUnit Ant task and I deploy the TestRunner.swf to the server where I want to TestRunner to run/execute the test, so that the rest call can be made properly. When I try this from the browser it works perfectly, but when I put the following in the Ant Task I get and error. Can anyone PLEASE help me with this??? What am I doing wrong???...<flexunit player="flash" swf=http://localhost:8080/TestRunner.swf toDir="${reports.dir}" haltonfailure="false" verbose="true" localTrusted="true"/> ...I get this error:Build Faild: the provided swf property value C:\User\workspace\flexunit\https:\localhost:8080:TestRunner.swf could not be found.
According to the following post rdermer claims that there isn’t a XSD for TLF markup:http://forums.adobe.com/message/2223205#2223205But what other ways can we validate our TLF data? And excuse my ignorance, but why can't I use a XSD to validate TLF data in a XML file?
Hello FlexPMD Community,I am trying to write some custom rules for picking:private function downloadFile():void{ fileRef.download("/abc/xyz");}The best, I could do is:private static final String METHOD_NAME[] = {"download"};private static final String SECURITY[] = {"FileReference"};@2226279protected final void findViolations( final IClass classNode ){ for(final IFunction function : classNode.getFunctions()) { if(function.getBody().findPrimaryStatementsFromNameInChildren(SECURITY).size() > 0) { for(final IParserNode functionCall : function.getBody().findPrimaryStatementsFromNameInChildren(METHOD_NAME)) { &nb
Hello,I'm new to FlexPMD. I have just generated my firsts reports. I try to generate HTML reports.I browse the documentation, this forum and the web and I find informations to :- generate documentation with Hudson- generate documentation with Maven- generate documentation with XSLT pmd.xml -> htmlOk, I try to keep it simple. So I don't want to use Hudson.I'm using ANT, and I currently don't want to install/learn Maven.I'm using FlexUnit with ANT. And It's really simple to generate reports :<junitreport todir="${report.flexunit.loc}"> <fileset dir="${report.flexunit.loc}"> <include name="TEST-*.xml" /> </fileset> <report format="frames" todir="${report.flexunit.loc}/ht
HelloIs there any way to limit the height of cursor to the height of the text in a text line having graphics? The height of the cursor remain equal to the line height having graphics in the whole line which is not required in my current application.
Hey flexers,I have an app that's using the Flex 3.3 SDK. We pulled the text layout swc from Flex 4 and are using a text flow in our app. Previous to this we had been using the old TextField.How do I go about loading in a font swf at runtime and getting a text flow to use it? I've tried several things as posted on the forum and around the web and it never actually takes effect in the text flow. Here are a couple questions I came up with along the way though:When I compile the font swf from the font css, do I need to have embedAsCFF=true?Should I be able to use StyleManager.loadStyleDeclarations() to load in the font swf? When I do, I get the following error:VerifyError: Error #1014: Class mx.modules::ModuleBase could not be found.Any idea why or know how I would load in the font swf?
I have a Utility class that I want to put code in that I'm reusing over and over again. This includes Async.handleEvent calls. If I call an instance of the Util class from a [Test(async)] method, can I use the Async call in that other event?When I tried this in my code, it said that it "Cannot add asynchronous functionality to methods defined by Test,Before or After that are not marked async" but my [Test] is marked as async. And when I was in the same class, I was able to have non-Test methods make Async calls.Thanks for the help!Mocked up Example (please note these are two separate files):// Test.aspackage{ import TimerUtil; public class Test { [Test(async)] public function waitForTimer():void {  
Hi AllI use the TLF, and i have inserted images into the textFlow, and when i export the data to an xml file, the path of the image is exported.Is it possible to have images exported as binary data, instead of the full path in the source attribute, so the xml-file can be moved to another pc??It is kind of a self-contained xmlfile that i am looking for.Thanks/Allan
I'm trying to display some multiline text areas with Flash Text Engine, but I get very irregular and ugly spacing between characters. Sometimes a single word appears to be two or more words, while at other times, characters are virtually on top of each other. To test this, I tried the "Justifying text" example from here: http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS0ADADB8F-9A0D-40aa-8170-374B8B4B29CF.htmlThe results are terrible:Any clues what I'm doing wrong?Thanks,-pd
Parsley 2.2.1 was recently released (3/28/2010). I noticed that navigation silently fails while using the latest parsley & navigation swcs. The Parsley build was the latest posted on their site, the Navigation build was rev. 15264Is there still a great amount of work to be done on the Parsley 2.2 migration? Is there a roadmap and/or issue tracker for Cairngorm 3?
Hi there,I had discover a bug(?) or unintended feature - able to do strikethrough on TextFlow but when use TextConverter to convert to html tag. The <S></S> tag is missing. After some digging through the sdk code and found out HtmlExporter doesn't handle the condition of strikethrough. My current sdk version 4.0.0.14159 (come with flex builder 4)Tried version 4.1.0.14756, it seems to be the same.Search through the change log - couldn't find anything related to this on latest build.Question about this,Is it a bug? or is it intended? If it is intended, will I get any similar feature in the future build?Unrelated question,All the html tag generate by the HtmlExporter are deprecated in html 4. Is there any plan to move forward to use CSS?I can try to hack around to get it to work for my environment but I just don't want to make a lot of changes if there is new sdk that fix it in the future. Please let me know what I can do with this.Cheers
Could you give us a little prevision about next features in TLF ?TLF is great but some miss make it unusable in some project :< (especially table and list) .I'm so curious about it, and I would like to know what could we hope to see in the next month.Thanks for great work François.
I have a project that uses several textFlows. The ones inserted directly into an UIComponent descendant works as expected - I can select text and the selection is drawn.TextFlows in a multipage, image wrapping class doesn't show selection, or rather the focusedSelection format is never used - it's always the unfocusedSelection format.This happens even as I drag to select. All other attributes work as expected - events are fired and selectionState returns correct values.What can cause a textFlow to think it's never focused?
Hi,I have a canvas contaienr that holds a sprite which I use as container for a TextFlow. How can I get the position in the text flow whne I move the mouse over the textflow?If couse I can listen to mouse move and get the mouse X and Y values, but I need to convert those into a textflow positions.(I'm using EditManager)Thanks.
Let me start of by saying that this is a much needed extension to the out of the box validation support. Now to my problem.The ValidatorGroup.reset() method does not do what it's suppose to. If the validator's source is a UIComponent it does not remove the error decoration (red border and tool tip). Has anybody faced this?Looking at the source code the ValidatorGroup attempts to force the IValidatorListener to reset its validation by calling its validationResultHandler() method and passing to it a "VALID" ValidationResultEvent, but this does nothing. Shouldn't this be setting the errorString to empty string ('').I've also downloaded the Validation and ValidationTest projects and the Sample1.mxml file illustrates this use case and it also does not work.Am I missing something or misusing the API?
Hi,I'm trying to emebed some fonts, but I haven't been able to get it working.I'm using this code in a style sheet: @11220649-face{ src: url("../assets/fonts/lsans.ttf"); fontFamily: LucidaSansV; embedAsCFF:true; } @11220649-face{ src: url("../assets/fonts/ROCK.TTF"); fontFamily: RockwellV; embedAsCFF:true; } @11220649-face{
good day! i added some ellipses to a component and tried to add an eventlistener to each object e.g. mouse_click or mouse_over, for changing the objects color of shape ... doesn't matter. anyway i have no clue how to do that. is there some way ? var ellipse:Ellipse = new Ellipse(); ellipse.height = height; ellipse.width = width; ellipse.stroke = new SolidColorStroke(0x111111); ellipse.fill = new SolidColor(0x0000FF);thanking you in anticipation fritz
Hi,I want to use Drag and Drop functionality within TLF. I implemented a version where I can drop an image on the TLF-Container and it is inserted on the current cursor position (activePosition). But I want to insert the image at the position where the mouseUp event happens which is not equal to the active position. (How) is it possible to get the TextFlow position where the mouse is currently over in order to insert the target correctly?
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.