Smooth Out Zooming/scrolling Image That Jerks (CS4)?
Jun 6, 2009
Is there any way that i can smooth out images that zoom in/out with normal classic tween. they are so jittery it looks terrible. I even have a little bit of easing and frames per second set to 30.
View 5 Replies
Similar Posts:
Jun 5, 2009
I come across this again and again in flash. Using the default timeline based tweening (with the FPS set to 24)...is there any way of smoothing out the jerkiness? any AS i can add on frame 1 for example?
View 1 Replies
Nov 7, 2010
I'm making a side scrolling platformer and I wonder why image movement is so choppy, especially if velocities arent whole numbers? Images I'm using are: one 320*350, one 500*500 and few of 50*50 all in PNG format with alpha support and cached as bitmap. Framerate is 30FPS.
View 1 Replies
Sep 7, 2011
So I figured out how to make a zooming effect for my animation, but it isn't smooth. I have it set at 30 FPS. What can I do?
View 16 Replies
Feb 27, 2012
Basically I want to know if there is a way to go from a zoomed in version of something, and then seeing the whole image in another frame. (By pressing a button)
Let's say there's a tree, I would bascially like (upon pressing a button which I can do) to zoom out and see the whole scenery. Is there a way I can do this without actually changing the size of the image?
View 2 Replies
Feb 26, 2009
I have made a map which I have made scrollable across the stage using the keyboard arrow keys.
e.g:
PHP Code:
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_x=_x-4;
[Code]....
These on screen buttons allow the user to move the map every time they click however it would be more user friendly if these buttons continued to move the map on a hold down state until released or via rolling on/off.
View 1 Replies
Jun 12, 2009
Envrironment: Flash CS3, AS3 I have a horizontal image scrolling project that I am working on, and it works but is not super smooth, I would like it to be smoother when it scrolls, and realize that this is a function of pixels scrolled over time and the FPS of the document.
Right now I am moving the items 1 pixel at a time on a timer with delay of 8 to get it to scroll at the speed I want. I am moving it at 1 pixel in order to catch exactly when an object should wraparound to the beginning of the scroller to show up again. So I don't know that I can really change the number of pixels moved to more than 1 and still have the images spaced perfectly, which makes me think I need to increase or decrease the FPS and or the timer delay to make it scroll smoother. Right now it is at 30FPS and as mentioned the timer delay is 8. Small changes to the delay is not a problem.
This is one aspect of flash i don't fully understand. I would really like to know how to figure this out so I can apply it to future projects as well without doing trial and error to make it smooth. Can it be function, like a way to figure out I need to move a 120pixel picture 60 pixels in 2 seconds, what should my FPS be and the picture size and movement size and number of seconds can be variables?
View 7 Replies
Jul 31, 2010
I'm creating a website and I need to have a slideshow of scrolling pictures (not interactive to user) and I know how to do it with the old motion tweening but when I play the movie the scrolling pic is not smooth but choppy. I already played around with frames and frame rates; the image scrolls faster or slower but the choppines remains. Here is an example of what im looking to do: **Notice how the picture of the bed scrolls smoothly when the site loads. [URL]
I know that for this site they probably used the "ease" effect and that works when the image is gonna stay still at the end but for my movie the images are gonna be scrolling up,down,left,right in a loop. Can you guys tell me how can I do this without the movie being choppy? perhaps there's a way to do it with code.
View 1 Replies
Aug 24, 2009
below is a link to a super simple movie that I have of text scrolling/moving horizontally across the screen.The only issue I have is at the quality of the scroll/movement. it is inconsistently jerky, sometimes when it first starts getting on the screen and leaving the screen sometime all the time and sometimes when it leaves the screen.I have had this issue with other movies and scrolling things across the screen horizontally I had to increase the frame rate to 30 fps and extend the time line but it never really got to be a smooth scroll.
View 1 Replies
Mar 30, 2011
I have collection of images getting from xml. That images placed in tilelist, i need zooming while mouseover which one image.
View 2 Replies
Jan 26, 2010
I'm seeing everyone using the TileList in flex but can you create a smooth scrolling effect in AS3 swf?
Should I try to use Flex? (I'm developing for a deskstop app)
P.S. I have no IDEA what Flex is or how to use it...
View 5 Replies
Aug 24, 2010
I am trying to adjust the speed of the scroll box. It is a little too quick. I am not sure where to start.....I tried adjusting the button (_root.TextBox.scroll -= 1;) but it won't accept any smaller numbers. Can someone point me in the right direction?
View 1 Replies
Oct 6, 2011
I started known about FLASG a few day ago. I am very, very interesting about its.
My boss want i make a text display in bottom screen and scrolling from right to left (same as display on TV). But, i used to keyframe to solved this solution but they are slowly and not smooth. Now i want text display running smoother. I not good at Flash .I am programmer , C# is my programming language.
View 3 Replies
Jun 1, 2010
I'm just fine tuning my flash site and am trying to get my custom scroller to scroll my text smoothly.
Basically I am using scrollertext.scrollV [URL] to scroll my text inside a function but scrollV is an int and flash performs vertical scrolling per lines. My text is quite large in some areas and the scroller is very 'non smooth'. How else can I achieve a smooth scrolling effect (would be nice to scroll in pixel values not line values) ?
View 1 Replies
Jul 25, 2009
[URL]
Here is an example online, I am trying something similar but am not happy with what I am seeing, perhaps it is just on my side. The scrolling seems choppy/jagged. I have this same issue doing a similar scroll with lots of big images. Is there any way to get a nice smooth scroll at a decent speed with flash?
Ive ported my as2 code into as3 but am seeing the same results. I have used tweener and tweenlite, nothing Ive tried is helping. how to achieve a smooth scroll?
View 1 Replies
Aug 22, 2009
Here's the scenario... I have an .swf that is 1050px in height. On most browser's that is too tall. What I'd like to do, is use the browser's scroll bars to auto scroll to the bottom of the page during the loading sequence, and then scroll back up to the top. To do this, I'll need to make a javascript function call using ExternalInterface.call();
I found a suitable smooth scrolling javascript example on the internet. [URL] By clicking <a href> links, it scrolls to HTML anchors on the page. I figured that instead of clicking on the textual links like in that example, I could simulate the event by calling the event from flash. I'm just not sure how to do it exactly.
[Code]...
View 1 Replies
Apr 8, 2010
How can I make a smooth flash scrolling effect same like http:[url]..........
View 2 Replies
Jan 27, 2010
I have some code which moves back and forth through my menu so that it scrolls in relation to where the mouse is on teh screen. The problem is that I cant get it to scroll smoothly and is a little jerky... I want to ass maybe some smoothness or maybe a little lag to it so it just seems more smooth. I have pasted the main code I have so far below.. I am using AS3 at the moment.
[Code]...
View 1 Replies
Oct 2, 2011
I've made the kirupa simple scrollbar [URL] to scroll horizontal. This works just perfect but it is not smooth. My question to you is - how to make it smooth? I've got 4 MC's with the instance names content, mask, scroll_area and scroller.
My AS looks like this:
onClipEvent (load) {
_root.content_width = content._width;
_root.scroller_area_width = scroll_area._width;
scroller._width = _root.scroller_area_width/(content._width/scroll_area._width);
_root.scroller_width = scroller._width;
[Code] .....
View 1 Replies
Dec 25, 2003
I'd really like some feedback on how you create that smooth scrolling action on sites like electrongeek.net.
View 1 Replies
Mar 17, 2009
I am making a webTV player, and I have a combobox displaying the entries. When scrolling the combobox, the scrolling jumps between the entries. I would like to have it scroll though the entries smoothly and not jump.
View 1 Replies
Jul 22, 2004
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.
View 2 Replies
Jan 7, 2009
I have an image that is loaded into a scrollpane, which works fine. I have two buttons on the stage that I want the user to be able to click on in order to zoom in or out of the image that is loaded into the scrollpane. I can't seem to get these zoom buttons to work on the movieClip with the image that is loaded into the scrollpane.
Lastly, I don't know if this makes a difference, but this swf file is loaded upon release of another button on the root timeline of another swf.
I tried attaching a simplified version of this file to this message but even zipped I cant get it lower than 380kb. I can email it to anyone if they are interested.
View 1 Replies
Feb 7, 2008
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. I'm trying to add zoom:
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.
View 2 Replies
Sep 30, 2008
I have loaded an image from a particular site using loader..and added this loader in a Movieclip.. I want to zoom and pan theimage.. How to zoom particular area of a movieclip?
View 6 Replies
Jul 26, 2011
I have a photo gallery. All the photos are displayed as thumbnails. When a user clicks on a thumbnail, the preview will be displayed in a canvas with full size. Now, I want to zoom the displayed image as much as possible.
View 1 Replies
Jan 16, 2009
I have this .fla that loads and xml file along with several other classes. This purpose of this file is to zoom content. Whenever you use your cursor to zoom, it goes to the exact location where your mouse pointer is. My problem is --it only works fine when the image is 200px by 200px or less. The image that I wanna load will be at least 500 by 500. I tweaked the settings but the zoom zooms too slow or too fast. I think the image size conflicts with the zoom.
here is the code in .fla
--------------------------------------------
zoomer_mc.data = "prod1.xml";
[code].....
View 9 Replies
Jul 16, 2009
What ways exist to preserve the image quality after zooming (in or out)?
View 2 Replies
Aug 20, 2009
've got an image slideshow that dynamically loads images from an XML file, and it works great.It loads an image, and fades into the next one, no problem.But I want the image loaded to be zoomed in, and slowly zoom out, while still fading to the next image when it gets to a certain point.
View 0 Replies
Jan 24, 2003
I want to zoom in and out on an image (it's actually a thumbnale which pops up). Or if you want, to have a small image 'grow' to a larger formatI tried it with scaling + tween, but it is hardly a smooth transition.
View 11 Replies