[Flashcoders] hello, and interval management question

2006-10-16 Thread Øyvind Nordhagen
Hello, Giles! It strikes me that what you have planned is somewhat inefficient. Am I right in suspecting that you need the intervals to keep checking for conditions and the running code accordingly? If so, have you explored the AsBroadcaster. I'm not sure I understand the purpose of your

RE: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread The Helmsman
I think I've used all alternative editors to write AS files. I don't understand why you call them IDEs, because currently there is only one IDE which is Flash. Now, I found that there are no editors which supports an AS 1.0 as well as AS 2.0 and is free. Here is a list of editors I used

Re: [Flashcoders] Flash Classes and Preloading ...

2006-10-16 Thread Hans Wichman
Hi, export all as2 classes and stuff after frame 1, eg frame 10 and write your preloader in as1 :). greetz JC On 10/16/06, Anthony Lee [EMAIL PROTECTED] wrote: Stephen, Don't know about the Flash IDE, but MTASC can do this for you. I posted a similar question to osflash.org, here's the

[Flashcoders] simplest file/folder access ?

2006-10-16 Thread Tor.Kristensen
Hey all, I want to create a projector that can recurse down a folder tree and build a list of files. (for an image remixer project) All the commercial EXE packagers have a million bells-and-whistles on them, and I'm only looking for the file/folder functionality. Anyone know a

RE: [Flashcoders] Casting external SWF's

2006-10-16 Thread Matthew Jacobi
Hi, I think adding to the prototype would be the easiest way of recasting an external swf into a class. It's like setting up a class linkage in the library except you can't do that with external swfs (as you already know). Once you got the swf loaded into external_mc you can: // recast it as

Re: [Flashcoders] Font color in datagrid component

2006-10-16 Thread Carl Welch
Thanks, but that still didn't work. Here's a screenshot of what I have now: http://www.carlwelch.com/listBoxsample/listbox.jpg but I'm trying to make it look more like this: http://www.carlwelch.com/listBoxsample/listbox2.jpg this the code I'm using: import mx.styles.CSSStyleDeclaration; if

Re: [Flashcoders] Interfaces: what are the advantages?

2006-10-16 Thread Ray Chuan
Hi Ian, an intrinsic is not used only for built-in Flash Player classes/code. You can use it to save yourself some time, since the compiler doesn't compiler the bytecode all again. With intrinsics no bytecode is generated, only type-checking is done. With interfaces bytecode is generated. I'm

Re: [Flashcoders] Interfaces: what are the advantages?

2006-10-16 Thread Ian Thomas
Hi Ray, I know what intrinsics are, what they're _supposed_ to be for, and what they're actually used for. :-) It's a matter of personal preference. I don't use them because, as I said earlier, I can do things in other ways. For the purpose I was talking about - seperating code into different

Re: [Flashcoders] Victor's PC...OUT

2006-10-16 Thread Troy Rollins
On Oct 16, 2006, at 12:26 AM, Victor Gaudioso wrote: Hey all, I had to do a wipe because my PC crahsed and burned. About a month ago I bought Gproject. I have no idea how to get it again without paying. Any suggestions. Contact support at Grant Skinner's site, I'm sure they'll set you

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Ron Wheeler
If you are a Java programmer, you will probably find the Eclipse IDE the most comfortable place to work.. You might also be able to make some good suggestions about how to add the Java tools that are available under Eclipse to the Flash tools. IMHO while it may be true that Flash is the only

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Kjel Anderson
I don't know if anyone else is using JEdit to do ActionScript, but it has some nice features. I have been using it for about a year to develop application with MTASC. It is very simple to set up. Kjel Anderson Ron Wheeler wrote: If you are a Java programmer, you will probably find the Eclipse

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Troy Rollins
On Oct 16, 2006, at 11:23 AM, Kjel Anderson wrote: I don't know if anyone else is using JEdit to do ActionScript, but it has some nice features. I have been using it for about a year to develop application with MTASC. It is very simple to set up. The (good) options for OSX are

[Flashcoders] Lead Designer position -- games for girls

2006-10-16 Thread Audry Taylor
I looked for any rules against posting a job offer and there doesn't seem to be any, so I'm putting one up. Please let me know if I was wrong to do so. My company has an opening for a game designer job, but not just any designer job, so please read the description carefully before you send in

[Flashcoders] ::dk :: passing args to onPress, onRollOver, etc

