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
4
votes
2 answers

What should I do to use a .as3proj file in Flash Builder?

thing is, I have to do some modifications at my work, but I never used Flashdevelop, only Flash Builder. However, the project I need to modify was made with Flashdevelop, it comes with a .as3file, no fla file anywhere. So, what do I need to do in…
Artemix
  • 8,497
  • 14
  • 48
  • 75
4
votes
0 answers

FlashDevelop startup problems - problems with plugins

When starting up FlashDevelop version 5.3.3.1 for .NET 4.0 on my Windows 10 system I'm getting these messages: Unable to load an incompatible or broken plugin: C:\Program Files(x86)\FlashDevelop\Plugins\jni4net.n.w32.v20-0.8.4.0.dll and Unable…
Ralph Canapa
  • 610
  • 1
  • 5
  • 21
4
votes
5 answers

Tools for profiling AS3, timing functions to find bottlenecks?

Hi SO :) I'm working with Flashpunk to make games using Flex and FlashDevelop (highly recommended, amazing lib and IDE). Since performance varies so much from system to system, I want to find where slowdowns are occurring and only fix those bits.…
capsid
  • 135
  • 1
  • 11
4
votes
2 answers

FlashDevelop -- Specify an HXML file?

[a continuation of this question] In order to embed resources in a SWF file, I have to add lines to my HXML file. However, since I'm using FlashDevelop, I don't know where to find that. Where should I put stuff I would ordinarily specify in my…
RCIX
  • 38,647
  • 50
  • 150
  • 207
4
votes
1 answer

Flashdevelop / HaxePunk: Build halted with errors

I've been trying to follow this tutorial to get started with HaxePunk. I am using FlashDevelop and have got to trying to run the program after adding the logo.png. However, when I run the program I get the following output: Running process:…
4
votes
4 answers

Security Sandbox in AS3

What is a security sandbox violation, and how do I override it? I'm making a project in FlashDevelop, and today, it will not load external files, even though it had been previously. It gives the following output: ************* Security Sandbox…
kevin
  • 41
  • 1
  • 1
  • 3
4
votes
1 answer

Create Transparent Windows in Haxe (Neko or Windows targets)

Im trying to make a simple OSX-like dock application using Haxe 3.1.3. I cant seem to work out how to make the main application window transparent (no titlebars, borders etc), as well as ignoring mouse events except on the icons themselves. Ideally…
Matthew
  • 952
  • 7
  • 20
4
votes
1 answer

How to embed a font in as3 using FlashDevelop?

How can you embed a font in as3 using FlashDevelop? I have read a lot of posts regarding this issue but none of them helped me solving it. When I use the following code, nothing is displayed (this is all the code) : package { import…
user3240131
  • 187
  • 1
  • 2
  • 11
4
votes
2 answers

Accessible Flash Content for the blind

I am working on a browser project for the blind in my university. For swf files, I am trying to access the contents of an SWF and parse so that screen readers can use it to read it aloud. I was successfully able to extract static text using…
coder
  • 161
  • 2
  • 6
4
votes
2 answers

AS3 - Can Bitmap classes dispatch mouse events?

I'm trying to learn AS3 and have run into a small problem. I have a Bitmap class to which I add a MouseEvent.CLICK listener, but the event doesn't seem to be dispatched. I use Flashdevelop to write AS3 code and Flex to compile. I have two classes,…
Garry Wong
  • 793
  • 2
  • 8
  • 23
4
votes
1 answer

Flash WebSocket Disconnect

I'm using AS3WebSocket module to connect web sockets. It works well when I launch flash locally (flash file is marked as trusted in global settings). But when I open server page with flash, it doesn't work. I've no error messages, just "disconnect"…
opewix
  • 4,993
  • 1
  • 20
  • 42
3
votes
2 answers

Is this a bug with AS3 conditional compilation?

In our code I have the following, for now please ignore the //* bits; if (data["someKey"] != null)//* { CONSOLE_OUT.info("Print some stuff."); TARGET::myTarget { var someString:String = data["someKey"] as String;//* …
JimmyDeemo
  • 313
  • 1
  • 15
3
votes
3 answers

Whats the difference between void and Void in AS3?

I noticed that i can set a return type on a function to 'Void' aswell as 'void' and just wondered if there was and benefit of either?
rorypicko
  • 4,194
  • 3
  • 26
  • 43
3
votes
1 answer

FlashDevelop settings

I've recently upgraded to FlashDevelop 4, which of course has reverted all the settings I had previously to the original. The problem I'm having is that I can't find where in the new settings window it gives me the option to turn off the auto-space…
Marty
  • 39,033
  • 19
  • 93
  • 162
3
votes
4 answers

How to configure FlashDevelop for unit test builds?

I'm using AsUnit for unit-testing my current AS3 project. My Main() is basically: if ( UnitTest ) runUnitTests(); else runMainProgram(); where I change UnitTest before building depending on whether I want to run the program or run the unit…
Tim
  • 13,904
  • 10
  • 69
  • 101
1 2
3
51 52