STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228027
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5119

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/72292088?noj=FRM72292088-20DC" width="1" height="1"></div>

Star Wars Rap Battle.swf

This is the info page for
Flash #241537

(Click the ID number above for more basic data on this flash file.)


Text
Copy the below movieclip into your movie.  It will pause your movie while it loads.

Animated By Murphy Yusuf // Jack Swords Studios

Directed By Jemar Yusuf

Produced By Harris B.O.B

Created By Micheal James

sTAR WARS
rAP :bATTLE

PLAY

PLAY

PLAY

YooToobOriginals
''Star Wars Rap:Battle''
BentFrame
Youtube Records
Dir: Murphy Yusuf

YooToobOriginals
''Star Wars Rap:Battle''
BentFrame
Youtube Records
Dir: Murphy Yusuf

I TOLD YOU!

I WANTED THEM ALIVE!

I HAVE A PARTY AT 5

THEY WANT THE LORD OF THE SITH

STARWARS

TO BRING IN DOWN WITH

A RAP SO TIGHT THAT THEY ALL GONNA MISS THIS

FORCE CHOKE MY ADMIRALS, THEY TICK ME OFF!

WHEN I LET GO, THEY START TO COUGH

UP MUSTARD?

THEY FEAR MY HELMET AND MY GLOVES

WE GOT DEATH STAR, BLOW YOUR PLANET UP!

WE GOT DEATHSTAR

THAT MUCH IS TRUE

THIS IS DARTH SIDIOUS SPEAKIN, TO YOU?

I AM THE EMPEROR

YOU SHOULD NOW CALL ME MASTER

YOU KNOW I'M LIKE A CHAIN REATOR!

MY RHYMES ARE TIGHT

JUST LIKE I ROLL

YOU BETTER WATCH OUT THAT I'M OUTTA CONTROL

YOU DON'T KNOW ME!

YOU CAN'T CONTROL ME?

JUST LIKE YOU CAN NEVER BOWL WITH ME

I AM SMOKIN' RICH?

I HAVE A NICE CASTIE!

YOU BETTER WATCH OUT FOR MY RANCOR

HA, HA! I LAUGH AT YOU!

I'M YODA! JEDI MASTER AM I

USE THE FORCE TO MAKE THE X-WINGS RISE

YOU CANNOT, CONTROL ME HERE

BECAUSE, YOU HAVE TO FEAR?

I AM THE JEDI MASTER

I'M FASTER? BUT I AM SHORTER, TOO!

SO WHAT YOU GONNA DO? ABOUT ME?

THE JEDI MASTER PLAIN TO SEE.

R2-D2 WHERE HAVE YOU GONE?

YOU NEED TO COME AND SING YOUR ROBOT SONG

YOU INSERT YOUR FIST

THEN YOU TURN AND YOU TWIST

YOU SEE I AM C-3P0, NOW YOU GET THE GIST.

Youtuber Recods TM & (C) 2009 Lucasfilm Ltd. All Right

ActionScript [AS1/AS2]

Instance of Symbol 12 MovieClip in Frame 1
onClipEvent (load) { var squareSize = 100; var OutsideColor = 3240398; var InsideColor = 16724787; var centerX = (Stage.width / 2); var centerY = (Stage.height / 2); }
Frame 2
stop(); stop();
Frame 2725
stop();
Symbol 12 MovieClip Frame 1
_root.stop();
Symbol 12 MovieClip Frame 2
function done() { _root.play(); } function init() { setPoints(squareSize); faces[0] = {a:0, b:1, c:2, d:3, col:OutsideColor}; faces[1] = {a:0, b:1, c:5, d:4, col:OutsideColor}; faces[2] = {a:4, b:5, c:6, d:7, col:OutsideColor}; faces[3] = {a:7, b:6, c:2, d:3, col:OutsideColor}; faces[4] = {a:6, b:2, c:1, d:5, col:OutsideColor}; faces[5] = {a:7, b:3, c:0, d:4, col:OutsideColor}; } function onEnterFrame() { clear(); var angleY = ((_xmouse - centerX) * 0.001); var cosY = Math.cos(angleY); var sinY = Math.sin(angleY); var angleX = ((_ymouse - centerY) * 0.001); var cosX = Math.cos(angleX); var sinX = Math.sin(angleX); var numPoints = points.length; var _local2 = 0; while (_local2 < numPoints) { var _local1 = points[_local2]; var x1 = ((_local1.x * cosY) - (_local1.z * sinY)); var _local3 = (_local1.z * cosY) + (_local1.x * sinY); var y1 = ((_local1.y * cosX) - (_local3 * sinX)); var z2 = ((_local3 * cosX) + (_local1.y * sinX)); _local1.x = x1; _local1.y = y1; _local1.z = z2; var scale = (fl / ((fl + _local1.z) + zOffset)); _local1.xPos = vpX + (_local1.x * scale); _local1.yPos = vpY + (_local1.y * scale); _local2++; } var numFaces = faces.length; _local2 = 0; while (_local2 < numFaces) { renderFace(faces[_local2], OutsideColor, OutsideTransparency); _local2++; } _local2 = 0; while (_local2 < numPoints) { var _local1 = points[_local2]; var scale = ((fl / ((fl + _local1.z) + zOffset)) * scaler); _local1.xPos = vpX + (_local1.x * scale); _local1.yPos = vpY + (_local1.y * scale); _local2++; } _local2 = 0; while (_local2 < numFaces) { renderFace(faces[_local2], InsideColor, InsideTransparency); _local2++; } downloaded = Math.round((getBytesLoaded() / getBytesTotal()) * 100); scaler = getBytesLoaded() / getBytesTotal(); preloader.percent.text = downloaded + "%"; if (downloaded >= 100) { done(); } } function setPoints(size) { var _local1 = size; points[0] = {x:-_local1, y:-_local1, z:-_local1}; points[1] = {x:_local1, y:-_local1, z:-_local1}; points[2] = {x:_local1, y:_local1, z:-_local1}; points[3] = {x:-_local1, y:_local1, z:-_local1}; points[4] = {x:-_local1, y:-_local1, z:_local1}; points[5] = {x:_local1, y:-_local1, z:_local1}; points[6] = {x:_local1, y:_local1, z:_local1}; points[7] = {x:-_local1, y:_local1, z:_local1}; } function renderFace(fac, color, trans) { var _local1 = fac; beginFill(color, trans); lineStyle(1, 1188444, 100); moveTo(points[_local1.a].xPos, points[_local1.a].yPos); lineTo(points[_local1.b].xPos, points[_local1.b].yPos); lineTo(points[_local1.c].xPos, points[_local1.c].yPos); lineTo(points[_local1.d].xPos, points[_local1.d].yPos); lineTo(points[_local1.a].xPos, points[_local1.a].yPos); endFill(); } _x = 0; _y = 0; var OutsideTransparency = 10; var InsideTransparency = 20; var points = new Array(); var faces = new Array(); var fl = 250; var vpX = centerX; var vpY = centerY; var zOffset = 200; var scaler = 0; init(); stop();
Instance of Symbol 11 MovieClip "preloader" in Symbol 12 MovieClip Frame 2
onClipEvent (load) { _x = (Stage.width / 2); _y = (Stage.height * 0.8); }
Symbol 26 Button
on (release) { gotoAndPlay (3); }

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:Timeline
Symbol 3 GraphicUsed by:12
Symbol 4 FontUsed by:5 13
Symbol 5 EditableTextUses:4Used by:11
Symbol 6 GraphicUsed by:11
Symbol 7 GraphicUsed by:11
Symbol 8 GraphicUsed by:11
Symbol 9 GraphicUsed by:11
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:5 6 7 8 9 10Used by:12
Symbol 12 MovieClipUses:3 11Used by:Timeline
Symbol 13 EditableTextUses:4Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 FontUsed by:16 17 18 19 142
Symbol 16 TextUses:15Used by:Timeline
Symbol 17 TextUses:15Used by:Timeline
Symbol 18 TextUses:15Used by:Timeline
Symbol 19 TextUses:15Used by:Timeline
Symbol 20 FontUsed by:21 22 23 24
Symbol 21 TextUses:20Used by:Timeline
Symbol 22 TextUses:20Used by:26
Symbol 23 TextUses:20Used by:26
Symbol 24 TextUses:20Used by:26
Symbol 25 SoundUsed by:26  Timeline
Symbol 26 ButtonUses:22 23 24 25Used by:Timeline
Symbol 27 FontUsed by:28 29 56 58 59 62 65 66 67 70 71 72 74 75 82 89 91 94 96 98 100 101 103 104 105 106 113 114 115 116 117 125 127 128 129 130 131 132 135 136 137 138 139
Symbol 28 TextUses:27Used by:Timeline
Symbol 29 TextUses:27Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:Timeline
Symbol 34 GraphicUsed by:Timeline
Symbol 35 GraphicUsed by:Timeline
Symbol 36 GraphicUsed by:Timeline
Symbol 37 GraphicUsed by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 GraphicUsed by:Timeline
Symbol 41 GraphicUsed by:Timeline
Symbol 42 GraphicUsed by:Timeline
Symbol 43 GraphicUsed by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:Timeline
Symbol 50 ShapeTweeningUsed by:Timeline
Symbol 51 GraphicUsed by:Timeline
Symbol 52 GraphicUsed by:Timeline
Symbol 53 GraphicUsed by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 GraphicUsed by:Timeline
Symbol 56 TextUses:27Used by:Timeline
Symbol 57 GraphicUsed by:Timeline
Symbol 58 TextUses:27Used by:Timeline
Symbol 59 TextUses:27Used by:Timeline
Symbol 60 GraphicUsed by:Timeline
Symbol 61 GraphicUsed by:Timeline
Symbol 62 TextUses:27Used by:Timeline
Symbol 63 GraphicUsed by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 TextUses:27Used by:Timeline
Symbol 66 TextUses:27Used by:Timeline
Symbol 67 TextUses:27Used by:Timeline
Symbol 68 GraphicUsed by:Timeline
Symbol 69 GraphicUsed by:Timeline
Symbol 70 TextUses:27Used by:Timeline
Symbol 71 TextUses:27Used by:Timeline
Symbol 72 TextUses:27Used by:Timeline
Symbol 73 GraphicUsed by:Timeline
Symbol 74 TextUses:27Used by:Timeline
Symbol 75 TextUses:27Used by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 GraphicUsed by:Timeline
Symbol 78 GraphicUsed by:Timeline
Symbol 79 GraphicUsed by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 GraphicUsed by:Timeline
Symbol 82 TextUses:27Used by:Timeline
Symbol 83 GraphicUsed by:Timeline
Symbol 84 GraphicUsed by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:Timeline
Symbol 87 GraphicUsed by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 TextUses:27Used by:Timeline
Symbol 90 GraphicUsed by:Timeline
Symbol 91 TextUses:27Used by:Timeline
Symbol 92 GraphicUsed by:Timeline
Symbol 93 GraphicUsed by:Timeline
Symbol 94 TextUses:27Used by:Timeline
Symbol 95 GraphicUsed by:Timeline
Symbol 96 TextUses:27Used by:Timeline
Symbol 97 GraphicUsed by:Timeline
Symbol 98 TextUses:27Used by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 TextUses:27Used by:Timeline
Symbol 101 TextUses:27Used by:Timeline
Symbol 102 GraphicUsed by:Timeline
Symbol 103 TextUses:27Used by:Timeline
Symbol 104 TextUses:27Used by:Timeline
Symbol 105 TextUses:27Used by:Timeline
Symbol 106 TextUses:27Used by:Timeline
Symbol 107 GraphicUsed by:Timeline
Symbol 108 GraphicUsed by:Timeline
Symbol 109 GraphicUsed by:Timeline
Symbol 110 GraphicUsed by:Timeline
Symbol 111 GraphicUsed by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 TextUses:27Used by:Timeline
Symbol 114 TextUses:27Used by:Timeline
Symbol 115 TextUses:27Used by:Timeline
Symbol 116 TextUses:27Used by:Timeline
Symbol 117 TextUses:27Used by:Timeline
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 GraphicUsed by:Timeline
Symbol 123 GraphicUsed by:Timeline
Symbol 124 GraphicUsed by:Timeline
Symbol 125 TextUses:27Used by:Timeline
Symbol 126 GraphicUsed by:Timeline
Symbol 127 TextUses:27Used by:Timeline
Symbol 128 TextUses:27Used by:Timeline
Symbol 129 TextUses:27Used by:Timeline
Symbol 130 TextUses:27Used by:Timeline
Symbol 131 TextUses:27Used by:Timeline
Symbol 132 TextUses:27Used by:Timeline
Symbol 133 GraphicUsed by:Timeline
Symbol 134 GraphicUsed by:Timeline
Symbol 135 TextUses:27Used by:Timeline
Symbol 136 TextUses:27Used by:Timeline
Symbol 137 TextUses:27Used by:Timeline
Symbol 138 TextUses:27Used by:Timeline
Symbol 139 TextUses:27Used by:Timeline
Symbol 140 ShapeTweeningUsed by:Timeline
Symbol 141 GraphicUsed by:Timeline
Symbol 142 TextUses:15Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"percent"Symbol 11 MovieClip Frame 1Symbol 5 EditableText
"preloader"Symbol 12 MovieClip Frame 2Symbol 11 MovieClip




http://swfchan.com/49/241537/info.shtml
Created: 4/8 -2021 15:26:07 Last modified: 4/8 -2021 15:26:07 Server time: 20/04 -2024 03:08:54