Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. MusicPage = new Layer
  2. MusicPage.width = 384
  3. MusicPage.height = 640
  4.  
  5. statusBar = new Layer
  6.     width: 384
  7.     height: 24
  8.     image: "images/status bar.svg"
  9.  
  10. statusBar.parent = MusicPage
  11.    
  12. navBar = new Layer
  13.     y: 592
  14.     x: 0
  15.     width: 388
  16.     height: 48
  17.     image: "images/navbar.svg"
  18.  
  19. navBar.parent = MusicPage
  20.  
  21. Content = new Layer
  22. Content.y = 24
  23. Content.width = 384
  24. Content.height = 568
  25.  
  26. Content.backgroundColor = 'green'
  27. Content.parent = MusicPage
  28.  
  29.  
  30. MoviesPage = MusicPage.copy()
  31.  
  32. Flow = new FlowComponent
  33. Flow.showNext(MusicPage)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement