Skip to content

Instantly share code, notes, and snippets.

@chuckremes
Created December 29, 2009 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuckremes/265578 to your computer and use it in GitHub Desktop.
Save chuckremes/265578 to your computer and use it in GitHub Desktop.
@import <Foundation/CPObject.j>
@import <AppKit/CPFlashMovie.j>
@import <AppKit/CPFlashView.j>
@implementation AppController : CPObject
{
CPWindow theWindow; //this "outlet" is connected automatically by the Cib
@outlet theOther;
CPFlashMovie _movie;
CPFlashView _movie_view;
}
- (void)applicationDidFinishLaunching:(CPNotification)aNotification
{
// This is called when the application is done loading.
[self loadAMQP];
}
- (void)awakeFromCib
{
// This is called when the cib is done loading.
// You can implement this method on any object instantiated from a Cib.
// It's a useful hook for setting up current UI values, and other things.
// In this case, we want the window from Cib to become our full browser window
[theWindow setFullBridge:YES];
}
- (void)loadAMQP
{
_movie = [[CPFlashMovie alloc] initWithFile:@"Resources/amqp.swf"];
_movie_view = [[CPFlashView alloc] initWithFrame:CGRectMakeZero()];
[_movie_view setFlashMovie:_movie];
[[theWindow platformWindow] addSubview:_movie_view];
debugger;
MQ.onLoad();
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment