home *** CD-ROM | disk | FTP | other *** search
- package com.althea.client.shufflr.controller
- {
- import com.althea.client.shufflr.*;
- import com.althea.client.shufflr.model.*;
- import org.puremvc.as3.multicore.interfaces.*;
- import org.puremvc.as3.multicore.patterns.command.*;
- import org.puremvc.as3.multicore.patterns.observer.*;
-
- public class MyZoneCommand extends SimpleCommand
- {
- public function MyZoneCommand()
- {
- super();
- }
-
- override public function execute(param1:INotification) : void
- {
- var _loc2_:ShuffleFeedProxy = facade.retrieveProxy(ShuffleFeedProxy.NAME) as ShuffleFeedProxy;
- var _loc3_:Object = new Object();
- _loc3_.title = "Profile";
- _loc3_.link = "users/profile";
- _loc3_.dataType = "profileData";
- _loc3_.name = "profile";
- _loc2_.loadData(_loc3_,_loc3_.dataType);
- }
- }
- }
-
-