flash-builder

How to play videos on a android tablet in with adobe air mobile with out them being choppy?

和自甴很熟 提交于 2019-12-10 15:16:05
问题 I am trying to build a app that will play videos on a Android tablet. The tablet is a transformer prime running a Android version 4.0.3. I am using flash Builder 4.6 with Flex 4.6.0. Every time i add a video to the tablet, it is very choppy and jumpy. If i try and use any video that is not flv then the video is always sent to the background behind all the other content and no longer stays with the container that it is placed into. I created a sliding containers that can be moved left or right

Getting error while maintaining flash code

会有一股神秘感。 提交于 2019-12-10 11:33:52
问题 I am new to flashbuilder. I have got this existing code to maintain. All of the mxml files have outermost tag s:WindowedApplication . The navigation from one page to another is done using code as follows: public function help_clickHandler(event:MouseEvent):void { var dTracker:aboutProduct = new aboutProduct(); this.addElement(dTracker); } After navigating to a new page I get following error on clicking any where on newly loaded page: ArgumentError: Error #2025: The supplied DisplayObject must

Embedded Sounds cut off early

走远了吗. 提交于 2019-12-10 10:57:11
问题 I have a combined Flash Builder/Flash Pro project. Because of the hassles involving in maintaining sound assets on the timeline, my sounds are all embedded into Class files, like: [Embed (source="/mp3/Welcome_01_V.mp3", mimeType="audio/mpeg")] private static const WELCOME_1:Class; These files are then referenced by the base Classes for the symbols that need them, embedded for Actionscript on Frame 10 (because the second frame label is on Frame 10 to give space for you to read the first one).

Find unused variables in Flash Builder 4 (like Eclipse for Java does)

徘徊边缘 提交于 2019-12-10 10:16:53
问题 Eclipse has a built in functionality to find unused variables (and methods too I guess). Flash Builder 4 is built on top of Eclipse but it doesn't have that functionality. Do you know any plugin to achieve that functionality? Also, if you know any other kind of plugin besides SourceMate to improve Flash Builder let me know. 回答1: Try to use FlexPMD which has corresponding Eclipse plugin. 来源: https://stackoverflow.com/questions/6100602/find-unused-variables-in-flash-builder-4-like-eclipse-for

Flex: Update a label's text, which is a variable

青春壹個敷衍的年華 提交于 2019-12-10 10:01:46
问题 I have a label that get it's value from a var when you click on a button. The var has already been declared: public function clickevent { label.text = aVariable; } Now I know that if i have a label like this: <s:Label id="label2" text="{aVariable}"/> and aVariable is empty, label2's text is Null (it doesn't give an error, just "Null" in my situation). This is my current situation. What I'd like to know is when I later on change the aVariable's value to a string "hasChanged", for example. The

How do I fix a “initial content not found” error?

送分小仙女□ 提交于 2019-12-10 04:08:12
问题 Using Flash Builder 4.6 on some code from a client. Clicked on debug (also tried run) and received this error: Process terminated unexpectedly. initial content not found Launch command details: "C:\Program Files\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0 \bin\adl.exe" -runtime "C:\Program Files\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0 \runtimes\air\win" -profile mobileDevice -screensize 640x920:640x960 -XscreenDPI 326 - XversionPlatform IOS "C:\Users\tstiffler\Adobe Flash Builder 4.6\TP\bin

Problem occurring in __flash__addCallback

筅森魡賤 提交于 2019-12-09 18:13:02
问题 I am getting the following error when running an application in debug mode using Flash Builder: Object does not support this property or method (Note that this error message is coming from the browser.) Here is the code where it is occurring: function __flash__addCallback(instance, name) { instance[name] = function () { return eval(instance.CallFunction("<invoke name=\""+name+"\" returntype=\"javascript\">" + __flash__argumentsToXML(arguments,0) + "</invoke>")); } } I have no idea where this

How do I get FlashBuilder to show me the command-line output?

一个人想着一个人 提交于 2019-12-09 15:46:50
问题 Specifically, I want to know what the commands are... all the flags it produces and passes to mxmlc. There must be a way, but I just can't figure it out. 回答1: Ultimate method - locate mxmlc executable for your platform, then create program with the same name which will log arguments. If you just want to master mxmlc, there are docs for it and compiler option dump-config: -dump-config=config.xml . Config contains almost everything about the project and I used such config to make an automated

Failed to connect to remote VM. Connection refused. when trying to debug remote java application in Flash Builder 4.7

你离开我真会死。 提交于 2019-12-09 13:38:14
问题 At one point, the remote debug used to work. But for the life of me, I don't seem to be able to figure out what broke it. I have a flex/Java application. There is a wrapper that starts the tomcat server. I modified the wrapper.conf file to include -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n In my flex debug configurations, on the left, I have Remote Java Application. On the right, I have Standard (Socket Attach) as the connection type, 127.0.0.1 (I have tried

can i use design mode in fb 4.6 if I add apache flex sdk 4.9.1 as my compiler?

≯℡__Kan透↙ 提交于 2019-12-09 00:32:27
问题 I am running Flash Builder 4.6 and just added Apache flex sdk 4.9.1 (build 1447119) to my mac book pro running Moutain Lion and when i tried to do a quick 'hello world' and add a few elements to the stage using design mode i got following error: The design mode is disabled as the project uses an incompatible version of the flex sdk My question is if i go beyond the default sdk that shipped with fb 4.6 do I therefore loose the ability to use design mode and have to do everything in source mode