Guest User

Untitled

a guest
Feb 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. - (void)applicationDidFinishLaunching:(CPNotification)aNotification
  2. {
  3. var backgroundWindow = [[CPWindow alloc] initWithContentRect:CGRectMakeZero() styleMask:CPBorderlessBridgeWindowMask],
  4. windowContentView = [backgroundWindow contentView];
  5. [windowContentView setBackgroundColor:[CPColor darkGrayColor]];
  6.  
  7.  
  8. var movie = [CPFlashMovie flashMovieWithFile:[CPString stringWithString:@"/Users/itaiferber/Desktop/Lore3433.swf"]],
  9. movieView = [[CPFlashView alloc] initWithFrame:CGRectMake(CGRectGetWidth([windowContentView bounds]/2-400), CGRectGetHeight([windowContentView bounds])/2-300, 800, 600)];
  10. [movieView setFlashMovie:movie];
  11.  
  12. [windowContentView addSubview:movieView];
  13.  
  14. [backgroundWindow orderFront:nil];
  15. }
Add Comment
Please, Sign In to add comment