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
2
votes
1 answer

How to make a True Random with equal chance in AS3?

I'm developing a rock-paper-scissor game player vs computer. There's nothing special except player playing 3 rounds per game. I'm using this code to generate random number from 1 to 3 Math.floor(Math.random()*(1+3-1))+1 1 = Scissor, 2 = Paper, 3 =…
POGI
  • 335
  • 1
  • 3
  • 12
2
votes
0 answers

syntax error in array pattern matching program?

I typed an array pattern matching example from the Haxe docs into HaxeDevelop package; /** * ... * @author Terrence Brannon */ class ArrayMatching { static public function main() : Void { var myArray = [1, 6]; var…
Terrence Brannon
  • 4,760
  • 7
  • 42
  • 61
2
votes
1 answer

Compiles but gives "Error #1034: Type Coercion failed" during test

I am working on a flash based web application. The front end is written in flex: MXML and ActionScript. The project builds fine in FlashDevelop, but when I test that using F5, it throws error. Line of code: [Bindable] public var…
Sonu Mishra
  • 1,659
  • 4
  • 26
  • 45
2
votes
1 answer

How to loop through frame number and if true then ignore that frame number?

Hey guys so I am struggling the best way to approach this situation. So I have 5 frames in my ovenScreen.mcChar movie clip. Each is a character that the player can unlock. If the player has enough coins then they can go to the prize screen to get a…
Nathan
  • 536
  • 4
  • 21
2
votes
2 answers

Flashdevelop + haxe -- repeated "An I/O error has occured" errors

I'm getting small dialog boxes that pop up saying I/O Error occurred. What causes this, and how should I fix this? Edit: what happens is that after i run my flash game, FlashDevelop will try to connect to the Flash debugger, but apparently fail and…
RCIX
  • 38,647
  • 50
  • 150
  • 207
2
votes
1 answer

what is jat file found in flash web games?

I found many .jat files when i analyse a flash web game with firebug. It maybe a user model.But I don't know how does it make?
netpiano
  • 35
  • 5
2
votes
1 answer

How to run Post-Build Command Line on only 1 target?

After building, FlashDevelop will run this in Project > Properties > Build > Post-Build Command Line: "$(ProjectDir)\debug-android.bat" The bat file will install my game on my phone. It's supposed to run only on Android target. But it also runs on…
Dlean Jeans
  • 966
  • 1
  • 8
  • 23
2
votes
1 answer

FlashDevelop error while importing Box2D

I'm new to flash development, so I'm watching a tutorial on how to use FlashDevelop. The video recommended I use Box2D and explained how to use it as a global classpath, which I have done. I was messing around with the code using what the person in…
Tanner M
  • 66
  • 3
2
votes
2 answers

Unable to get haxe-pixi.js to work - I get a blank white screen

***EDIT: OK! Got it working. The missing library in the html was the trick. The pixi.min.js file was missing from the haxelib directory, not sure if that's normal. Another more complex question: what's the possibility of including pixijs as a…
2
votes
1 answer

AS3 Worker not functioning properly in Flash CC debug or release, except when published

Today I tried to do some background work with the AS3 Worker class. However, I am experiencing weird behavior when developping my AIR desktop application in Flash CC on Windows 7. Consider this simple file for the main "thread": //////////////// //…
Tom Solacroup
  • 46
  • 4
  • 18
2
votes
2 answers

Trouble compiling flashbuilder project with sdk 3.*

I have a series of projects that we have been using Flex3/Flashbuilder to work with, but I've recently been trying to move over to Flashdevelop for most of my development but I have hit a snag with a certain project structure that Flex/FB can handle…
bardic
  • 21
  • 1
2
votes
2 answers

How can I access data from a .fla file using Actionscript 3, Flex 4 SDK, and FlashDevelop?

Someone sent me a .fla file containing several art assets, with instances all configured to be displayed properly and in the right positions. However, since I'm using FlashDevelop with the Flex 4 SDK, I have no idea how to access these instances in…
Roderick
  • 2,383
  • 3
  • 20
  • 33
2
votes
1 answer

Can flashdevelop projects output more than one file?

If I'm using FlashDevelop for multiple swfs that get loaded, can I work with all of them in one project, or do each of the "modules" need their own project?
PersonA
  • 23
  • 3
2
votes
1 answer

Problems publishing to iOS from FlashDevelop: compile-abc not compatible

I've been trying to get FlashDevelop to export to iOS and after some struggling I thought I was almost there. Unfortunately I now get a message that "This version of C:...\compile-abc-64.exe is not compatible with the version of Windows you are…
2
votes
0 answers

Customize standalone AIR runtime folder package

I'm looking to figure out if there is a way to customize the folder structure when packaging an AIR app with the captive runtime? As it is right now the folder structure is as follows: Projectname_standalone [parrentfolder] Adobe AIR…
Poppe76
  • 394
  • 3
  • 14