『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
We're in the process of upgrading our servers and aren't yet ready to migrate to FlashBuilder 4.5.We did, however, try to upgrade to FlashBuilder 4.5, however, we got an error saying that the Flex 4.0 SDK is no longer supported (which is an issue, as we're not ready to migrate to a newer SDK).Where can we download the FlashBuilder 4.0 installation package?
junitreport 'redirect' is not allowed when the secure processing feature is set to true.Hello, I'm running flexunit4.1.0-8 and I have an ant script running the test suite. I recently upgraded from FB 4 to 4.5 and now I'm gettingfailures on junitreports. Here's the full error: [junitreport] : Error! Use of the extension element 'redirect' is not allowed when the secure processing feature is set to true.[junitreport] Failed to process C:\TDMSE_2_6\tdmse\flex-test\flex_unit_reports\TESTS-TestSuites.xmlBUILD FAILEDC:\TDMSE_2_6\tdmse\build\flexunitbuild.xml:116: Errors while applying transformations: javax.xml.transform.TransformerException: java.lang.RuntimeException: Use of the extension element 'redirect' is not allowed when the secure processing feature is set to true.Here's the junitreport section:<target name="flex-unit-execute-tdmse-test-runner" &nbs
ApplyElementUserStyleOperation is deprecated with TLF 2.0. But I can't find a way to remove a userStyle without it. If I try to use ApplyFormatToElement with a TextLayoutFormat, it won't clear userStyles set to "undefined", just as it won't clear other styles. Any suggestions? My code is working now using ApplyElementUserStyleOperation, but it always feels wrong to use deprecated methods.
Hello,Is it possible to control the line spacing in TLF?For example I might have text lines with font size of 12 (i.e. constant text height) but I would like to be able to change the space between the lines programatically.Playing with the lineHeight property is not the best approach because in case there are images embedded in the text once lineHeight is set then the image is cut if it is higher than the line height. I really need to control the space between lines but not the lines' height.Thanks
Hi everybody ! I have a strange problem with SOAP deserialization in flex 3.2, and I thought this forum will be the best place to get answers ... When I try to fetch some objects (like the ones shown below), the XMLDecoder does not deserialize all the properties. In this case, it stops at the property named "rating". After it, all other data are lost. I've used the flex builder debugger to locate the problem, and this lead me to the following method in the XMLDecoder class : getApplicableValues(parent:*, valueElements:XMLList, name:QName,context:DecodingContext, maxOccurs:uint):XMLList: State of the variables, before the "bug" : The strange behavior appears after the five first properties had been deserialized correctly. At this step : startIndex = 5, and the next property to unmarshall is "user" (according to the MExpertNotes object mapping) the valueElement's list contains the following elements : to simplify the notation, I will write only the position in the list and th
Hi,I can disable an item from a menu item, but it is a way to hide completely the option from a menu?It is any menu component up there with this functionality?Thanks
Hi, I have an XML List as follows : <items name="total"> <item name="value1" percentage="35"/> <item name="value2" percentage="25"/> <item name="value3" percentage="47"/> <item name="value4" percentage="89"/> </items> <items name="somesub"> <item name="value1" percentage="15"/> <item name="value2" percentage="27"/> <item name="value3" percentage="56"/> <item name="value4" percentage="43"/> </items> and I need to dynamically convert it to an array collection as follows (I'm loading the XML externally and the component only allows for an arrayCollection) : myArray = new ArrayCollection( [ { name:"total", value1:35, value2:25, value3:47, value4:89}, { name:"somesub", value1:15, value2:27, value3:56, value4:43} ] ) I'm totally stuck on how to do this so any help putting me in the right direction would be highly appreciated.
Hi, I have to load compiled css (swf) inside an application, when I load it like; 1. styleManager.loadStyleDeclarations('/demo/test.swf') - Works2. styleManager.loadStyleDeclarations('http://ec202.classicinformatics.com/demo/test.swf') - Not Works [not a loadable content] What I need it I have a server for storing all styles, themes etc that I want to use for all application on any server.Thanks,Premkant
We're using TLF 3.0 with Flex 4.1. Works like a charm. But I cannot debug properly since the debugger shows me the source code for TLF1.1 when going into any of the TLF classes and methods. Is there source code which corresponds to the TLF3.0 swc, ie. that can be used as source attachment in Build Path Libraries in Flash Builder and doesn't contain all the CONFIG::debug / :: release statements?
Hello,I have the following configuration:Sony VAIO SZIntel Core 2 Duo 2.1 GHz (T8100)4GB DDR3NVidia 8400M GS320GB (7200 RPM) HDDWindows7 Ultimate (6.1.7600)I'm trying to use Adobe Flash Builder 4 (build 272416) in Trial mode.I was working for a long time already with the Flex Builder Plug-in 3. Compilation time was always a headache, true, but it still was affordable. But with the Flash Builder 4 production that became so bad that I can't simply use it event to test.When started form the "clean" workspace, bundled Eclipse and only one project (Flex) is created - everything looks fine. Even if you add a "hello world" pop-up to your application (that's sarcasm, yeah 😃The situation changes dramatically when you have any number (greater than zero of course) of Java projects in your workspace.Compilation time skyrockets to about 1 - 2 minutes - first (on an empty project created with wizard). Second - it starts crashing with or without reason.When I'm trying to create a new Flex pro
Hi all.Does anybody know why this is works:<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="onComplete(event)"> <fx:Script> <![CDATA[ import flashx.textLayout.conversion.TextConverter; import mx.events.FlexEvent; private var xml:XML= &nb
Hi,I am trying to push a view and pass context along with the data so my view can respond accordingly.I am pushing the view as follows: navigator.pushView( MyViewClass, data, "myContext" );In MyViewClass, I can access the 'data' property but the 'context' property doesnt appear to have a value. So, either I am not using/passing it properly, or there is a bug. I suspect the former is more likely. I am using the Adobe Flex 2.6 SDK.Any ideas or suggestions here?Many thanks,Greg
I have one TextArea on which is supposed to support inline images and TLF automaticlly provides options for the user to copy/paste part of text with image. I have some other text fields which should not support images(for example TextInput for search). User can copy text with image from TextArea and paste it inside TextInput. Is there any easy way to prevent this?Best Regards, Aleksey
My Code:var tl:String = "<p>Hello, <img paddingTop='10' paddingBottom='10' src='https://imgssl.constantcontact.com/letters/images/v8_your_image_100x100.gif' align='right'></img></p>";htmlFlowReference.textFlow = TextConverter.importToFlow(tl, TextConverter.TEXT_FIELD_HTML_FORMAT);Please suggest what i doing wrong....
I want to implement simple applications which allows user to edit text in TextArea and then display it in the RichText component paragraph by paragrpah with animations. For example, if user hits button "Next Paragraph" he will see next paragraph of text fading in. Is it possible to reuse some functionality of TLF framework in this case or do I need to manually break text on separate paragraphs and create separate text fields for each paragraph? Best Regards, Aleksey
Hi,I'm using Caringorm framework in my web application. The UI invokes webservice hosted in IIS. As of now I'm using windows authentication. Authentication works perfectly in this mode.]Now I wish to change authentication to IIS basic authentication.Can anyone help me how can I achiev this?Also I would like to encrypt the user credentials befor posting.I'm trying with the below code and getting IE popups login box appearing everytime.private function loadTranslationWSDL():void { var encoder:Base64Encoder = new Base64Encoder(); encoder.insertNewLines = false; encoder.encode(portalSer.strUserName + ":" + portalSer.strPassword); model.svcLocator.getWebService("svcCommon").httpHeaders = {AUTHORIZATION : "Basic " + encoder.toString()}; var translationToken:AsyncToken = model.svcLocator.getWebService("svcCommon").GetPortalUserTranslations(); translationToken.addResponder(new ItemRe
Greetings, I am having some trouble with a particular TextFlow I'm using which contains InlineGraphicElements. Some of these sit below the line (by way of a negative baselineShift) and are thus colliding with the line below.I would like to be able to increase the spacing between the graphic's line and the line below, but I can't find a way to do this.I am able to get a reference to the InlineGraphicElement, which I'll call xAnd a reference to the TextFlowLine and TextLine below this way:var xPos:int = x.getAbsoluteStart();var xLineFlowNum:int = this.textFlow.flowComposer.findLineIndexAtPosition(xPos); var xTextFlowLine:TextFlowLine = this.textFlow.flowComposer.findLineAtPosition(xPos);var xTextLine:TextLine = xTextFlowLine.getTextLine();var nextTextFlowLine:TextFlowLine = this.textFlow.flowComposer.getLineAt(xlineNum + 1);var nextTextLine:TextLine = xTextLine.nextLine;So far so good, but I have no idea how I can increase the height of that next line.TextFlowLine has a height prop
I've found in the following post (http://forums.adobe.com/message/2371850#2371850) some suggestions about this topic, but as I'm relatively new to as3, I'm still confused about how to make it work. My team has an as3 only project, and we refer to the stage very often this way:package clipper{ ... public function init() { onInit(); ... } private function onInit() { this.stage.frameRate = 24; this.stage.addChild(...); ... }}Everytime when my testcases call statements like this, it'll give error saying "null object reference", etc. As far as I've read in the other post, I should initiate a VisualTestEnviro
Hi all,private var collection:ArrayCollection = new ArrayCollection([ {id:"1", stuff:"whatever1"}, {id:"2", stuff:"whatever2"}, {id:"3", stuff:"whatever3"} {id:"4", stuff:"whatever4"}, {id:"5", stuff:"whatever5"}, {id:"6", stuff:"whatever6"} &nb
Hi.<br /><br />We are using a secure channel like this:<br /><br /> <channels><br /> <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel"><br /> <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/><br /> <properties><br /> <add-no-cache-headers>false</add-no-cache-headers><br /> </properties><br /> </channel-definition><br /> </channels><br /><br />And we expose a remote service like this:<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><service id="remoting-service" class="flex.messaging.services.RemotingService"><br /> <adapters><br /> <adapter-definition id="java-object" class="flex.messaging.servi
Just curious if there is any update on this thread from almost a year ago:http://forums.adobe.com/message/2994338We would really, really, really like to generate Cobertura-style reports from our FlexUnit tests, without having to rely on the forked SDK (required by FlexCover) or having to create a pom.xml to drive Maven (required by FlexMojos). We are looking forward for either the 4.2 version or a release candidate providing the ability to generate code coverage reports compatible with Jenkins and other CI servers...Update (12/5/2011): we heard at Adobe MAX that support for code coverage in FlexUnit 4 was coming in November. Can you give us an update on the plans for this much needed feature?
Hi sir, We are facing some problems with new TLF framework. We need to add component(any UI component) in selected textflow. But we cant do that. We need any UI element (just like inlinegraphicElement for images) for UI components. now we can not add transform tool on the images. we need too add drag & drop propety on that, and the total text flow is affected. Please reply ASAP.
I'm using states as my waypoints. Problem is really simple. Navigation structure is something like this:a.ba.ca.d.aa.d.ba.d.ca.ea.f.aa.f.ba.f.ca.gEverything works fine if I'm navigation on 2nd level. From a.b to a.c, a.g to a.e works great but when destination goes deeper, 3rd level or more there is always problem with navigating to final view states (landmarks). I can navigate do a.d view but can't view a.d.b state.When I'm trying to navigate to a.d.b it always navigates to a.d.a. From a.d.a it's impossible to navigate to a.d.b. Dispatching evend does nothing. I tried everything and now I'm debugging library code to find out what's wrong but I'm feeling like just wasting time because I can't find solution here.Any one can help?
I am using flex SDK version 3.6.I am currently running into problem with textarea autoresize where i am not getting back correct dimensions for linewidth, but it happens by accident some times when it gets the correct values and the text accidentally shrinks.Can someone help me with this problem
I've installed the v1.2 all in one .zip and configured it as per http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD+Eclipse+plugin after installing the plugin itself some time ago (back in v1.1 days). No updates are show right now as pending and the update site is enabled.Although the CPD detector runs OK, when I right click a source folder and choose 'Run FlexPMD', the Flex PMD view remains empty. The PMD builder is enabled for the project too, no joy.The eror log doesn't have anthing relevent, just :eclipse.buildId=M20110210-1200java.version=1.6.0_26java.vendor=Oracle CorporationBootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GBCommand-line arguments: -os win32 -ws win32 -arch x86ErrorWed Jan 04 14:20:20 GMT 2012Unable to create menu item "com.adobe.ac.pmd.eclipse.toolbar.runCommand", command "com.adobe.ac.pmd.eclipse.flexpmd.runCommand.category" not definedAny hints ?
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.