Don't use v2 components. They're indeed tooo heavy and clumsy. Just create your smart-clips or use ASWing, for example.
On 12/6/06, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote:
Check out the ghostwire components. http://www.ghostwire.com They're AS1 but they work in Flash 7 and 8 alongside AS2. They're extremely lightweight and follow the Macromedia standard methods like setDataProvider(), etc. If you want events generated, code it yourself. It's easy: import mx.events.EventDispatcher; class MyClass { public var addEventListener:Function; public var removeEventListener:Function; private var dispatchEvent:Function; function MyClass() { EventDispatcher.initialize(this); } function onComboBoxChange() { dispatchEvent({type:"change", data:CMB.selectedItem.data); } _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
_______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

