robotlegs / robotlegs-framework

An ActionScript 3 application framework for Flash and Flex
https://robotlegs.tenderapp.com/
MIT License
967 stars 261 forks source link

Where's CommandCenterExtension? #145

Closed katopz closed 11 years ago

katopz commented 11 years ago

it should be place at

robotlegs.bender.extensions.commandCenter.CommandCenterExtension

but it's not there, is this deprecated? or migrated somewhere? I'm asking here because some random examples still install this extension somehow...

Thanks

darscan commented 11 years ago

The CommandCenterExtension class existed in older versions of the RL2 beta, but it was removed from the release. It no longer needs to be installed, so you can just delete the line that tries to install it. What examples are still using it? They should be updated to use the release version of RL2.

katopz commented 11 years ago

i'm migrating my old RL https://github.com/katopz/robotlegs-modular-signals and found that someone already working on (some of) it here https://github.com/dotdotcommadot/ModularRL

but it's seem to be on RL2 beta and flex (i'm on pure as3) e.g.

https://github.com/dotdotcommadot/ModularRL/blob/master/src/com/dotdotcommadot/modularrl/modules/moduleone/config/ModuleOneBundle.as#L41

i'm investigating right now, Thanks for assist :)

darscan commented 11 years ago

Ah ok, so you can just delete that line.

katopz commented 11 years ago

no worry, it seem like all i need is...

new Context().install(MVCSBundle, SignalCommandMapExtension)

all up and running, Thanks!

darscan commented 11 years ago

Yes, that's much nicer.