『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hi,I've written the following class :[Code]public class Main extends Sprite { [Embed(source="../bin/assets/fonts/Arial.ttf", fontName="fontArial", mimeType="application/x-font")] public var arial:Class; [Embed(source="../bin/assets/fonts/Arial Italic.ttf", fontName="fontArial", mimeType="application/x-font", fontStyle="italic")] public var arialItalic:Class; [Embed(source="../bin/assets/fonts/Arial Bold.ttf", fontName="fontArial", mimeType="application/x-font", fontWeight="bold")] public var arialBold:Class; [Embed(source="../bin/assets/fonts/Arial Bold Italic.ttf", fontName="fontArial", mimeType="application/x-font", fontWeight="bold", fontStyle="italic")] public var arialBoldItalic:Class; public function Main( ) { stage.scaleMode = StageScaleMode.NO_SCALE;&
I am not English,Please just look at,ThanksCS4.0 import flashx.textLayout.formats.CharacterFormat;var cf:CharacterFormat = new CharacterFormat();cf.fontFamily = _font;Initialization is no problem,However, when the choice to change the text, always change the default font, and also can not be changed more than style,I would like to ask how the thing ah?
text layout extension installed, extension manager show it but it is not appear in components panel, where is the problem?
I was trying to instantiate the class SubParagraphGroupElement and got this error - "Main Thread (Suspended: Error: Attempted construct of invalid FlowElement subclass)"Exemple:var subP:SubParagraphGroupElement = new SubParagraphGroupElement();This is a bug?, if not how should I proceed to instantiate this class. Thanks.
I can't find flex project for tlf in development folder. Could anybody guide me how to build tlf swc using flex/flash builder.--Chetan Sachdev
Hi all,I have a few doubts. I want to use tlf in flex 3 and want my TextArea to support almost all the features supported by tlf. Do I need to write a wrapper(Component) on top of tlf in flex 3 to do this ? I have seen RichEditableText and RichText primitives in Spark, is there something similar for flex 3, a UIComponent which leverages tlf in flex 3 ?Thank you--Chetan Sachdev
Hello,I am having problems getting started with TLF.I am running Flash Builder under Windows Vista, I have included all the libs needed but i cannot get the app started.You can see the errors I am getting into the attached image.Is something wrong with the libs I try to use... or...??? i have no clue how to get started Thanks in advance!------------------Adrian
In my Flex+AIR application I am using Textflow. Now I would like to add a spell checker to it.Can any body help me, how to proceed for it.And also I don't want to use any web service, coz my application can run offline also.Thanks in advance.
Hi,I wanna to add a operation in the queue of operations, when I run the following code.EditManager(textFlow.interactionManager).beginCompositeOperation()var para:ParagraphElement = new ParagraphElement(); var spanBullet:SpanElement = new SpanElement(); var span:SpanElement = new SpanElement(); spanBullet.text = "1." span.text = "testing"; para.addChild(spanBullet); para.addChild(span);textFlow.addChild(para);EditManager(textFlow.interactionManager).endCompositeOperation();Thus does not work, I wonder if you can help me, thanks. Excuse my english, but i dont speek english,
Hellow,with the latest SVN version (Revision: 8751) i'm not able to use this code (about ~2 weeks ago this code worked perfectly): tf_history = new TextFlow (); public function text_add (txt: String): void { var tf: TextFlow = TextConverter.importToFlow (txt, TextConverter.PLAIN_TEXT_FORMAT); tf_history.addChild (tf); tf_history.flowComposer.updateAllControllers (); }this is from flashlog.txt:ArgumentError: newElement not of a type that this can be parent of at flashx.textLayout.elements::FlowGroupElement/replaceChildren()[/home/dev/flash/trunk/frameworks/projects/textLayout/textLayout_core/src/flashx/textLayout/elements/FlowGroupElement.as:729] 
Hi,I have recently installed new SDK 4 for Flex builder 3 which is suppposed to include the textlayout.swc classes. Can anyone tell me how i can get new TextLayout to work.
Revision: 8745Author: gruehle@adobe.comDate: 2009-07-22 20:47:51 -0700 (Wed, 22 Jul 2009)Log Message:***********Add "inactive" skin state to scroll bars. The inactive state is set when there is no content to scroll through (or maximum <= minimum).QE notes: Tests need to be added for the new state.Doc notes: New skin state added to ScrollBar. ASDoc added.Bugs: SDK-18039Reviewer: HansTests run: checkintests, qe cycloneIs noteworthy for integration: YesTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-18039Modified Paths:************** flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/ScrollBar.as flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/HScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/HScrollBarSkin.mxml flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VS
HeyI had no idea this was about to get opened up.cool, time to see if we can break it 😉g
Hi!First of all... congrats for such a nice work As the title says... can we get the htmlText of the edited text ?Thanks!----------------Adrian
In case you missed it: TLF is now OpenSource. The sources are being delivered with Flex Gumbo Builds.Some handy links for getting more information:TLF OpenSource Homehttp://opensource.adobe.com/wiki/display/tlf/Text+Layout+FrameworkAnnouncmentshttp://blogs.adobe.com/tlf/2009/07/the_text_layout_framework_is_n.htmlhttp://opensource.adobe.com/wiki/display/tlf/Text+Layout+Frameworkhttp://eon.businesswire.com/portal/site/eon/permalink/?ndmViewId=news_view&newsId=20090720006233ForumMoving forward please post questions, issues and bugs to the new TLF opensource forum:http://forums.adobe.com/community/opensource/tlfThe Labs forum is deprecated but will remain open for the foreseeable future.TLF team will be monitoring and responding to both forums.DocumentationMost up to date posted public documentation is here:http://livedocs.adobe.com/flex/gumbo/langref/Downloadshttp://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4The TLF code is in builds from 4.0.0.8702 forward.&
Hi, I'm wondering if there's a way to get the source code of this TLF demo:http://labs.adobe.com/technologies/textlayout/demos/Thanks a lot
Hi Everyone,I tried a simple example with timer event and once it gets complete , i call a function to check my assert. There is a for loop which checks for all the assert, but i get an error in that loop if any of my assert is not true. Can anybody help out. My sample code i am pastingthis is my test method in my class.public function testTimer2():void { _timer = new Timer(1000, 2); _timer.addEventListener(TimerEvent.TIMER, incrementCount, false, 0, true); _timer.addEventListener(TimerEvent.TIMER_COMPLETE, addAsync(verifyCount, 2500, 2), false, 0, true); _timer.start(); }this function is getting called twice priv
Revision: 8721Author: aharui@adobe.comDate: 2009-07-21 15:11:37 -0700 (Tue, 21 Jul 2009)Log Message:***********Hopefully final implementation of IME support.QE Notes: NoneDoc Notes: new API in IIMESupportBugs: SDK-22267, SDK-18516Reviewer: GordonAPI Change: YesIs noteworthy for integration: Yes, new API in IIMESupporttests: checkintests mustella/gumbo/components/TextInput mustella/gumbo/components/TextAreaTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-22267 http://bugs.adobe.com/jira/browse/SDK-18516Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBase.as flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/List.as flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/NumericStepper.as flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TextArea.as flex/sdk/trunk/frameworks/projects/framework/src/m
Revision: 8712Author: aharui@adobe.comDate: 2009-07-21 10:39:03 -0700 (Tue, 21 Jul 2009)Log Message:***********Fix embedded fonts in RSLs (and more complex module topologies)QE Notes: NoneDoc Notes: NoneBugs: SDK-22313Reviewer: Darrell, GordonAPI Change: NoneIs noteworthy for integration: Notests: checkintests mustella/gumbo/components/TextInput mustella/gumbo/components/TextAreaTicket Links:************ http://bugs.adobe.com/jira/browse/SDK-22313Modified Paths:************** flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/RichEditableText.as flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java
HiI have a TextFlow which contains several span elements. (Each has an ID attribute.) When the user clicks on one of these spans, a pop up should appear whe the user can style the span.I tried to assign a different event listener to each of the spans, but failed.This brings the same result for both spans: element.tlf_internal::getEventMirror().addEventListener(MouseEvent.CLICK, regionClickHandler); public function regionClickHandler(evt:MouseEvent):void { Alert.show(evt.currentTarget.name.toString()); }Any ideas?Tobi
Are columns limited to just the containers? I have a single textarea (read:container) that has text, but rather than all of the text being in columns, I only want certain paragraphs. For this to happen, do I have to convert the user selection to a new container before it can be in columns?
Revision: 8708Author: gauravj@adobe.comDate: 2009-07-21 07:46:45 -0700 (Tue, 21 Jul 2009)Log Message:***********Fix broken buildModified Paths:************** flex/sdk/trunk/frameworks/projects/textLayout/build.xml
Hi,I'm studying the textflow framework examples and see that they use a canvas + sprite child with an editManager and IEditManager rather than the textarea. My question is, once the user has made all the formatting changes, how can I export the contents to a database to save it? I know with the textarea component there was the htmlText, but I'm not seeing an option of sorts. Flex will be the only accessor of this info.Thank you!
I am using an HBox contrainer to layout action buttons along the bottom of a set of pages that make up a wizard. As a rule these pages are instantiated only once at wizard startup and persist throughout the life span of the wizard. During that time, a user can move back and forth a lot between pages. However based on the state of the the workflow, buttons on various pages will be disabled or re-enabled and some get completely hidden only to re-appear later. This happens dynamically based on use actions.In this scenario, the disabled buttons look fine but hidden buttons mess things up. For example, if the third button in a row of four buttons is hidden, this results in an odd gap in the row of buttons. Likewise if the first of three buttons were to be hidden, the remaining two buttons are adjacent but not centered as they should be. So my question is, is there anyway to remove a button from the layout without actually removing the button from the Hbox
Hey all,My goal is to build a UI that will present a tree view of all my available test suites/cases and allow the user to choose what tests they want to run.I need a push in the right direction as to the best way to start programmatically building out partial test suites while preserving all the great metadata funtionality in my test cases that FU4 adds. Any suggestions?Thanks!Brian
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.