Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

for Kenneth..pls..if u have time

Status
Not open for further replies.

SlayerRo

Programmer
Jan 9, 2006
17
0
0
RO
hi..in my last post i tried to explain what my problem is regarding zoom on a picture. this link is a demo made by someone but the difernce is that it's with text...
"
can u help me with something like this for a picture? same effect but no text. thx for u're time
 
The setup:
- A picture on Stage
- 4 button Members on Stage, Members are named "Up", "Right", "Down", and "Left"

The scripts:

[tt]-- Behaviour script attached to the picture
global gMove

on enterFrame me
case gMove of
1: sprite(me.spriteNum).locV = sprite(me.spriteNum).locV + 1
2: sprite(me.spriteNum).locH = sprite(me.spriteNum).locH - 1
3: sprite(me.spriteNum).locV = sprite(me.spriteNum).locV - 1
4: sprite(me.spriteNum).locH = sprite(me.spriteNum).locH + 1
end case
end enterFrame
--

-- Behaviour script attached to 4 buttons
global gMove

on mouseDown me
case sprite(me.spriteNum).member.name of
"Up": gMove = 1
"Right": gMove = 2
"Down": gMove = 3
"Left": gMove = 4
end case
end mouseDown

on mouseUp me
gMove = 0
end mouseUp

on mouseUpOutside me
gMove = 0
end mouseUpOutside
--[/tt]

Hope this is close to what you after!

Kenneth Kawamoto
 
thx a lot..yep thats close to what i need...that's for you're time..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top