Questions tagged [flashdevelop]

FlashDevelop is a popular, free and open source IDE for ActionScript and Haxe.

FlashDevelop is a free and open source (MIT license) source code editor for Windows.

FlashDevelop offers first class support for Flash ActionScript (2 and 3) and Haxe development: great and fast code completion & code generation, projects compilation & debugging, plenty of project templates, SWF/SWC exploration, etc. See: features & screenshots.

FlashDevelop is more generally a good web developer IDE with integrated source-control support (svn, git, mercurial), tasks/todo, snippets, XML/HTML completion and built-in zen-coding for HTML.

767 questions
0
votes
2 answers

How to create several flash application sharing common codebase in FlashDevelop/ActionScript 3.0?

Situation: I need several swf/exe output files compiled in FlashDevelop from several projects. More than 60% of ActionScript 3.0 source is common for all project, rest are project-specific. How can I organize that in FlashDevelop? I want to have…
PiotrK
  • 4,210
  • 6
  • 45
  • 65
0
votes
1 answer

TextField.appendText on empty string or TextField.replacetext is not displayed

I have a question: when I use TextField.appendText( ) on a TExtField whos text is empty ( "" ), or TextField.replaceText( 0, text.length, "some text" ), the text is not displayed, but the text property is changed properly. Anyone has any idea as to…
GeekPeek
  • 1,615
  • 1
  • 20
  • 34
0
votes
2 answers

how to use Always Compile in flashdevelop

Where is this option? how to set the Main.as as Always Compile? The breakpoints and step by step function not work for me...
CrazyStack
  • 169
  • 2
  • 13
0
votes
1 answer

Detecting the frame of a key release

I'm trying to get it to detect when a key is switched between the down state and the up state. I need it to display that the key is released for one frame before reverting to the UP state. I can add more information or code if needed. Thank you in…
0
votes
3 answers

Does a pure AS3 preloader have to extend MovieClip?

Does the actionscript preloader have to extend MovieClip? ... public class Preloader extends MovieClip { public function Preloader() { if (stage) { stage.scaleMode = StageScaleMode.NO_SCALE; stage.align =…
avanderw
  • 675
  • 1
  • 7
  • 22
0
votes
1 answer

Debugging AIR Projects by Clearing LSOs / applicationStorageDirectory / StageWebView Cookies

When using FlashDevelop to build and test projects for AIR for mobile, you can only programmatically remove my manually named LSOs by name between runs. How do you clear the StageWebView cookies to test things like different Oauth2 redirect…
antman
  • 227
  • 2
  • 17
0
votes
1 answer

Creating SWF projector for MAC (on MAC)

I'm creating a Flash game that uses Google Image Search results as part of its content, and due to crossdomain browser restrictions it won't work in browser. For PC, I can run the .SWF in Standalone Flash and do "File -> Create projector" and I have…
joon
  • 832
  • 13
  • 31
0
votes
1 answer

CreateJS + Haxe -> Uncaught ReferenceError: createjs is not defined

After a successfull compile of: http://nickalie.com/posts/67 , when I try to see it in the browser, I get a Uncaught ReferenceError: createjs is not defined right here (on the resulting compiled create.js file): var Main = $hxClasses["Main"] =…
localhost
  • 450
  • 2
  • 6
  • 24
0
votes
1 answer

FlashDevelop actionscript 3 code maintenance - duplicate class names

I use FlashDevelop - I am working on code in ActionScript 3. I started working on a 72hour project for Ludum dare and afterwards decided to get a fresh start with a new angle on the same idea. So I named the folder - GameName2 . . I always use the…
AturSams
  • 7,568
  • 18
  • 64
  • 98
0
votes
1 answer

Flash SharedObject Reader

Can anybody recommend a good Flash SharedObject reader? There is one included in FlashDevelop, but it usually returns errors like "Invalid FileSize signature. Received X expecting Y". Thank you.
user1566515
  • 1,637
  • 4
  • 17
  • 25
0
votes
1 answer

Is it possible to import a project (game) from Flash cs4 to FlashDevelop?

Is it possible to import a project (game) from Flash cs4 to FlashDevelop ? And how will work things like the timeline ?
Csabi
  • 661
  • 10
  • 20
0
votes
2 answers

Flambe Could not find 'closure.jar'

I'm trying to use Flambe with Haxe in FlashDevelop, and when building I get an error: Could not find 'closure.jar' Anyone any idea why this is? My Haxe is properly installed, and I followed the installation thingy for Flambe from the wiki: haxelib…
The Oddler
  • 6,314
  • 7
  • 51
  • 94
0
votes
5 answers

FlashDevelop ? Do i still need Flash CS

I am fairly new to Flash and AS3. My questions is do I actually still need to use Flash CS6 to setup the stage and library files. Or can it all be done from FlashDevelop ? Thanks
Lee
  • 1,280
  • 4
  • 18
  • 35
0
votes
2 answers

How to upload a background image using actionscript 3.0 code?

Need your help. I am trying it first time. I have used following code. But i get this in my console: started loading file SecurityError: Error #2000: No active security context. and my image url is in same folder as my script file. var loader:Loader…
0
votes
2 answers

Flash develop debug compiler is not doing File browseForOpen() method

This simple code compiles in Flash develop, but nothing happens: var f:File = new File(); f.browseForOpen("fsd");
user1480049
  • 1,109
  • 2
  • 7
  • 3