2006-10-16 Thread dnk
Hi there, I am trying to write a few mouse events for multiple movieclips. Now say I have the following: function writeBtnEvents() { for (var i:Number = 0; i 35; i++) { this._targetMc[btnHldr + i].onPress = function(i:Number) { trace(pressed: + i); } this._targetMc[btnHldr + i].onRollOver

Re: [Flashcoders] ::dk :: passing args to onPress, onRollOver, etc

2006-10-16 Thread eka
Hello :) you can try 2 solutions : 1 - with a little property index to save the index value var bt = this._targetMc[btnHldr + i] ; bt.index = i ; bt.onPress = function() { trace(pressed: + this.index); } 2 - with Proxy method (like mx.utils.Delegate class but you can use arguments : //

[Flashcoders] Express Install (again)

2006-10-16 Thread Kurt Dommermuth
Hello All, I've seen a few posts regarding express install/ swfObject/ ufo etc.. I'm having a problem with both Adobe's express install scheme and swfObject. IE 6 works fine. Firefox (1.5.0.7) forces me to close the browser. No redirect back. I've tried on two different computers. no joy.

Re: [Flashcoders] Express Install (again)

2006-10-16 Thread Kurt Dommermuth
A follow-up. It just worked on one and not the other. So freakin' erratic. will there ever be solid flash detection? At 01:53 PM 10/16/2006, you wrote: Hello All, I've seen a few posts regarding express install/ swfObject/ ufo etc.. I'm having a problem with both Adobe's express

[FlashCoders] Delegates and performance

2006-10-16 Thread Dimitrios Bendilas
Hello everyone, I had a really big issue recently, when I realized that the performance of a large-scale game I built in Flash dropping substantially after 1/2 hour of gameplay, to the point where the game became wy too slow to play. After exhausting tests I found out that this was caused

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Andy Herrman
So, I haven't used Eclipse at all for Java. I've been using Netbeans for the last year or so, and before that stuck with Vim and command line tools. From what I hear, Eclipse/Netbeans is the new Emacs/Vim debate. :) I found a free Eclipse plugin for AS but I couldn't get it to work. I

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Marcelo de Moraes Serpa
FlashDevelop is by far the best open-source free AS2 IDE atm. On 10/16/06, Andy Herrman [EMAIL PROTECTED] wrote: So, I haven't used Eclipse at all for Java. I've been using Netbeans for the last year or so, and before that stuck with Vim and command line tools. From what I hear,

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Andreas R
FlashDevelop is by far the best AS IDE, period. Full stop. I even use it for XML these days heh. And i always have it up, so it winds up being what i do ALL text editing in. If you're a mac dude, i guess eclipse is your way to go. I had a look at jEdit when i was a mac user i thought jEdit was

[Flashcoders] Weird image download problems in IE

2006-10-16 Thread Andy Herrman
We're running into a really strange problem with image downloads in Flash when running in IE and was wondering if anyone else has seen something like this or has any ideas on what I could do to fix it. We need to have the Flash movie be able to download arbitrary images from the web and display

[Flashcoders] Streaming AND looping of mp3:s

2006-10-16 Thread Johan Nyberg
Hi, anybody know if there is a way to loop a streamed mp3? /Johan Nyberg ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Kjel Anderson
Does anyone know if there has been an effort to get this running under mono on Linux? Kjel Andreas R wrote: FlashDevelop is by far the best AS IDE, period. Full stop. I even use it for XML these days heh. And i always have it up, so it winds up being what i do ALL text editing in. If you're

Re: [Flashcoders] Streaming AND looping of mp3:s

2006-10-16 Thread Gustavo Teider - Adobe Flash Developer
Johan Nyberg escreveu: Hi, anybody know if there is a way to loop a streamed mp3? /Johan Nyberg ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Kjel Anderson
I had a look at jEdit when i was a mac user i thought jEdit was a knife in the back of usability.. But thats just me :) That's funny. I feel the same way about the Flash IDE. ;) Kjel Andreas R wrote: FlashDevelop is by far the best AS IDE, period. Full stop. I even use it for XML these days

RE: [Flashcoders] Weird image download problems in IE

2006-10-16 Thread Alain Rousseau
Have you tried using the MovieClipLoader class ? It has an event very usefull called onLoadError . It gives you the following informations (quote from the livedocs): errorCode:String - A string that explains the reason for the failure, either URLNotFound or LoadNeverCompleted.

[Flashcoders] ppt to flash

2006-10-16 Thread Valério Guimarães
Hi all, I'm trying to convert ppt/pps to flash and I read the topic SDK for Flash. In that topic the link http://bukoo.sourceforge.net/ was mentioned but it is not working. Does anyone has anything on how to parse a ppt/pps file or creating a swf file? Regards Valério

RE: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Merrill, Jason
I just switched to using FlashDevelop on Friday, and just discovered that among many other cool things, it provides code hints for custom classes you write/import. Supercool! I hated having to go back and open the other class and remember what methods are available and what the arguments

Re: [Flashcoders] OT: sold laptop, need to release Studio 8?

