『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Revision: 16736Revision: 16736Author: aharui@adobe.comDate: 2010-06-29 22:51:05 -0700 (Tue, 29 Jun 2010)Log Message:***********3.6 DataGrid Bugs SDK-25886: Fix ASDocSDK-25481: reset hasComplexFieldName if necessarySDK-26477: fix logic for lockedRowCountSDK-25586: fix timing of adding proxy before setting data.QE notes: none Doc notes: noneBugs: SDK-25886, SDK-25481, SDK-26477, SDK-25586Reviewer: CoreyTests run: checkintests mustella/components/ComboBoxIs noteworthy for integration: noTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-25886 http://bugs.adobe.com/jira/browse/SDK-25481 http://bugs.adobe.com/jira/browse/SDK-26477 http://bugs.adobe.com/jira/browse/SDK-25586 http://bugs.adobe.com/jira/browse/SDK-25886 http://bugs.adobe.com/jira/browse/SDK-25481 http://bugs.adobe.com/jira/browse/SDK-26477 http://bugs.adobe.com/jira/browse/SDK-25586Modified Paths:************** flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/D
Hello,I am adding LinkElement to my TextFlow and it seems they are not clickable until I do a special trick.Here is my code :(OnClick of a button)var t:TextFlow = txtText.textFlow;var p:ParagraphElement = new ParagraphElement();var s:SpanElement = new SpanElement();var a:LinkElement = new LinkElement();a.href = "http://www.adobe.com";s.text = "Un lien";a.addChild(s);p.addChild(a);t.addChild(p);txtText.textFlow = t;this is my RichEditableText :<s:RichEditableText id="txtText" editable="false" />The link appears with correct format, but when I mouse hover, the cursor is the selectable one, not the hand. I am able to make it "handed" when I select some text, then I press the right-button and then I click on COPY and the link is now clickable (I really don't understand what the hell is going on behind. I tried to attach some listeners and the FlowOperationEvent.FLOW_OPERATION_* are dispatched when I do that.)Did I forget something to do ?Sorry for my english,Charles.
We have a body of existing code that depends on the venerable TextField object, but we'd like to be able to take advantage of the new bidirectional textcapabilities in the TLF.I see there is a class in the SDK called FTETextField, which says it implements the TextField API. Has anyone used thissuccessfully to emulate a TextField with existing code? I saw some blog entries as recently as February saying thatthe FTETextField was working only partially. Or are there other alternatives that people have been using?I have been thus far writing my own collection of compatibility routines, and am not sure whether to continue with that approach or try to workwith the FTETextField as it stands, hoping it will sustain further improvements and support.Thanks,Henry
I get this error everytime, if I repeat the following steps:Type "blabla" into a RichEditableTextCopy "lab"Insert it after the first "a"Copy "alabb"Insert it before the "bb"I know it's kind of silly, but I tried several other combinations and that one seems to be one that works all the time. After this procedure the following error appears:TypeError: Error #1009: Cannot access a property or method of a null object reference. at flashx.textLayout.edit::TextScrap/clone() at flashx.textLayout.edit::TextFlowEdit$/replaceRange() at flashx.textLayout.operations::PasteOperation/internalDoOperation() at flashx.textLayout.operations::PasteOperation/doOperation() at flashx.textLayout.edit::EditManager/doInternal() at flashx.textLayout.edit::EditManager/doOperation() at flashx.textLayout.edit::EditManager/pasteTextScrap() at flashx.textLayout.edit::EditManager/editHandler() at flashx.textLayout.container::ContainerController/editHandler() at flashx.textLayout.container::TextContainerManager/editH
hi just wondering if anybody knows whether it is theorectically possible to implement cut and paste operations from ms word into the TLF? When I have tried it I have not been able to achieve this as all formatting is lost in the paste operation. Would it be possible to intercept the paste operation to work out what has been pasted and reformat it prior to insertion.I know this sounds like it probably can't be done; but it would be great to have this confirmed if that is the case. I have been asked to evaluate this part of a feature request.Any help appreciated.
Either I am missing something OR there might be a good reason for the following:SaveContactEvent/SearchEvent etc does not extend any Event class, then why we should be calling them events. It is ambiguous and leads to a lot of confusion. These could be appended with something else, but not event.More about Cairngorm 3 (in general):There are multiple libraries such as Observer 1.8 and ObserverParsley 1.8.Do I need both of them to be included in my app OR one of them will fullfil my need based on some preconditions?Cairngorm 3 provides guidelines and various approaches to handle multiple problems, but same time it is much more confusing to get started with a simple application.Every lib has it's own docs, but atleast they all could be combined under an umbrella "cairngorm docs" providing a single landing page to get an access to all the different libs.Thanks.
Revision: 16677Revision: 16677Author: aharui@adobe.comDate: 2010-06-25 10:38:22 -0700 (Fri, 25 Jun 2010)Log Message:***********3.6 ComboBox Bugs SDK-26075. Force tween to end before starting new oneQE notes: none Doc notes: noneBugs: SDK-26075Reviewer: CoreyTests run: checkintests mustella/components/ComboBoxIs noteworthy for integration: noTicket Links:*********** http://bugs.adobe.com/jira/browse/SDK-26075 http://bugs.adobe.com/jira/browse/SDK-26075Modified Paths:************** flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/ComboBox.as
Hi,I'm using this to set the general format of my text flow:<TextFlow xmlns='http://ns.adobe.com/textLayout/2008' fontSize='16' textIndent='0' paragraphSpaceAfter='0' paddingTop='5' paddingLeft='0' paddingRight='0' lineHeight='100%' fontFamily='RockwellCFF'><TextLayoutFormat color='#ff0000' id='hoverOverBrand' /><TextLayoutFormat color='#00ff00' id='mouseDownOverBrand' textDecoration='underline' /><TextLayoutFormat color='#0000ff' id='defaultLinkBrand'/><TextLayoutFormat color='#0000ff' id='hoverOverEmail'/><TextLayoutFormat color='#0000ff' id='mouseDownOverEmail' lineThrough='true' />I'm also loading some embedded fonts, that's working ok.When I apply a link to the current selection, I use this code:IEditManager( textFlow.interactionManager ).applyLink( url, linkTarget, false);The problem I have is that when the link is applied, the selection looses it's font family value and there is no way to re-format it again.is it possible to declare a CFF sett
Hello all,I am trying to copy/paste or export the violations generated by Flexpmd to a csv or text file. This is required for further categorization of violations in my project. There seems to be no direct way of achieving this. I also tried to see if I can generate any reports through Eclipse. I found out that reports can be created only via Maven, Ant.Can any one please suggest some way to achieve this?Thanks in advance.
I notice that violation files can be uploaded and displayed online. Could FlexPMD itself be set up as an online service, where AS files could be directly uploaded for being analyzed and displayed?
hi folks,initially i integrated FlexPMD with Maven.when i tried to build it creates the following:two folders:* CSS --- contains css files* Images --- contains image filestwo files:flexpmd.html -- created with zero bytespmd.xml -- it lists the violations.my pom.xml<plugin><groupId>com.adobe.ac</groupId><artifactId>flex-pmd-maven-plugin</artifactId><version>1.0.RC3</version><executions> <execution> <goals> <goal>check</goal> </goals> </execution></executions><configuration> <ruleSet>${basedir}/pmd-ruleset.xml</ruleSet> <outputDirectory>${basedir}/target/pmd</outputDirectory></configuration></plugin>then i tried to integrate with Hudson, i configured this pmd.xml with hudson, its showing empty graph(see below)
Checked out the trunk today to build the latest and I received a build failure error when running mvn package.Here's the error:Running de.bokelberg.flex.parser.TestPackageContentTests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 secRunning de.bokelberg.flex.parser.TestInterfaceTests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 secResults :Tests run: 128, Failures: 0, Errors: 0, Skipped: 0[INFO] [jar:jar {execution: default-jar}][INFO] [license:check {execution: default}][INFO] Checking licenses...[INFO] ------------------------------------------------------------------------[INFO] Building Adobe Flex PMD RuleSet API[INFO] task-segment: [package][INFO] ------------------------------------------------------------------------[WARNING] POM for 'jaxen:jaxen:pom:1.1.1:compile' is invalid.Its dependencies (if any) will NOT be available to the current build.[INFO] [dependency:unpack-dependencies {execution: unpack-test-resources}][INFO]
I see you an do this in AS with // NO PMDHow can you do this in mxml? I tried it with an xml comment with no success.
Hi All,I have a HScrollbar defined in mxml<s:HScrollBarwidth="75%" id="indexSlider" stepSize="1" buttonMode="true" skinClass="com.ln.skins.HScrollBarSkin" />Later in my as file I attach an eventListenerindexSlider.addEventListener("scroll", myCallbackFunction, false, 0, true);When I use the mouse to scroll the scrollbar I do not get any calls to myCallbackFunction. I do get mouse up and mouse down callbacks when I do addEventListener for mouse up and down. I do get a true response for willTrigger("scroll') for this component. Not sure what I am missing.ThanksJerry
Hi,I would like to modify \Program Files\Adobe\Adobe Flash Builder 4\sdks\4.0.0\frameworks\projects\framework\src\mx\core\ScrollControlBase.as file for testing of my application. How do I get FlashBuilder 4 to compile that file and include it into my build.ThanksJerry
The Flex application that I am working on is compiled using Flex SDK 3.0.Now I want to unit test this application using FlexUnit4.I am not able to find FlexUnit4 for Flex SDK 3.0 in downloads page(http://www.flexunit.org/?page_id=14).So I decided to download the FlexUnit 4 source code and compile it using Flex SDK 3.0.I have downloaded the source code from downloads page(http://github.com/flexunit/flexunit/).I need help in compiling the projects. I want to know what are the configuration changes that I need to do run the ant task build.xml in my local machine.Please help me here.
I'm posting a bug we're seeing here in hopes of someone seeing this will know what may be causing it, know how to fix it (presumably someone from Adobe), or have some better ideas on recreating in a simple test case.Here is the bug:https://bugs.adobe.com/jira/browse/SDK-25826In our application, when using FP 10.1, we receive the following exception when Flex tries to display a tooltip from a component that is within a popup.ArgumentError: Error #2004: One of the parameters is invalid. at Error$/throwError() at flash.text.engine::TextBlock/recreateTextLine() at Function/http://adobe.com/AS3/2006/builtin::apply() at _wf_app_web_mx_managers_SystemManager/callInContext()at flashx.textLayout.container::TextContainerManager/recreateTextLine()[/dir/src/flashx/textLayout/container/TextContainerManager.as:931] at flashx.textLayout.container::TextContainerManager/callInContext()[/dir/src/flashx/textLayout/container/TextContainerManager.as:866] at flashx.textLayout.compose::SimpleCompose/cr
I want to modify the default contextMenu for LinkElement only.I think that I might do this by overriding ContainerController.menuSelectHandler() method. But how can i know what kind of element was being right-clicked? I just want add some contextMenuItem to when user click LinkElement.Thanks.
Hi,I have updated to AIR 2.0 and now I get RTE above next to several other RTEs.The problem is that the generated flexUnitDescriptor.xml still uses AIR version 1.5 but should be 2.0.How can I change it?Thanks,Sönke
Hi,I'm rendering a textflow using s Sprite. I want to remove the padding, so the text uses all available space. How can I do it?This is a screenshot showing the text selected and the padding (left, right, top and bottom.).I tried this with no result:<TextFlow xmlns='http://ns.adobe.com/textLayout/2008'fontSize='16' textIndent='0' paragraphSpaceAfter='0'paddingTop='0'paddingBottom='0'paddingLeft='0'paddingRight='0' ......Any ideas?
I'm finding that defining a test case property as a function data type causes some problems.Here the test case.package tests{ import flexunit.framework.Assert; public class TestExample { public var exampleFn:Function; [Test] public function testExample():void { Assert.fail("Test method Not yet implemented"); } }}Here's the eclipse error.This seems to stop FlexUnit from working. Can no longer added any other test cases.I'm running FB4 as a plug-in into Eclipse 3.5.2 OS X 10.6.3
HiI want to divide only the selected text among the different colums rather the whole text of the container.How it is possible?
I'm guessing some of the people here have tried other alternatives before arriving at this solution. Can people recommend some of these other alternatives they've used before. I'm researching technologies for an in-house project, but have been having some bumps with the Adobe framework and would like to try other alternatives to see if they'd help us get the project done faster.Would appreciate suggestions, similar frameworks or some other alternative? I'm open to all technologies.
Hi,What is the best way to modify TLF so I can insert custom component into TexLines (others than inline images). For example I want to be able to insert a button and have the same behavior the inline images have.Thanks in advance.
I'm experimenting with a TextArea that has a textFlow<s:TextArea id="mytextarea"> <s:textFlow> <s:TextFlow id="mytextflow"> </s:TextFlow> </s:textFlow></s:TextArea>I'm trying to load into it TextFlow data that's stored in a database. It looks like this in the database, but I've removed many of the properties to make it more readable here.<TextFlow xmlns="http://ns.adobe.com/textLayout/2008"> <p direction="ltr" > <span>some text</span> <
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.