Zooming In And Out On An Image
Is there a way to that users can zoom in and out of an image and even drag/scroll around if the image is larger than the viewing window. I looking for a way to creativly display my portfolio in a limited area. Any direction would me much appreciated.
FlashKit > Flash Help > Flash MX
Posted on: 07-22-2004, 02:27 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Zooming In On An Image With Action Script Without Zooming The Entire Frame In
How do I zoom in on "1" image so its like 2x or 3x the normal size, but its only in that frame, like the entire stage wont zoom in, just that image will, and it will stay in a 546 * 281 format ?
Is this understandable?
Another example would be
(My image size is 546 * 281)
You click a button, it zooms in on the image, however everything else on the main frame does not move, just the image zooms in (still staying the same size)
Zooming An Image
Good afternoon,
I would like to know if I can,using an image make a zoom for it,whit bottons for zoom in and zoom out...If possible, what must I dont? Can I do this,without any transformations, or movie clips and tweens...
Tks,
Angelistis.
Zooming On Image
Hey
I currently working on a site. and i wan't to put a map on it. By map i mean a road description. I was wondering if it was possible to start from a totally zoomed out image and then let the person zoom in. And i don't want it by clicking the right mouse button and then zoom. I wan't to put a magnifying (don't know how to spell it) glass on the stage, and when they click it, it zooms automaticly. i know you can do it by loading a different image echt time the users clicks, but i just want to use the one image. is this possible??
thx
Diederik
[CS3] Zooming An Image/MC In AS2
Hi everyone,
Here am I with this silly-sounding problem.
I have a movie clip which should be zoomed in and out.
Somehow Iam stuck on twoo simple phases which are:
1. I want the movie clip to stop zooming when a particular size is reached...so to say, to hide the zoomIn button and vice versa for the zoomOut.
2. The movie clip should also be draggable, s that one can pan and view all the detail. I worte the drag script but it always dragged the movie clip to the endge of the stage so my G shows. I want the MC to stop being dragged when for example the right edge reaches the edge ofthe stage or the overlying mask..and so on and so forth for all the co-ordinates.
Here is my code
mgl.lzIn._visible = true
mgl.lzOut._visible = true
lzEndIn._visible = false
lzEndOut._visible = false
var zIn:Number = 5;
var xfull:Number = stage.width;
var yfull:Number = stage.height;
var xstop:Number = stage.width*2;
car._xscale -= 40;
car._yscale -= 40;
//Here I want to zoom it in and it functions
mgl.lzIn.onPress = function()
{
if (car._xscale>=-40 && car._yscale>=-40 )
{
car._xscale += zIn;
car._yscale += zIn;
}else{
car._xscale>=-40 && car._yscale>=-40
}
}
HERE I want to add conditionals to the zoom button 'lzIn' to be deactivated when 'car'
reaches about twice the size of the stage,so that one cannot zoom anymore
In this case, the zoomIn button (lzIn) becomes invisible
and the endzoom button(lzEndIn) which has no actions attached to it becomes visible
what statement do i use?
//ZoomOut Conditions
mgl.lzOut.onPress = function()
{
if (car._xscale>-40 && car._yscale>-40 )
{
car._xscale -= zIn;
car._yscale -= zIn;
}else{
car._xscale>=-40 && car._yscale>=-40
}
}
HERE I wanted too put conditional statements so the zoom button 'lzOut' to be deactivated when 'car'
reaches BACK the original size it was on load which is -40
In this case, the zoomOut button (lzOut) becomes invisible
and the endZoomOut button(lzEndOut) which has no actions attached to it becomes visible
NEXT
I want the car to be draggable on the x and y radius when it gets bigger than stage-size,
so one can see all the zoomed parts. I have tried it but it always dragged
the car even away from the edge of the screen, so that my BG was showing
Can anyone possibly help me out and be my hero?
Thanks in advance
I had wanted to post the file but do not know how that goes here..any suggestions?
Zooming In And Out On An Image
Is there a way to that users can zoom in and out of an image and even drag/scroll around if the image is larger than the viewing window. I looking for a way to creativly display my portfolio in a limited area. Any direction would me much appreciated.
Zooming In And Out On An Image
Is there a way to that users can zoom in and out of an image and even drag/scroll around if the image is larger than the viewing window. I looking for a way to creativly display my portfolio in a limited area. Any direction would me much appreciated.
Zooming In On An Image
Thanks in advance to anyone who can help with this.
I have a large jpeg that I want to move across (using a mask) and then zoom in on. Does anyone the best way to do this whilst keeping the kb's down?
Zooming An Image In And Out
I need a loop (I'm assuming). Here is the current code that I have on a button.
on(rollOver){
_root.pic._xscale=18.15;
_root.pic._yscale=18.15;
}
now what we want to do is give the appearce of panning and zooming the picture as if it is a camera.
There is no problem with the panning, I can do that, but the "zooming" is the problem. Basically what I need to do is increment the _xscale and _yscale of the image while someone is rolled over this button.
I need it to increment by .05 every 1/24th of a second. (Frame rate is 24 fps on this swf.)
Any help would be MUCH appreciated.
Thanks.
CFB Button And Zooming On An Image.
I used this tutorial:
http://www.webclass.ru/eng/Tutorials...k_buttons.html
to find out how to make CFB's that would zoom a picture. I have two questions, and I know it is probably simple code but still:
1. I want to set limits on how big and small the picture that is being zoomed can be. How do I set limits like that?
2. I don't want the picture to zoom from the middle, and by that expanding from the middle (like the example on the page), but instead I want it to stay anchored and then zoom while anchored to a spot. (For example I want the pic to stay anchored to the bottom and expand while staying anchored to the bottom instead of anchored in the middle like the example) How would I establish this?
Thank you very much for helping out a newbie to this forum...and somewhat still new to flash.
Hi-Res Image Zooming Software
Has anybody had experience with Zoomify or FXWitz Hi-Rez. I am debating on purchasing one or the other or something that can do the same thing. Does anyone have a preference or can you give me some feedback? thanks
Flash Image Zooming
Hi All,
Im trying to create a movie like in the header of:
http://www.mrandmrssmith.com/boutiqu..._design_hotel/
However, when i scale the image in the animation, it dithers in the final swf.
Also can anyone help for the actionscipt with this sort of zooming image gallery.
Many many thanks to anyone who helps.
Regards,
Ian
Zooming In On A Panned Image
I'm panning on an image 2kx2k pixels. Panning is working wonderfully. I added a scrollRect to the image container and test the mouse position blah blah blah....I'm trying to add zoom and now things have gotten a little hairy
Main Movie -> PanClass Object -> Image Container -> External Swf.
I have a couple test buttons that simply allow a user to zoom in or out on that image. I figured that by zooming in (adjusting x and y scale) of the external swf that my movie would scale and continue to pan which it does, but it is still panning at the original size of the image. I need it to pan in the same size window as before but with the new scaled dimensions. I've included the panImage function. What do I need to adjust so that it will behave as I want?
Mike
Attach Code
public function panImage( e:Event ):void
{
mouse.x = target.mouseX;
mouse.y = target.mouseY;
if ( r_mask.containsPoint( mouse ) )
{
panX = ( (Math.abs( image.x - mouse.x) / rect.width ) * ( r_img.width - rect.width ) );
panY = ( (Math.abs( image.y - mouse.y) / rect.height ) * ( r_img.height - rect.height ) );
}
rect.x += (panX - rect.x) / speed;
rect.y += (panY - rect.y) / speed;
image.scrollRect = rect;
}
Zooming And Panning An Image
I have loaded an image from a particular site using loader.. and added this loader in a Movieclip.. I want to zoom and pan the image.. How to zoom particular area of a movieclip?
Zooming In On Certain Area's Of An Image
Hi Everyone
I have searched around the forum and searched the tutorials but cant quite find what im looking for.
I have been learning flash (mainly actionscript 3) and im becoming pretty good with it and can do most things I need to but I have been having problems trying to solve this 1 thing so here goes...
Say I have a JPEG image 400x300 and I wanted it to zoom in when I click on a certain area of the image, lets say I clicked on a persons head on the image it would zoom in "on the head"
Im actually half way there I have set an eventlister so when someone clicks on the image it changes the scaleX & Y properies but this obviosuly doesnt zoom the part of the mouse exactly so I tried to change the normal x & y properies to the same as the mouse but this didnt bring the results needed.
I hope that made sense and if anybody could point me to a tutorial or info on the subject i would be very gratefull.
Thanks
When Zooming, Image Shifts.
Everytime i zoom my image keeps shifting, can anybody help? i d like to, when zooming, to zoom toward the center of whats visible.
Anybody know what to do?
Here is the code:
Trouble Zooming The Image Correctly
Hello,
I have a flash file that lets you zoom pictures. My problem is when I zoom the picture the picture moves to the bottom-right. Meaning that the x and y values increases.
Now, what I want is for the picture to zoom from the center of the picture. And not from right to left, as it does right now. You see what I mean if you test the file. Again, I want the picture to zoom from the center straight at me.
Hope you understood my explanation.
Very gratefull if anyone can help me solve this problem.
Image Scrolling/Zooming/Coolness
Anyone know how this was done or where I can find a source file?
If you enter this site, go to any of the interior pages and you'll notice the mouse interacting with the bkg image to zoom and pan. Really nice.
I've looked and looked but can't find out how they did it.
http://www.vodafone.com/flash/future...l&bandwidth=hi
Thanks! - Gary
[F8] Zooming In On A Map > Keeping Image Centered?
Hi guys, gals, and others,
This is driving me insane!
I'm building a little flash app - a scrolling, zoomable map. I've got the file to load in variables from an XML file, I've got the scrolling working, and I've got a failsafe function to stop the image going off the edge of the screen - but the zooming part has got me stumped.
I'm not really much good at math, and I think this is where my problem comes in. I can get the image to zoom in and out to a certain level without leaving the confines of the viewport/stage, but the containing mc's registration point is in the top-left, and this is where the movie's scaling from.
I know what I need to do, I just can't seem to write the code to do it - I need the x and y position of the clip to move in sync with the scaling. For example, say there's a box in the middle of the screen at the smallest zoom level - when the user zooms in, I'd like the box to stay centred on the screen.
Any ideas? I'm at my wits' end!
[F5] Zooming & Image Dimension Limits
I have an image of the world in an 800 x 800 stage. The image is 800 x 800.
Code:
map._xscale = 1000;
map._yscale = 1000;
When the user clicks on the image it zooms by 1000% making the image 8000 x 8000. Unfortunately it is not zooming to this level.
Do I need to disect the image in to smaller pieces or is there a workaround?
Ta!
Zooming Into A Bitmap Image, Tracing. Help Please.
Hi,
I want to zoom into a movieclip with a bitmap image (500x375), but when zooming by increasing x and y scales (from 100% to 125%), the result is not very good.
When tracing the bitmap with an acceptable result, then the file size increases dramatically.
Any experience/suggestions ?
Stuck On Panning/Zooming An Image
It's been a long while since i've been around here, so I'm currently trying to get to grips with AS3, and what i'm trying to do is driving me nuts!
What I want to end up with is an image viewer where i can zoom in and out of the image and pan around it.
I've got so far, and have now got fairly stuck and i've googled for ages trying to find answers but don't seem to be able to find anything.
Problems:
- Zooming in on the centre of the viewing area
- Limiting the panning so you cant pull the images out of the viewing area
THE LINKS:
View Swf
Source Files
THE CODE:
Code:
package {
import flash.display.*;
import flash.events.*;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.net.URLRequest;
import flash.filters.BitmapFilterQuality;
import flash.filters.GlowFilter;
import flash.geom.Rectangle;
public class ImageViewer {
private var imgLoader:Loader;
private var container:Sprite = new Sprite();
private var frame:Sprite = new Sprite();
private var picMask:Sprite = new Sprite();
private var picTemp:Sprite = new Sprite();
private var picHolder:Sprite = new Sprite();
private var pic:Bitmap;
private var dragRect:Rectangle;
private var loadStatus_txt:TextField;
private var picWidth:int;
private var picHeight:int;
private var frameWidth:Number;
private var frameColor:Number;
private var initPicScale:*;
private var curPicScale:*;
private var btnZoomIn:myButton;
private var btnZoomOut:myButton;
/*var btnPanUp:myButton = new myButton(20,20,4,0xFFFFFF,0.7);
var btnPanDown:myButton = new myButton(20,20,4,0xFFFFFF,0.7);
var btnPanLeft:myButton = new myButton(20,20,4,0xFFFFFF,0.7);
var btnPanRight:myButton = new myButton(20,20,4,0xFFFFFF,0.7);*/
// The constructor function
public function ImageViewer ( sprite, w:int, h:int, frameWidth:Number, frameColor:Number) {
this.container = sprite;
this.picWidth = w;
this.picHeight = h;
this.frameWidth = frameWidth;
this.frameColor = frameColor;
buildViewer(w,h);
}
// The loadImage( ) method
public function loadImage (picURL:String) {
var picLdr:Loader = new Loader();
var picURLReq:URLRequest = new URLRequest(picURL);
picLdr.load(picURLReq);
picLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, imgLoaded);
function imgLoaded(event:Event):void {
trace('image loaded');
var pic:Bitmap = new Bitmap(event.target.content.bitmapData);
resizePic(pic);
}
}
private function buildViewer( w:int, h:int) {
createFrame(w,h);
createMask(w,h);
container.addChild(picHolder);
}
private function createFrame(w:int, h:int) {
frame.graphics.beginFill(frameColor);
frame.graphics.drawRect(0, 0, w, h );
var glow:GlowFilter = new GlowFilter();
glow.color = 0x666666;
glow.alpha = 0.8;
glow.blurX = 10;
glow.blurY = 10;
glow.quality = BitmapFilterQuality.MEDIUM;
frame.filters = [glow];
container.addChild(frame)
}
private function createMask(w,h) {
var maskW:int = (w-(2*frameWidth));
var maskH:int = (h-(2*frameWidth));
picMask.graphics.beginFill(0xff0000);
picMask.graphics.drawRect(frameWidth, frameWidth, maskW, maskH );
//var dragRect:Rectangle = new Rectangle(frameWidth,frameWidth,picWidth,picHeight);
}
private function resizePic(picture) {
picture.width=picWidth;
picture.scaleY=picture.scaleX;
initPicScale=1;
trace('initScale='+initPicScale)
curPicScale=initPicScale;
trace('curScale='+curPicScale);
picture.x=frameWidth;
picture.y=frameWidth;
picHolder.addChild(picture);
picHolder.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
picHolder.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
addDisplayItems()
}
private function addDisplayItems(){
container.addChild(picMask);
picHolder.mask=picMask;
}
private function createDragRect() {
var dragRect:Rectangle = new Rectangle(0,0,100,100);
}
// This function is called when the mouse button is pressed.
private function startDragging(event:MouseEvent):void {
createDragRect();
picHolder.startDrag(false, dragRect );
}
// This function is called when the mouse button is released.
private function stopDragging(event:MouseEvent):void {
picHolder.stopDrag();
}
public function createControls(size:int,padding:int,margin:int,zoom:Boolean,pan:Boolean){
var buttonSize:int = size;
var buttonMargin:int = padding;
var zoomX:Number = margin;
var zoomInY:Number = picHeight-margin-(buttonSize*2)-padding;
var zoomOutY:Number = picHeight-margin-buttonSize;
if(zoom){
addZoomControls(zoomX,zoomInY,zoomOutY,buttonSize);
}
}
private function addZoomControls(zoomX:int,zoomInY:int,zoomOutY:int,buttonSize:int) {
var btnZoomIn:myButton = new myButton(zoomX,zoomInY,buttonSize,buttonSize,4,0xffffff,0.7,true);
var btnZoomOut:myButton = new myButton(zoomX,zoomOutY,buttonSize,buttonSize,4,0xffffff,0.7,true);
container.addChild(btnZoomIn);
container.addChild(btnZoomOut);
btnZoomIn.addEventListener(MouseEvent.CLICK, zoomIn);
btnZoomOut.addEventListener(MouseEvent.CLICK, zoomOut);
}
private function zoomIn(event:MouseEvent){
trace('*************************************')
curPicScale = curPicScale+0.1
trace ('newScaler='+curPicScale);
trace('initX='+picHolder.x)
var centreX:Number = (frame.width/2)
trace('framecentreX='+frame.width/2)
trace('centreX='+centreX);
var centreY:Number = (frame.height/2)
var prevPointX:Number = (picMask.x-picHolder.x)+centreX
trace('prevPointX='+prevPointX);
var prevPointY:Number = (picMask.y-picHolder.y)+centreY
var newPointX:Number = prevPointX*curPicScale;
trace('newPointX='+newPointX)
var newPointY:Number = prevPointY*curPicScale;
var newWidth:Number = picHolder.width*curPicScale
trace('newWidth='+newWidth);
var newHeight:Number = picHolder.height*curPicScale
var difX:Number = newPointX-prevPointX;
trace('difX='+difX)
var difY:Number = newPointY-prevPointY;
var newX:Number = picHolder.x-difX;
trace('newX='+newX)
var newY:Number = picHolder.y-difY;
trace('newY='+newY)
picHolder.scaleX=curPicScale;
picHolder.scaleY=curPicScale;
picHolder.x=newX;
picHolder.y=newY;
trace('*************************************')
}
private function zoomOut(event:MouseEvent){
if(curPicScale>initPicScale){
curPicScale = (curPicScale-0.1)
trace ('newScale='+curPicScale);
if(curPicScale<1){
curPicScale=1
}
pic.scaleX=curPicScale;
pic.scaleY=curPicScale;
}
}
}
}
Please help if you can, I seem to have hit a brick wall with this - the maths on the zoom repositioning looks right to me, but it still veers off to the left!! and the bounds for the panning just don't seem to do anything! Argh!
Thanks in advance
Chris
Zooming Panned Image Question
Hello,
Its been driving me crazy and I can't seem to figure it out.
I have a pannable image that is masked by a smaller square. Everything works fine except for zooming. When the image is scaled, the viewed area shifts.
Does anyone know the calculation to keep the larger image centered inside the mask as it scales? Or is there any other solution?
Thanks for any help on this.
-e
Zooming A Selected Area Of An Image
I don't know whether this has been discussed before or not, What I want to do is I am loading one jpeg file into a movie clip and applied a predefined rectangle mask on it. I have a numeric stepper for zooming. Everything is working fine. Recently my user community want to add a new functionality to this - user clicks on the image displayed and drag the mouse to another location on the image, basically selecting a portion of the image loaded, then my action script zoomin that rectangular area(selected portion) such that the zoomed image is filled the mask so that user can see only the selected portion of the image.
I have been playing with MovieClips and I can't seem to figure them out.Any info that you could simplify for a newbie would be greatly appreciated.
Simple Flash Involving Zooming An Image
I've not yet used flash but am wanting to use it to make an enhanced visual guide for some images on my site.
I have standard sized images that are all 725x460. I'd like to have an enhanced guide that will launch flash and allow me to make that 725x460 image zoomable. To see an example of my interface go and click on any link here:
http://www.jeditemplearchives.com/otc/
Each image is 725x460. These are all resized images. My original images are much higher resolution. I would like to make an enhanced version that allows the viewer to open a similar flash interface that starts out at 725x460, but allows them to zoom in on the image to increase detail.
Thanks for any help! I'm a total newbie and have yet to make anything in flash, so any help is appreciated!
Zooming Specific Area Of Panned Image - Help
Hello,
I've been working on a virtual tour idea which uses a large image that is masked by a smaller square. Buttons or the mouse basically control the x and y coord.s of the large image allowing you to scroll and view it inside the smaller square.
My problem is, I want to be able to scale the larger image(sets of 10% up to maybe 250%) to zoom in, but as the image scales, the viewed area inside the mask shifts.
Does anyone know how to readjust the images x,y coords while zooming so that the area inside the mask remains in view? I'm thinking its a calculation based on the new height and width of the image as is scales, but I cant figure it out.
Any help on this would be greatly appreciated.
Thanks,
-E
Image Slight Zooming Effect, Resizing A Bitmp In A Tween..pixelated, Unsmooth..help
I'm trying to achieve this slight zooming effect with photos. Where over about 100-150 frames, an image ~550x270 is slightly transformed maybe about 5 or 10% bigger.
The problem is when it is played back it looks unsmooth and pixelated.
I imported the photos as about 50% quality jpegs from Photoshop.
Is this something that can be fixed? Please help, I'd really appreciate it.
Zooming In
I am trying to create a program that will allow me to zoom in on a diagram. I'd like to be able determine the location of the zoomed in area by where I click. Right now I'm adjusting the _height and _width of the movie but it's heading to the upper left hand corner. I'm putting this on an iPAQ and therefore I can't use the right click methods. What can I do?
Zooming
Ok i need some guidance please. I have a flash movie with 8 buttons and and an object ( lets call it a square) What i want to do is when the user clicks on a button i want the square to be zoomed in and stop so some content will be displayed. When the user clicks another button i need it to unzoom and rezoom to a different part of the square. What i cant get figure out is
1. After the first button is clicked it will zoom in, BUT how do i tell it to unzoom then resume to another part? Since each button zooms in to a differnt part of the square the unzoom will just be reverse of the zoom tween. So there are 8 different zooms and unzooms.
Im not sure if i made my problem cleared. Can anyone help?
Scott
Zooming
I have a problem: I want to zoom in and out a map with flash. How can i do this. I have done it with _xscale and _yscale but it does not work correctly. Can Anybody help me?
Zooming In......
What I am trying to do is a Christmas Card for my company. I have a snowman that comes onto the stage and I want to zoom in on his face and get rid of the some of the background. I was wondering if there is a way that I can zoom in on part of the stage and keep it part of my movie?
When I try and create a new image that makes a close up on the snowman's face, it kills the clarity of the image and would be a lot of work.
Any suggestions?
Zooming...
I'm sure most people have seen Flash movies with zooming.... example, an object gets bigger than returns to its original size....
Does anyone know how to do that....
Zooming
Hi all,
I'd like to zoom into an image which has many different layers, some starting in different places.
I'm using the scale tool to give the impression of zooming, however, I can't seem to get all the layers to scale at the same time. I've tried using 'select all' and multi frame editing, neither seems to work. How can I zoom in and then later on Pan around the image?
Thx in advance..
Matthew
Zooming In/out
Hi...to start things off, not only am I a Flash newbie, but also a forum newbie. Yep, I've never posted anything on a forum before...but I figured I'd give it a shake. I'm trying to create a movie in which the camera effect zoom is crucial...the most important instance of this is a scene in which an all-black background zooms out and actually becomes the eye of a stick figure. I can't find a tutorial on how to achieve this zoom-y effect, but I'd be much obliged to anyone who can give me any tips. Thanks ever so much.
-Alex Flash 5
Zooming
I noticed you can zoom in on the menu in flash... is there a way to access this thru Action Script?
the only other way I can think of implimenting zooming in my movie is to scale the movie clips (which I don't wanna do as this means LOTS more as for lots of other movie clips!)
I have a map movie clip, on that map I have duplicate movie clip pointers. If I were to scale the map the pointers need to stay in thier relative positions on the map movie clip.
Any one played with zooming?
Please help me obi-wan you are my only hope...
thanx Spyder
Zooming
I've noticed that some people zoom into certain objects in their movies, and I was wondering whether there was a way to zoom in like this or are they just enlargening the object to make it look like its beeing zoomed in to?
Zooming
is zooming in, just making the picture bigger with tween??
Zooming In And Out A Swf Using AS Or Anything
Hey I was just working on trying to zoom a flash movie using JS but cant seem to get it and it is driving me nuts any of you guys know how I can zoom in and out on a movie using action script. I know I asked 2 questions in a row please forgive me.
Zooming
I will let you know when it is up and running! It might take me a while to figure it out!!!
I may have some more questions for you if that's OK.
Thanks!!!!!
jenzee
Zooming In And Out
this is probably a beginner question but I have been unable in finding the answer so I was wondering if yall could help...
I am trying to make a movie where I am zoomed in on my subject and then zoom out to reveal the scenery ........how is this accomplished?
Zooming ?
what is the best way to zoom in /out the entire main stage?
i mean centered zoom in/out
i need a button that zoom in everything there is on the stage on press and zoom back out on release
can anybody help ??
thanks
ps i post this on the game forum too
i dont know if this is all right if double posting on 2 different forums is wrong please let me know
thanks
Zooming SWF's
Hello there..
Does anyone know any code which stops people right clicking on your swf.. and zooming in ???
thanks..
How Is This Done - Zooming Etc
Does anyone know how this site intro for the movie "The Hours" was made? www.thehoursmovie.com
It gives the appearance of a video, it zooms, fades to give the impression of motion. How do they do the zooming to closeup of the images? I really like the effect.
If anyone could help/advise - it would be great! I've searched the tutorials but can't find one that shows how to do this.
Thank you.
A Little Help With Zooming Please :)
I'm doing a little animation for my new site creamedgeezer.com, in the animation, can i make it so when you mouse over aquaman, it zooms up on his butt, for disturbing booty shaking action? any help would be much appreciated.
Thanks,
Jeff
Zooming In And Out
Anyone seen www.sofake.com? I've figured out how to zoom in like that, but what I'm having trouble with is zooming back out. How'd they do it?
Thanks,
Chris
Zooming
I am creating an interactive map in flash. I want to be able to zoom in, zoom out and basicly be able to have a user comfortably browse the map. The map is no larger than 4 total 600X800 screens if even that. What are some ideas for implememnting these controls? I have never done something like this but have a decent understanding of flash. I use Flash 5.
Zooming In
Well im in the process of making an awesome movie, but i have come to a halt for one reason, i'm not sure how to zoom in properly.
I no it should be just an easy thing like tweening the image to a larger size or somethin but heres my problem.
I have 4 layers in the scene, one is background, 2 are props and one is my person.
No im wanting to zoom in on my guys face so he can say something, so is there a way to enlarge all the layers at the same time to the same size
Zooming In, Out And Pan
can anyone please help coz ive been trying to figure out how to zoom in, out and pan on an object. visit this site so u could see what am trying to do http://www.customatix.com/static/cat...orfn_home.html
am trying to make something thats similar to this.
|