[Flashcoders] AS3: How to get BitmapData from embeded image

2005-11-14 Thread Tomas Lehuta
know how to obtain BitmapData from my image. I've inspected the instance of MyImage to be a mx.core.SkinSprite. But it has no API for getting its bitmapData.. How could I achieve this? thanx Tomas Lehuta [http://lharp.net] ___ Flashcoders mailing

RE: [Flashcoders] AS3: How to get BitmapData from embeded image

2005-11-14 Thread Tomas Lehuta
No no, Darron, I'd like to extract image's BitmapData to be able to manipulate it. So prior to displaying it via addChild() I need to do some transformations and image distortion.. Is it possible with new API? Tomas Lehuta [http://lharp.net] -Original Message- From: [EMAIL PROTECTED

RE: [Flashcoders] AS3: How to get BitmapData from embeded image

2005-11-14 Thread Tomas Lehuta
Thanks for tip, Darron, so now it's not possible to have images compiled in application's SWF or have them in external SWF to be loaded dinamicly? I think such feature would be helpful for game developers that do not need Flex Framework API. Tomas Lehuta [http://lharp.net] -Original

[Flashcoders] AS2: Dividing code and user interface in separate SWF

2005-11-14 Thread Tomas Lehuta
but reside only in core.swf. Are there any limitations for this concept? If the classes from core.swf are loaded prior to ui.swf and defined in _global scope they should be correctly instantiated on the stage when ui.swf is loaded or not? Please, correct me if I'm wrong.. Tomas Lehuta [http://lharp.net

RE: [Flashcoders] Eclipse/FDT/Subclipse weirdness

2005-11-14 Thread Tomas Lehuta
Jim, I'm using Subclipse in both Eclipse/FDT and Flex Builder 2 and everything goes ok. Which version of Eclipse/FDT/Subclipse do you have? I'm running the latest versions: Eclipse SDK 3.1.0 FDT 1.0.4 Subclipse 0.9.37 Tomas Lehuta [http://lharp.net] -Original Message- From: [EMAIL

Re: [Flashcoders] AS3: How to get BitmapData from embeded image

2005-11-14 Thread Tomas Lehuta
() { var sprite:Sprite = Sprite(new Wood()); var bitmapData:BitmapData = new BitmapData(sprite.width,sprite.height); bitmapData.draw(sprite,new Matrix()); var bitmap:Bitmap = new Bitmap(bitmapData); addChild(bitmap); } } Tomas Lehuta [http://lharp.net] - Original

[Flashcoders] AS3: List of dispatched events from any EventDispatcher in run-time

2006-09-20 Thread Tomas Lehuta
for comments.. Tomas Lehuta lharp / http://lharp.net ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier

[Flashcoders] Capturing FMS video streams from multiple cameras

2007-01-05 Thread Tomas Lehuta
to select which camera will capture the stream? Or is there any other solution you would choose to achieve this? thanks in advance Tomas Lehuta Flash Senior Developer Kremsa Design (http://www.kremsadesign.com) ___ Flashcoders@chattyfig.figleaf.com

[Flashcoders] Extending List v2 component

2007-02-06 Thread Tomas Lehuta
Hello Flashers, I'd like to have some advice on customizing List v2 component since I have no deeper knowledge of v2 components set architecture. I need to extend the List component in some custom List class that would physically render all items of its data provider and not just use virtual

Re: [Flashcoders] Extending List v2 component

2007-02-06 Thread Tomas Lehuta
Hi, well, this will not help because my problem is not related to custom cellrenderer which I'm aready using.. I need a different logic for building and displaying all rows of the list when beeing scrolled.. -tom- On 2/6/07, Rákos Attila [EMAIL PROTECTED] wrote: Look into the CellRenderer