| 1234567891011121314151617181920212223242526272829303132333435 |
- import com.imt.intimamedia.views.menus.BottomMenu;
- import flash.events.MouseEvent;
- import flash.net.URLRequest;
- import flash.net.navigateToURL;
- import mx.controls.Alert;
- import mx.controls.Button;
- import mx.events.ItemClickEvent;
- private function creationComplete() : void
- {
- this.selectedIndex = 0;
- }
- private function navigateIntoBottomMenu() : void
- {
- if (this.selectedIndex == 2)
- {
- this.selectedIndex = 0;
- redirectToImt();
- }
- }
- private function redirectToImt() : void
- {
- var req : URLRequest = new URLRequest("http://www.iimt.fr");
- navigateToURL( req, "_blank" );
- }
- private function redirectToPrivacy() : void
- {
- var req : URLRequest = new URLRequest("http://www.iimt.fr");
- navigateToURL( req, "_blank" );
- }
|