probleme variable
Hi
Probably a rookie mistake, but i have a problem
My script
import views.Piou;
private var transition:SlideViewTransition = new SlideViewTransition;
[Bindable]
public var imageScroller:String;
public function clickScroller(event:MouseEvent):void
{
transition.direction = ViewTransitionDirection.DOWN;
transition.duration = 1000;
switch ( event.target.name ) {
case 'Group141': imageScroller = 'Piou'; break;
case 'Group147': imageScroller = 'Star'; break;
}
//trace( imageScroller ); my trace is OK
navigator.pushView(views.imageScroller, null, null, transition); /// Here an error
}
Access to undefined property imageScroller in the package views.
An idea ??
Thanks for your help
