-
Recente
2 short questions about TLF XML format the importer can read:1) img tag for graphic inlineis the float attribute usable ?with float="none", my graphic is visiblefloat="left" => graphic is not rendered.I am interested in text flowing around the inline graphicI recently attented an Adobe conference in Paris. An adobe consultant showcased an interesting dev with TLF, with a draggable inline graphic, text flowing dynamically around it : http://lafabrick.com/labz/pageLayout/weeklyBuild/Do you know about this work ? Could that kind of fonctionnality be built into TLF ?2) newline characterwhich one to use with the TLF importer ? I tried \n, \r without successThanks in advance
Revision: 12962Revision: 12962Author: gauravj@adobe.comDate: 2009-12-15 10:32:23 -0800 (Tue, 15 Dec 2009)Log Message:***********Fix for ASDoc not saving event type for metadata tagQE notes: None.Doc notes: NoneBugs: SDK-24706Reviewed By:CoreyTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24706Modified Paths:************** flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.java
any idea?if i change the source to go down the code tree to say-s "D:/wrk_gapp-i17/gariffCode/src/tinylion/gariff"then all is finebut all of the following give the same error-s "D:/wrk_gapp-i17/gariffCode/src/tinylion/gariff"-s "D:/wrk_gapp-i17/gariffCode/src/tinylion/"-s "D:/wrk_gapp-i17/gariffCode/src/"is it the amount of files?any source that goes deeper is fine;-s "D:/wrk_gapp-i17/gariffCode/src/tinylion/gariff/views"-s "D:/wrk_gapp-i17/gariffCode/src/tinylion/library"etcas you can see ive tried uping the memory (same what ever value i use)using latest version as far as i know$ java -Xmx1024 -jar "A:/_tools/flexPMD/flex-pmd-command-line-1.0.jar" -s "D:/wrk_gapp-i17/gariffCode/" -o "D:/wrk_gapp-i17/gariffCode/_pmdOut/all_flex/" -r "A:/_tools/flexPMD/all_flex.xml"12-Dec-2009 21:34:09 com.adobe.ac.pmd.engines.AbstractFlexPmdEngine loadRulesetINFO: Ruleset: A:\_tools\flexPMD\all_flex.xml12-Dec-2009 21:34:09 com.adobe.ac.pmd.engines.AbstractFlexPmdEngine loadRulesetINFO: Rules num
Helloi recently installed November 28 SDK 4 nightly build.I am now getting trouble with named formats, that are no more taken into account in my code.This syntax was previously working; dipslaying a red text :var s:string = "<TextFlow xmlns='http://ns.adobe.com/textLayout/2008'>";s += "<format id='xtitle' color='#cc0000' fontFamily='Verdana' />";s += "<p format='xtitle'>My red title </p></TextFlow>"textFlow = TextConverter.importToFlow(s, TextConverter.TEXT_LAYOUT_FORMAT);Could you tell me what has to be changed here ?And more generally, where could i find documentation pertaining to the TEXT_LAYOUT_FORMAT, tags, attributes that can be used ?Thanks in advance
Hello,I have a scenario in which I need to replace some images in a text flow with substitutes and then later I need to "restore" the text flow and show the original images. I update the text flow by adding/removing FlowElements. After the point when I "restore" the text flow I receive INLINE_GRAPHIC_STATUS_CHANGE events for all the images that were restored. This is rather a problem for me because when I "restore" I would like immediately to calculate the new dimensions of the text flow (or rather its containers).Is there a way to achieve such "restore" so I get the proper dimensions (iamge sizes) immediately?I do not want to receive the notifications asynchronously later because my effects depend on the exact image sizes.As mentioned I tried with adding/removing FlowElements. I also tried working with TextScrap i.e. cut a TextScrap before adding the substitutes and then paste the same TextScrap when "restoring". This didn't help neither. It again reloads the images from scratch and d
Revision: 12927Revision: 12927Author: gruehle@adobe.comDate: 2009-12-14 14:51:15 -0800 (Mon, 14 Dec 2009)Log Message:***********Update icon for mx TabBar.QE notes: -Doc notes: -Bugs: SDK-24331Reviewer: -Tests run: checkintestsIs noteworthy for integration: noTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24331Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TabBar.png
Revision: 12925Revision: 12925Author: klin@adobe.comDate: 2009-12-14 14:19:53 -0800 (Mon, 14 Dec 2009)Log Message:***********Remove FIXME from SliderBase. It is correct for Slider to set the pendingValue during an animation, and it should not actually set the value or dispatch valueCommit events for an animation.QE notes: NoDoc notes: NoBugs: NoneReviewer: -Tests run: -Is noteworthy for integration: NoModified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/SliderBase.as
Revision: 12923Revision: 12923Author: gruehle@adobe.comDate: 2009-12-14 14:15:25 -0800 (Mon, 14 Dec 2009)Log Message:***********Resolve 6 "FIXME"s in sample themes by removing commented code.QE notes: -Doc notes: -Bugs: -Reviewer: -Tests run: checkintestsIs noteworthy for integration: noModified Paths:************** flex/sdk/trunk/samples/themes/cobalt/src/cobalt/skins/SkinnableDataContainerSkin.mxml flex/sdk/trunk/samples/themes/graphite/src/graphite/skins/SkinnableDataContainerSkin.mxml flex/sdk/trunk/samples/themes/zen/src/zen/skins/SkinnableDataContainerSkin.mxml
it would be nice if there was a way to exclude a class from being testedby using //NO PMD ALL at start of the file or after the class name
Thought I'd share a way Ive found to work with PMD and the eclipse plug-in when adding the nature to a project which already has quite a lot of code.1. add the pmd nature2. turn on MonitorizeFirst i tried just doing a clean build hoping all the code would be tested. it either didnt work or I think just stopped cus of too many filesanyway, what ive now done to good effect is this.Go through each folder, or master package and do a manual PMD run (this also then displays the results in the flexPMD view panel, which wasnt happening when pmd was auto run by a build)once Ive gone through each folder and done a manual run, the errors etc in the problems panel just agregate nicely. Now I have a fully tested start pointfrom then on only files I change and save are tested, during the build cycle, and all seems to be running very well.It helps a great deal if you set up a second problems panel just for pmd results.It's taken me a while to find this (although obvious) workflow, but now for the fir
Hi, I have the misfortune that my flex application base package is like "com.foo.frontendview". I didn't choose that package name and I cannot change it. Thus, every import I have in the model, for instance: "com.foo.frontendview.vo.PersonVO" shows a ViewComponentReferencedInModel violation. Can this rule be changed to a more accurate implementation? Instead of searching for the substring "view" in the whole import sentence (the full qualified class name), you could seach for the "view" substring only in the simple class name (removing the package).Regards, Alex
Hi, I'm getting this error every time I publish my web-app to Tomcat: "Could not delete path_to_flex_web_app/WEB-INF/classes/flexPmd. May be locked by another process." I'm using FlexPMD 1.0.1 with the Eclipse plugin.Regards, Alex
Finally, we got there...FlexPMD 1.0 has been released a couple of minutes ago.Here is the release noteThe big highlight of that release is: - Eclipse plugin - FlexMetrics - FlexCPD improvedI hope you will like, and thanks to Xavi Beumala for developping the Eclipse plugin.Xavier
I may sound stupid but I really need to have this text layout framework documentations for offline use http://livedocs.adobe.com/labs/textlayout/it's really a pain to use the online version, while coding, I'd like to quickly navigate through pages and find more and more about different classes. I have already downloaded all different samples and have installed the sdks, I am able to successfully run the samples and use the frame work with cs4 and FlashDevelop software, all ok. the only problem is that I don't have the documentation offline for fast reviewing the packages and classes...Any ideas? please?
Thanks for introducing the FlexMetrics tool, this is very cool! How is the NCSS metric calculated? It seems to be vastly under-counting our number of lines, but maybe I'm just not understanding the metric.Thanks,Brian
Well, after playing with the command line version of RC5 for the last 6 hours I have to say I love this tool.Run lots of differents test on all, and parts of a flex 4 application thats about 8 months into development and the information returned has been really helpful.I was amazed at the number of 'todo' items I had totally forgotten about (things I knew needed doing but hadnt been written up as tasks, and had just fallen out of my head), looking at the test outputs has reminded me of loads. Generally the experience has been extreamly positive.As soon as it's running in Eclipse and I can double click on a file in a report and jump right to the line in question this will be outstnadingly useful.all in all Im well chuffed (just in case your not from the UK, being 'well chuffed' is good lol, thought maybe it would be best to clarify that one.)so thanks guys and keep it coming.glenntinylion uk
Please download the attached file to view this post
Revision: 12877Revision: 12877Author: gruehle@adobe.comDate: 2009-12-11 18:32:13 -0800 (Fri, 11 Dec 2009)Log Message:***********Fix measure/layout issues with Alert and graphic skins.QE notes: NoDoc notes: NoBugs: SDK-24567Reviewer: JasonTests run: checkintests, mustella AlertIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24567Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Alert.as
Revision: 12870Revision: 12870Author: klin@adobe.comDate: 2009-12-11 15:52:43 -0800 (Fri, 11 Dec 2009)Log Message:***********Couple of minor fixes including SDK-24627 and SDK-24628.-Added metadata so that resizeMode code hints. Needed to add the same metadata to Group since it doesn't inherit the enumerations from GroupBase. Renamed NOSCALE to NO_SCALE, which is more in line with naming conventions.-Added null checks in VScrollBar and HScrollBar in pointToValue().-Cleaned up VSlider's code.QE notes: NoDoc notes: NoBugs: SDK-24627, SDK-24628Reviewer: RyanTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24627 http://bugs.adobe.com/jira/browse/SDK-24628 http://bugs.adobe.com/jira/browse/SDK-24627 http://bugs.adobe.com/jira/browse/SDK-24628Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as flex/sdk/trunk/frameworks/projects/spark/src/spark/componen
Revision: 12865Revision: 12865Author: aharui@adobe.comDate: 2009-12-11 13:51:27 -0800 (Fri, 11 Dec 2009)Log Message:***********Fix mx.controls.HTML and mx.core.FlexHTMLLoader so the participate in the current IME schemeQE Notes: NoneDoc Notes: NoneBugs: SDK-24391Reviewer: CoreyAPI Change: NoIs noteworthy for integration: Notests: checkintests mustella/apollo/HTMLTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24391Modified Paths:************** flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/FlexHTMLLoader.as
Revision: 12863Revision: 12863Author: sbreinbe@adobe.comDate: 2009-12-11 13:18:02 -0800 (Fri, 11 Dec 2009)Log Message:***********Fix class referenced in Alternative metadata.Alternative metadata for Box, HBox, VBox, Canvas, and Tile still used the obsolete Border classname rather than BorderContainer.QE notes: -Doc notes: -Bugs: SDK-24678Reviewer: JasonTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24678Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
I tested this issue by embedding the Adobe Garamond Pro font (all four font files are embedded as cff and point to the same fontFamily). The small caps work when the font is regular. If I change it to bold and/or italic the small caps become big caps. I checked the glyphs of the bold and italic files and there are small caps glyphs.Am I doing something wrong?Here is the embedding code:@11220649-face { src: url("fonts/AGaramondPro-Regular.otf"); fontFamily: AdobeGaramondProEmbedded; embedAsCFF: true;}@11220649-face { src: url("fonts/AGaramondPro-Bold.otf"); fontFamily: AdobeGaramondProEmbedded; fontWeight: bold; embedAsCFF: true;}@11220649-face { src: url("fonts/AGaramondPro-Italic.otf"); fontFamily: AdobeGaramondProEmbedded; fontStyle: italic; embedAsCFF: true;}@11220649-face { src: url("fonts/AGaramondPro-BoldItalic.otf"); fontFamily: AdobeGaramondProEmbedded; fontStyle: italic; fontWeight: bold; embedAsCFF: true;}
Hello,Where should I submit bugs related to FlexCPD?Should we use the FlexPMD project in JIRA and if so then which component?The problem I have is that when FlexCPD detects similar snippets in MXML files it reports wrong lines. I have several such reports and all the reported pair of snippets have nothing in common that's why I guess the line numbers are wrongly calculated. For .as files it works ok.Thanks
Revision: 12821Revision: 12821Author: klin@adobe.comDate: 2009-12-10 17:53:44 -0800 (Thu, 10 Dec 2009)Log Message:***********Follow-up to SDK-24574. Add try-catch block to two other places where we use bitmapData.draw(). In this case, we allow the bitmaps to remain null. In this failure case, the flag, hasBitmaps, is set and the shader in the AnimateTransitionShaderInstance is not created. This allows the effect to finish, just without input from the shader since it could not capture the bitmaps.QE notes: NoDoc notes: NoBugs: SDK-24574Reviewer: ChetTests run: checkintestsIs noteworthy for integration: NoTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-24574 http://bugs.adobe.com/jira/browse/SDK-24574Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/AnimateTransitionShader.as flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransitionShaderInstance.as
Who knows if the issue described here http://opensource.adobe.com/wiki/display/flexsdk/Gumbo+Font+Embedding already solved?Thanks,Alexander
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Você já é cadastrado? Entrar
Ainda não tem uma conta? Crie uma conta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.