RE: [Flashcoders] Increase Recursion Level?

2008-10-01 Thread Doug Coning
Yeah, I found a parameter you could pass into the SWF file that would change the recursion level, but wanted to see if I could do it programmatically through AS. I was using recursion to load assets into a swf. I have an array of assets that needed to be loaded into a SWF file. I've set up a

Re: [Flashcoders] Increase Recursion Level?

2008-10-01 Thread Leandro Ferreira
I think that in player 9 it changed from 256 levels of recursion to 15s of processing, not sure though. Anyway, when I genuinely needed that level of recursion, I divided it in cycles (or frames) in order to work. Leandro Ferreira On Wed, Oct 1, 2008 at 3:21 PM, Merrill, Jason < [EMAIL PROTE

RE: [Flashcoders] Increase Recursion Level?

2008-10-01 Thread Merrill, Jason
I think recursion limits are set at the Flash player level, but not at the published .swf level, so even if you could increase it (I don't think you can), the end user could not change it. I could be wrong. I don't know if it's necessarily a huge no-no, but I would say it would be recommended

[Flashcoders] Increase Recursion Level?

2008-10-01 Thread Doug Coning
Is there an actionscript command that can increase the recursion level within a flash movie? I have a legitimate method that calls itself and may exceed the 256 recursion limitiation. Or, is it just best not to use recursion in Flash? Thanks, Doug

RE: [Flashcoders] Can URLLoader Open New Window Like LoadVars?

2008-10-01 Thread Merrill, Jason
>> Not 100% sure, but you may run into problems with pop-up blocking. I believe popup blockers are only sniffing windows spawned by Javascript, and not by direct user-requests, so using _blank should be fine. Jason Merrill Bank of America  GCIB & Staff Support L&LD Instructional Technology & Med

RE: [Flashcoders] Perlin Noise / Displacement

2008-10-01 Thread Karim Beyrouti
This really helped - Thank you ! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glen Pike Sent: 30 September 2008 21:27 To: Flash Coders List Subject: Re: [Flashcoders] Perlin Noise / Displacement Hi, I did a similar thing to generate fake clouds -