[Flashcoders] Error in displaying Hindi Text

2010-06-17 Thread Pankaj Singh
Hi, I am writing a slide show application in flash action script 3.0 . i am importing text from a external text file .. I am having no problem in windows 7 but it is showing boxes instead of texts in XP and Linux.. How to get out of this. -- -- -- Thanking You, Pankaj Kumar Singh, 2nd Year Unde

Re: [Flashcoders] Error in displaying Hindi Text

2010-06-17 Thread Pankaj Singh
which font i should embed in order to make hindi text visible .. I embeded Arial MS Unicode and it was working fine in Windows but creating problem in linux .. showing boxes only ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chat

[Flashcoders] adjusting postion of dynamically loaded images

2010-07-01 Thread Pankaj Singh
hello everyone i am trying to set x positions of different images which are being dynamically loaded depending upon their width i m writting this code in a for loop imageLoader[i].load (new URLRequest( xmlLettersList[i].attribute("img"))); imageLoader[i].width = imageLoader[i].add

Re: [Flashcoders] adjusting postion of dynamically loaded images

2010-07-01 Thread Pankaj Singh
even after using INIT i m getting 0 width because event listener function is never called (trace statement is not working) for (var i:int=0; i < lettersCount; i++) { imageLoader[i].load (new URLRequest( xmlLettersList[i].attribute("img"))); imageLoader[i].width = imageLoader[i]

Re: [Flashcoders] adjusting postion of dynamically loaded images

2010-07-01 Thread Pankaj Singh
thanks to everyone my problem has been solved :D On Thu, Jul 1, 2010 at 7:14 PM, Glen Pike wrote: > Hi, > >Oops, missed one - try calling load() after you added the listener... > >Glen > > On 01/07/2010 14:32, Pankaj Singh wrote: > >> even after using IN