RE: [Flashcoders] V2 components too heavy

2006-12-06 Thread Steven Sacks | BLITZ
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);
}
___
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 Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] V2 components too heavy

2006-12-06 Thread Marcelo de Moraes Serpa

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);
}
___
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 Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
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 Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com