Re: [Flashcoders] Flash Projects worklow

2009-12-20 Thread Omar Fouad
Thanks Everyone On Sun, Dec 20, 2009 at 3:23 AM, Glen Pike postmas...@glenpike.co.ukwrote: Hi Omar, I have the same thing - I am coding in Flash Develop with hand-rolled button classes and other classes. I was a little concerned at first with the public / private thing, but I am learning

[Flashcoders] TextField with image...

2009-12-20 Thread Sander Schuurman
Hi cool list, I'm encountering a problem with TextFields... I want to embed an image into a TextField, and position other content underneath the TextField. The Image is loaded after a short while, and thus the height of the TextField increases. But no event is fired when the img is loaded.

Re: [Flashcoders] TextField with image...

2009-12-20 Thread Geografiek
Hi Sander, How do you load the image? as a HTML IMG tag? I think you shouldn't look for an event fired when the image is loaded, but the event fired when the textField changes size. TextFieldEvent.CHANGE I guess. HTH Willem van den Goorbergh Op 20 dec 2009, om 23:46 heeft Sander Schuurman

RE: [Flashcoders] TextField with image...

2009-12-20 Thread Nathan Mynarcik
Have you tried loading the image into a empty Movieclip. Have an oncomplete handler that will fire once flash has loaded the image into the empty movie clip. Inside the oncomplete handler function, have flash create your textfield with the text you want at whatever location you need. This way,