Flash Zoom
Flash Zoom
Out of context: Reply #4
- Started
- Last post
- 15 Responses
- System-Idle0
a fair bit of coding has gone into that.
The most basic feature i using the movieclip X & Y scale properties.
to zoom in
on(press){
map_mc._xscale+=5
map_mc._yscale+=5
}to zoom out
on(press){
map_mc._xscale-=5
map_mc._yscale-=5
}