2006-10-16 Thread Count Schemula
Yeah, looks that way. I had to call Macromedia over MX 2004, does not look to be an issues with Studio 8. Although, with Adobe in control, the future authentication scheme is sure to be involved. On 10/16/06, Ramses Moreno [cuatromedios] [EMAIL PROTECTED] wrote: On 10/9/06, John Dowdell

RE: [Flashcoders] ppt to flash

2006-10-16 Thread Alain Rousseau
You should try OpenOffice http://www.openoffice.org, It's similar to Windows Office, but open source and you have an application that reads PowerPoints. With it you can convert your PowerPoints to swf. Otherwise you could try and do it with a C# app. But for that I can't really help you there.

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Victor Gaudioso
I just started using it recently too and I don't know how I got along without it. I do wish it had an autoformat option though. I liked that about the Flash IDE. V - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: Flashcoders mailing list

Re: [Flashcoders] Weird image download problems in IE

2006-10-16 Thread Andy Herrman
Awesome, looks like that works. Thanks! Any idea what's causing the problem with the Loader? Just some bug in Flash or IE? -Andy On 10/16/06, Alain Rousseau [EMAIL PROTECTED] wrote: Have you tried using the MovieClipLoader class ? It has an event very usefull called onLoadError . It

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-16 Thread Andreas R
Oh man you're in for a treat. You've probably seen all this already but: * try typing something like new mx.transitions.Tween. It's a god damn miracle. * Note that the code hinting and autocompletion extends to static methods of classes, interfaces, almost ANY .as doc in the project dir. I'm

RE: [Flashcoders] Weird image download problems in IE

2006-10-16 Thread Alain Rousseau
I've never used the Loader myself, so I can't really help you out with this error, but it might be an issue with Adobe's ActiveX Add-on ?? If it's only IE that's affected that's where I would be looking. Alain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [Flashcoders] ppt to flash

2006-10-16 Thread Andy Herrman
There are commercial pieces of software that will do it (we use one here at work as part of our product), and I believe they all use VBScript to interact with Powerpoint. However, from what I've heard the next version of Powerpoint will not have the VBScript support anymore (I guess MS

[Flashcoders] External Interface causes error in IE

2006-10-16 Thread Clark, Craig
I am getting an error in Internet Explorer whenever I try to use the External Interface to call JavaScript from Flash or when I try to call actionScript from JavaScript. I do not receive an error in other browsers. It is only in IE. The error I get is a runtime error that says Object does not

[Flashcoders] Communication between two local computers

2006-10-16 Thread yetseng
Hi, I hope I can get some help here. Is it possible for two Flash movies, each on individual computers connected on a LAN network, to communicate with each other without using a communication server? What would be a good solution to this. Thank you, Henry

RE: [Flashcoders] ppt to flash

2006-10-16 Thread Alain Rousseau
I believe you can keep your transitions effects and animations with Impress (OpenOffice's PowerPoint editor) But the output is not that great looking if I remember right. I was in a e-learning company before my current job and we were looking for something to replace the Breeze plugin for

[Flashcoders] Re: Passing SWF parameters with MovieClipLoader?

2006-10-16 Thread John Harding
Hello all, I have a project where I'd like to use MovieClipLoader to load an external SWF, so that I can be notified when the load is complete. However, it appears that MovieClipLoader.loadClip() does not allow one to pass parameters (i.e. flashVars) to the SWF like MovieClip.loadMovie() does.

Re: [Flashcoders] ppt to flash

2006-10-16 Thread Hans Wichman
Hi, well FlashPaper2 converts ppt to flash, not sure if it is what you are looking for, but its part of studio 8. greetz jc On 10/16/06, Alain Rousseau [EMAIL PROTECTED] wrote: I believe you can keep your transitions effects and animations with Impress (OpenOffice's PowerPoint editor) But the

Re: [FlashCoders] Delegates and performance

2006-10-16 Thread Hans Wichman
Hi, very interesting, ill be sure to test this out! greetz JC On 10/16/06, Dimitrios Bendilas [EMAIL PROTECTED] wrote: Hello everyone, I had a really big issue recently, when I realized that the performance of a large-scale game I built in Flash dropping substantially after 1/2 hour of

Re: [Flashcoders] Communication between two local computers

2006-10-16 Thread Chris Allen
Sorry Henry, There's no peer to peer support for any version of Flash. You will either need to wrap the SWF in an executable (Zinc, Screenweaver, etc...) and access code that does the communication through that, or have a server in place that the two SWFs talk through. Keep in mind that a

[Flashcoders] FLASC problem

2006-10-16 Thread Merrill, Jason
Having problems e-mailing the osflash list, so I thought I'd try here. I'm trying to get FLASC working and I keep getting an error: While executing in myproject.fla, Javascript error(s) occurred: Missing ) after argument list. I don't see any errors in my .fla or in my .as class. I have MTASC

Re: [Flashcoders] Global sound control ...

2006-10-16 Thread Francis Turmel
You can also just skip the _root param and leave the constructor empty like this: var s:Sound = new Sound(); On 10/15/06, Paul Neave [EMAIL PROTECTED] wrote: The best way to turn sounds off isn't to use stopAllSounds() as that will only stop the sounds at that moment, not mute them

Re: [FlashCoders] Delegates and performance

2006-10-16 Thread Muzak
This has come up before and there should be some stuff in the archives http://muzakdeezign.com/flashcoders/?q=delegate%20garbage%20collection http://muzakdeezign.com/flashcoders/?q=cleaning%20up%20delegate From 2 years ago: http://www.peterjoel.com/blog/index.php?archive=2004_08_01_archive.xml

Re: [Flashcoders] FLASC problem

2006-10-16 Thread John Grden
yeah usually when I get that it's because my file (swf) is read only. If you're running any source control and have to check out the file, that could be the issue. That's what that error means essentially : Can't load SWF ;) On 10/16/06, Merrill, Jason [EMAIL PROTECTED] wrote: Having

