[Flashcoders] Preloader not showing up

2008-12-14 Thread e319
Any idea why there are no errors but my preloader does not show up on the stage? I have commented out the call to remove it and addChild the main website for testing purposes ... package { // Flash Classes import flash.display.*; import flash.events.*; import

RE: [Flashcoders] Preloader not showing up

2008-12-14 Thread Cor
Your swf is not getting loaded. Trace the progress. Not sure about this: event.bytesLoaded/event.bytesTotal; Could it be: event.currentTarget.bytesLoaded/event.currentTarget.bytesTotal; -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com

[Flashcoders] adding child movie clips in a loop

2008-12-14 Thread php_mysql_ as_ dev
Hello This code seems to give me a column of 10 instances of myMovieClip. But it doesn't make sense because each instance is referenced by mc. How would I reference each clip? public class create_ten_clips extends MovieClip { public var mc:MovieClip = new MovieClip(); public

RE: [Flashcoders] adding child movie clips in a loop

2008-12-14 Thread Barry Hannah
Put them in an array. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of php_mysql_ as_ dev Sent: Monday, 15 December 2008 9:00 a.m. To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] adding child

[Flashcoders] A funny little hover problem with CSS

2008-12-14 Thread Ashim D'Silva
Hi all, I'm having a really odd problem, that I haven't been able to find anything about. I have a multiline, word wrapped TextField that uses CSS (built as objects), with content coming from HTML in an XML file. It all works fine, but for some reason, when I hover over a link (whether I have CSS

[Flashcoders] Re: A funny little hover problem with CSS

2008-12-14 Thread Ashim D'Silva
Right. I recreated everything slowly in a new file, introducing things one by one and here's the culprit - Advanced Anti-Aliasing.Now I really would like to use advanced, because text looks dramatically better, but there has to be a solution, doesn't there? 2008/12/15 Ashim D'Silva

Re: [Flashcoders] adding child movie clips in a loop

2008-12-14 Thread Gerry
OR... You could do the following in your loop... mc.name = mc+i; It all depends on how you want to reference those clips though, mouseEvents? Or just an animation / change of some property on each clip? -Gerry On Dec 14, 2008, at 3:00 PM, php_mysql_ as_ dev wrote: Hello This code