RE: [Flashcoders] trouble with adding/removing multiple preloaders on thumbs

2009-09-19 Thread Keith Reinfeld
Thomas, I think the example code below addresses your primary concerns. The biggest changes involve using a loaderArray to prevent overwriting previous Loader() assignments, and also using getChildByName() to grab the relevant preloader instance for removal. See inline comments. Let me know if

RE: [Flashcoders] trouble with adding/removing multiple preloaders on thumbs

2009-09-19 Thread thomas horner
Hi many thanks, will check this out in a sec, just having a full english breakfast, yes managed to do the product zoomer with a lot of help from 'Cor' on here. it works really well, and i've made it kind of dynmaic so you can select different angles to zoom, you are quite welcome to the fla is you

[Flashcoders] localconnection in as2

2009-09-19 Thread Hans Wichman
Hi list, as I understand it, there is a send/receive limit of 40k to the localconnection object in actionscript2. Mostly the objects passed in my application will probably be under 40k, but the question is: how can you tell? Is there some way to grab the actual AMF object flash is going to try

Re: [Flashcoders] localconnection in as2

2009-09-19 Thread Keith H
-If you don't want to worry about a send/receive limit on a String sent, take a look at this post here. -If you just want to measure the size being sent, you can look at the part where the poster is dividing the length of the String sent by the limit.