Advertisement
Guest User

meme2

a guest
Jun 17th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. #Opening Title/Introduction
  2. background = Rectangle(Point(0,0),Point(x,y))
  3. background.setFill("yellow")
  4. background.setOutline(color_rgb(220,68,255))
  5. background.setWidth(20)
  6. background.draw(win)
  7.  
  8. broadcast = Text(Point(x/2,y/2 - 200),"Hexagon")
  9. broadcast.setSize(30)
  10. broadcast.setTextColor(color_rgb(86,244,66))
  11. broadcast.draw(win)
  12.  
  13. broadcast2 = Text(Point(x/2,y/2 -100),"Hyperdrive")
  14. broadcast2.setSize(30)
  15. broadcast2.setTextColor(color_rgb(66,235,244))
  16. broadcast2.draw(win)
  17.  
  18. broadcast3 = Text(Point(x/2,y/2),"Inc.")
  19. broadcast3.setSize(30)
  20. broadcast3.setTextColor(color_rgb(125,36,204))
  21. broadcast3.draw(win)
  22.  
  23. broadcast4 = Text(Point(x/2,y/2+ 100),"Presents...")
  24. broadcast4.setSize(30)
  25. broadcast4.setTextColor(color_rgb(36,53,204))
  26. broadcast4.draw(win)
  27.  
  28. #Publishing Company Logo
  29.  
  30. hhiCentre=Polygon(Point(600-500,400-350),Point(580-500,400-350),Point(560-500,420-350),Point(560-500,440-350),Point(580-500,440-350),Point(600-500,420-350))
  31. hhiCentre.setFill(color_rgb(118,255,0))
  32. hhiCentre.setOutline("yellow")
  33. hhiCentre.draw(win)
  34.  
  35. hhiTop=Polygon(Point(585-500,395-350),Point(595-500,395-350),Point(605-500,385-350),Point(605-500,375-350),Point(595-500,375-350),Point(585-500,385-350))
  36. hhiTop.setFill(color_rgb(118,255,0))
  37. hhiTop.setOutline("yellow")
  38. hhiTop.draw(win)
  39.  
  40. hhiTopRight=Polygon(Point(605-500,415-350),Point(615-500,415-350),Point(625-500,405-350),Point(625-500,395-350),Point(615-500,395-350),Point(605-500,405-350))
  41. hhiTopRight.setFill(color_rgb(118,255,0))
  42. hhiTopRight.setOutline("yellow")
  43. hhiTopRight.draw(win)
  44.  
  45. hhiBottom=Polygon(Point(605-50-500,415+50-350),Point(615-50-500,415+50-350),Point(625-50-500,405+50-350),Point(625-50-500,395+50-350),Point(615-50-500,395+50-350),Point(605-50-500,405+50-350))
  46. hhiBottom.setFill(color_rgb(118,255,0))
  47. hhiBottom.setOutline("yellow")
  48. hhiBottom.draw(win)
  49.  
  50. hhiBottomLeft=Polygon(Point(605-70-500,415+30-350),Point(615-70-500,415+30-350),Point(625-70-500,405+30-350),Point(625-70-500,395+30-350),Point(615-70-500,395+30-350),Point(605-70-500,405+30-350))
  51. hhiBottomLeft.setFill(color_rgb(118,255,0))
  52. hhiBottomLeft.setOutline("yellow")
  53. hhiBottomLeft.draw(win)
  54.  
  55. hhiRight=Polygon(Point(605-15-500,415+33.14213562373-350),Point(615-15-500,415+33.14213562373-350),Point(625-15-500,405+33.14213562373-350),Point(625-15-500,395+33.14213562373-350),Point(615-15-500,395+33.14213562373-350),Point(605-15-500,405+33.14213562373-350))
  56. hhiRight.setFill(color_rgb(118,255,0))
  57. hhiRight.setOutline("yellow")
  58. hhiRight.draw(win)
  59.  
  60. hhiLeft=Polygon(Point(605-15-38-500,415+33.14213562373-38-350),Point(615-15-38-500,415+33.14213562373-38-350),Point(625-15-38-500,405+33.14213562373-38-350),Point(625-15-38-500,395+33.14213562373-38-350),Point(615-15-38-500,395+33.14213562373-38-350),Point(605-15-38-500,405+33.14213562373-38-350))
  61. hhiLeft.setFill(color_rgb(118,255,0))
  62. hhiLeft.setOutline("yellow")
  63. hhiLeft.draw(win)
  64.  
  65. #Transition Text[Bottom Right]
  66. advanceRight1=Text(Point(750,690),"Press right arrow key to advance")
  67. advanceRight1.setFill("black")
  68. advanceRight1.setSize(25)
  69. advanceRight1.draw(win)
  70.  
  71. #Transition
  72. win.getKey()
  73.  
  74. #Title Slide
  75. background2 = Rectangle(Point(0,0),Point(x,y))
  76. background2.setFill("yellow")
  77. background2.setOutline(color_rgb(220,68,255))
  78. background2.setWidth(20)
  79. background2.draw(win)
  80.  
  81. broadcast5 = Text(Point(x/2,y/2-200),"Illuminated Gulf")
  82. broadcast5.setSize(30)
  83. broadcast5.setTextColor(color_rgb(7,21,150))
  84. broadcast5.setStyle("bold italic")
  85. broadcast5.setFace("helvetica")
  86. broadcast5.draw(win)
  87.  
  88. tear = Image(Point(x/2,y/2),"ioi.gif")
  89. tear.draw(win)
  90.  
  91. advanceRight1=Text(Point(x/2,y/2+200),"Press right arrow key to advance to decisions...")
  92. advanceRight1.setFill("black")
  93. advanceRight1.setSize(25)
  94. advanceRight1.setFace("helvetica")
  95. advanceRight1.draw(win)
  96.  
  97. #Transition
  98. win.getKey()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement