----Get Behavior description----
on getBehaviorDescription
return "This Controls Rotation a Flash Sprite" & RETURN & RETURN &
"Parameters" & RETURN &
"* Flash Sprite." & RETURN &
"* Clockwise/AntiClockwise." & RETURN &
"* Rotation Angle." & RETURN &
"* Where to attach this Script"
end
----Get Behavior description----
----Get Behavior Parameters----
on getPropertyDescriptionList
set description = [:]
theflashmemlist = searchflashsprite()
if theflashmemlist.count > 0 then
addProp description, #WhichSprite, [#format:#Integer, #comment: "Which Flash Sprite ?",#range:theflashmemlist,#default:theflashmemlist[1]]
else
addProp description, #WhichSprite, [#format:#Integer, #comment: "Which Flash Sprite ?",#default:1]
end if
addProp description, #Whichway, [#format:#String, #comment: "Rotate :",
#range:["Clockwise","AntiClockwise"],#default:"Clockwise"]
addProp description, #RotateProp, [#format:#Integer, #comment: "Rotate By(in angles) :",
#range:[#Min: 0, #max: 360],#default:60]
if the currentspritenum = 0 then
addProp description, #WhereTo, [#comment: "Where To Attach ?" ,#format:#String,
#range:["On EnterFrame","On ExitFrame"],#default:"On EnterFrame"]
else
addProp description, #WhereTo, [#comment: "Where To Attach ?" ,#format:#String,
#range:["On MouseUp","On MouseDown","On MouseEnter","On MouseLeave"],#default:"On MouseUp"]
end if
return description
end
----Can be attached to both Sprite and Frame Scripts----
on isOKToAttach (me, aSpriteType, aSpriteNum)
case aSpriteType of
#graphic:
return True
#script:
return True
end case
end isOKToAttach
----Can be attached to both Sprite and Frame Scripts----
----Events----
on EnterFrame me
if WhereTo = "On EnterFrame" then
controlRotate
end if
end EnterFrame
on ExitFrame me
if WhereTo = "On ExitFrame" then
controlRotate
end if
end ExitFrame
on MouseUp
if WhereTo = "On MouseUp" then
controlRotate
end if
end MouseUp
on MouseDown
if WhereTo = "On MouseDown" then
controlRotate
end if
end MouseDown
on MouseEnter
if WhereTo = "On MouseEnter" then
controlRotate
end if
end MouseEnter
on MouseLeave
if WhereTo = "On MouseLeave" then
controlRotate
end if
end MouseLeave
----Events----
----Search for Flash Member on the Stage----
on searchflashsprite
set theflashmemlist = []
repeat with i=1 to the lastchannel
if sprite(i).member.type = #flash then
theflashmemlist.append(i)
end if
end repeat
return theflashmemlist
end
----Search for Flash Member on the Stage----
----Custom Handler to control Rotation Property----
on controlRotate
if member (sprite(WhichSprite).member).type = #Flash then
member(sprite (WhichSprite).member).obeyScoreRotation = 1
case whichway of
"Clockwise":
sprite(WhichSprite).rotation = sprite(WhichSprite).rotation - RotateProp
"AntiClockwise":
sprite(WhichSprite).rotation = sprite(WhichSprite).rotation + RotateProp
end case
end if
end
----Custom Handler to control Rotation Property----
Contact
MMI
36 South Court Sq
Suite 300
Newnan, GA 30263
USA