Re: [Flashcoders] External Interface causes error in IE

2006-10-16 Thread John VanHorn
you have a url we can look at? are you sure you object/embed tags have id's and/or name's? did you use an operand or space in the file name of the swf, or id/name? all those will cause ExternalInterface to malfunction. i had a problem with ExternalInterface and IE for a while that gave me the

Re: [Flashcoders] Re: Passing SWF parameters with MovieClipLoader?

2006-10-16 Thread Alain Rousseau
Yup, Tested and True, it's definitely onLoadInit that does the trick, because it is fired when the first frame of your loaded SWF is played. onLoadComplete only tells you that the SWF bytes have completed loading before it actually begins playing. the rest of the onLoad... events for the

Re: [Flashcoders] External Interface causes error in IE

2006-10-16 Thread 赵洪日
try to use setTimeout in Register the function in swf - Original Message - From: John VanHorn [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, October 17, 2006 8:30 AM Subject: Re: [Flashcoders] External Interface causes error in IE you

RE: [Flashcoders] FLASC problem

2006-10-16 Thread Steven Sacks | BLITZ
Unlike Flash, which if a compile fails during it, the swf is unlaunchable, mtasc fails before it injects the code. You're not seeing a swf preview, it's just launching the swf that exists. FLASC uses MTASC but it doesn't react to a failed build, possibly because it doesn't know the compile

RE: [Flashcoders] swfObject problem

2006-10-16 Thread Steven Sacks | BLITZ
Or try Filezilla. Once you go Zilla, you never go... um...just try it. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

RE: [Flashcoders] ::dk:: understanding roll over with addEventListener

2006-10-16 Thread Steven Sacks | BLITZ
BTN_Foo.onRollOver = Delegate.create(this, fooRollOver); BTN_Foo.onRelease = Delegrate.create(this, fooRelease); etc. etc. :) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] ::dk:: understanding roll over with addEventListener

2006-10-16 Thread dnk
Steven Sacks | BLITZ wrote: BTN_Foo.onRollOver = Delegate.create(this, fooRollOver); BTN_Foo.onRelease = Delegrate.create(this, fooRelease); etc. etc. :) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] FLASC problem

2006-10-16 Thread John Grden
yeah when using MTASC without flasc that's true, but with FLASC, it fails internally and gives that JSFL message. I need to catch that error and provide a nice message about what could be wrong On 10/16/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: Unlike Flash, which if a compile fails

Re: [Flashcoders] ::dk:: understanding roll over with addEventListener

2006-10-16 Thread Victor Gaudioso
It is such a simple concept and it took me days to truely get it...I guess old habits die Hard. Now that I do get it, my life is much easier. Thanks John ;) V - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: Flashcoders mailing list

Re: [Flashcoders] ::dk:: understanding roll over with addEventListener

2006-10-16 Thread Victor Gaudioso
Oh and just as a side note, I was giong crazy because I wanted to Delegate a function without having a button event, I came up with Delegate with a setInterval. Worked great, there might be other better ways; I am always willing to learn a better way. V - Original Message - From:

Re: [FlashCoders] Delegates and performance

2006-10-16 Thread Anthony Lee
I thought this would interest quite a few people, so I wrote an article on this. I found your post to be a good practical example of implementing Timothee Groleau's article. Thank you. Tony ___ Flashcoders@chattyfig.figleaf.com To change your

RE: [Flashcoders] FLASC problem

2006-10-16 Thread Andreas Weber
I always get that error when I forget to close an already open swf-preview-window (the one that pops up after testing/compiling) - the newly compiled swf cannot (for some reason) replace the one that is still open in the preview window. I'm using FLASC every day and it has saved me countless