Scrolling problems (jumps & doesn't continue)

I am totally clueless on how to fix this....
http://www.fournineteen.com/rockwall.fournineteen.com/Images/scroll.swf
if you let it scroll left to right, you will notice it jumps
if you let it scroll right to left, it won't loop and ends.
there are 2 (identical) button groups in the movie file that
scrolls. the movie file that scrolls is 1084.8
what i have for the script is
onClipEvent (enterFrame) {
// if button down, accelerate the clips
if (_root.accelerate == 1) {
if (_root.navCurrentVelocity<_root.navMaxVelocity) {
_root.navCurrentVelocity++;
// if button release, decelerate the clips
if (_root.accelerate == -1) {
if (_root.navCurrentVelocity>1) {
_root.navCurrentVelocity--;
if (_root.navCurrentVelocity == 1) {
root.accelerate = 0;
// move the movie clip, wrapping if necessary
if (_root.scrollRight == true) {
if (_root.navbar_mc._x<=-419.3) {
_root.navbar_mc._x = _root.navbar_mc._x+1084.8;
_root.navbar_mc._x =
_root.navbar_mc._x-_root.navCurrentVelocity;
if (_root.scrollLeft == true) {
if (_root.navbar_mc._x>=600) {
_root.navbar_mc._x = _root.navbar_mc._x-1084.8;
_root.navbar_mc._x =
_root.navbar_mc._x+_root.navCurrentVelocity;
if you can help for free, great - if i need to pay you for
your time, please email me and let me know how much (girlnamedanne
at gmail dot com) - I just need this to work!!! I can also send you
the fla file. i am more of a designer than scripter, so that's why
i'm having problems...
thanks...

It has no sim card or any sd cards when I try to boot it. To no avail, doesn't work. But thanks for the suggestion.

Similar Messages

  • When playing my i-tunes library through my hi-fi via Airport Express, how can I get i-tunes to play a single album and then stop, without continuing on through my entire library. It's a problem that doesn't occur when I'm listening through my i-pod.

    When playing my i-tunes library through my hi-fi via Airport Express, how can I get i-Tunes to play a single album and then stop, without continuing on through my entire library? It's a problem that doesn't occur when listening on my i-pod.

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

  • After installing the lastest upgrade, the scroll arrows don't continuously scroll but jump just two songs at a time.  Any solutions?

    After installing the latest upgrade, the scroll arrows don't continuously scroll but jump just two songs at a time.  Any solutions?

    Try a reboot. If you need help as to how to do this, utube will be helpfull.

  • Vertical Scrolling problem in Safari

    I'm currently having an odd vertical scrolling problem in Safari.  This issue is not reproduced in Chrome or Firefox.
    I've been able to reproduce this issue doing something very simple:
    I have a browser wide rectangle with a solid color.
    Beneath that I have a browser wide photo.  (Rectangle set to browser edges and then fit to fill with photo.)
    And beneath that I have another browser wide rectangle with a solid color.
    Then I scroll.
    Once the photo (the middle element) reaches the top of the screen I have shut the scrolling off so the photo will stay static. (Initial motion 1 / Final motion 0 set in the "Fill/Scroll" tab - and the key position is set so it stops at the top of the browser.)  As expected, the lowest box continues to scroll upwards and cover the static photo.
    This very simple effect is flawless in Preview mode, Chrome, and Firefox.
    Yet in Safari, the photo, once it reaches its resting spot, does stay static, but seems to jump and jitter all over the place while I continue scrolling and the below content covers it.  (In the other browsers it's super solid like a real static background.)
    I've read there are some parallax scrolling bugs in Safari Mavericks.  But I'm still in an older operating system using 10.8.5 and Safari 6.0.5.
    Any suggestions or work arounds on how to correct this? (Again, I'm controlling the scroll using the scroll tab found with "Fill". Should I also be using the one found under Scroll Effects?  What the best one to use? Although it does work in the other browsers… so…  maybe I'm not doing anything wrong and this really is a Safari problem.)
    Thanks you.

    Hi
    Please share the site url, I will have a look.
    Thanks,
    Sanjit

  • Using the mouse wheel to scroll, now jumps a few albums at a time unlike before

    help!  Using the mouse wheel to scroll, now jumps a few albums at a time unlike before ><
    In the past I was just able to go into the mouse control settings in control panel and reduce wheel scrolling to 1 page at a time.  Now i'm not able to scroll one album at a time anymore, even though my mouse control panel is still set to scroll at one page at a time.  Its skipping two albums ahead now and I can't pin point to the album I want now unless if I click on it.  I haven't used ituens in awhile so it must be something new on the last 2 updates, I don't see anything in the perference menu.
    thx

    I can't use the keyboard to scroll. I need to keep my hand on the mouse, otherwise I'd never get anything done. Since I have no problem getting Firefox to scroll one page at a time, and I'm constantly jumping between 3 browsers, it would be nice to be able to scroll a full page at a time in Safari, just like I can in Firefox. Thanks.

  • Scrolling problem with UIDatePicker

    Hi,
    I have implemented UIDatePicker from UICatalog sample but i could not scroll on PickerView. I have to touch on record one by one for scrolling and it doesn't give me smooth scroll. I have added this picker view on view only.
    Following is the my code,
    datePickerView = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 265, 320, 400)];
    datePickerView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
    datePickerView.datePickerMode = UIDatePickerModeDate;
    datePickerView.userInteractionEnabled = YES;
    datePickerView.maximumDate = [NSDate date];
    [datePickerView addTarget:self action:@selector(datePickerValueChanged:) forControlEvents:UIControlEventValueChanged];
    datePickerView.hidden = YES;
    [self.view addSubview:datePickerView];
    Do you what is the problem.

    I'm reposting this from another thread I replied to:
    Just hold the mouse upside down and firmly press and scroll the ball for a few times. There's gunk in the sensors (dead skin cells, etc.) and it needs to be cleared — remember the old mice with the rubber ball? Well it the same except the ball is now on top! Next, I take a scrap of paper, fold it in half, and run it along between the ball and the hole to scoop up the loosened gunk. Short of taking the mouse apart to clean it, this is the easiest way to get the scroll ball working properly.
    Hope this works for you.

  • Persistent Scrolling Problem

    I have a two-finger scrolling problem with my 5- day- old Macbook (10.5, Firefox latest version). It was suggested in this forum that I turn off Horizontal scrolling. I did that, in fact I think I tried every combination of settings on the
    Keyboard & Mouse page, but the scrolling is still erratic. It jumps and stalls and
    then (occasionally) works. This happens on line or in documents. I wish I could determine if this is a software or a hardware problem. If it is hardware I need to return this unit real quick. I've been everywhere on the net looking for a software fix or update, but all I have found are add ons that will probably lead to more problems. I don't want to go through the aggravation of a return if I can help it.
    I'd appreciate any suggestions. Thanks Bill
    Now the cursor is acting funny! I can't fix these lines above.

    ok, dude, dont treat my reply as answer, but im just suggesting..why dun u plug in a normal mouse for gaming anyway?
    1)clicking a lot kills the batteries, and also wear out the clicking mechanism.
    2)the scrolling is too sensitive on windows (my exp.) and it switches the weapon unexpectedly all the time (left 4 dead 2)
    3)as u said, its windows! mac hates PC, just think about it, they intentionally hold up the start up time for windows on boot camp, so what quality do u expect with all the mac hardware on WINDOWS??
    I personally plug in a different set of keyboard and mouse to play games on bootcamp, cos the keys are still confusing for me, and USB HIDs dont need batteries, be green!

  • Code View Scroll Bar Jumps + High Processor usage

    In Code View, if you click at the bottom of the page -if the vertical scroll bar is present- the scroll bar jumps one or two lines up.
    I know about another bug i.e Dw uses 15 to 30% of the processor at all times, I hope it'll get fixed soon or I'll have to find an alternative.
    Lemme know if you know of any solutions.

    Windows 8 RP Build 8400 -it happened on Windows 7 as well.
    Dreamweaver Version 12.0.1 Build 5842 -I guess it's correct, I installed an update in the hopes of having this problem fixed but no luck yet.

  • When loading video or tv shows it is taking as long as 14 hours plus - if I leave the loading screen it doesn't continue to load? So you have to wait without leaving the screen for 14 hours?

    When loading video or tv shows it is taking as long as 14 hours plus - if I leave the loading screen it doesn't continue to load? So you have to wait without leaving the screen for 14 hours? Unfortunately - I've been reading that this lengthy download problem is quite common - although I thought I saw where someone had loaded videos the day before and then had them to watch later. So, my first rental - I downloaded it overnight - then we go to watch it tonight and it proceeds to start loading again...saying it will be ready in 14 hours and 21 minutes!!! Am I doing something wrong here? If anyone has advice - I would greatly appreciate it. This is the first apple product that I am disappointed with

    When loading video or tv shows it is taking as long as 14 hours plus - if I leave the loading screen it doesn't continue to load? So you have to wait without leaving the screen for 14 hours? Unfortunately - I've been reading that this lengthy download problem is quite common - although I thought I saw where someone had loaded videos the day before and then had them to watch later. So, my first rental - I downloaded it overnight - then we go to watch it tonight and it proceeds to start loading again...saying it will be ready in 14 hours and 21 minutes!!! Am I doing something wrong here? If anyone has advice - I would greatly appreciate it. This is the first apple product that I am disappointed with

  • Mouse scrolling problem

    My iMac is around two years old, and I'm on my third mouse. Why? Because of the scrolling ball. The present mouse scrolls in all directions except down. But previous mouses have stopped scrolling in more than one direction. I have read articles (including the stuff from Apple Support), and I have, I think, tried just about everything (except take it apart, as one article instructed). The mice work fine for a while--then come the scrolling problems. I've tried rubbing the ball (mouse upside down) vigorously on a lint-free cloth, and I regularly (when problems inevitably arise) clean the ball with alcohol and a Q-tip. The latter does get the ball pretty clean, and it works for a while; but eventually even this doesn't correct the scrolling problem (as is the case right now). So, unless someone can give me a suggestion that might work (with Mighty Mouse), can anyone recommend a non-Apple mouse--something not too expensive but of good quality?
    Thank you,
    Carl Kalwaitis

    Hi Carl, I used mice (Mighty included) but always went back to the trackball. You don't move your wrist and it is very precise. I have had the same trackball for three years and my Mighty Mouse (which came with my new iMac) is still in it's original packaging. I have a Logitech Marble Mouse. It has all the scrolling and other functions that the MM has. Give it a try and save yourself some exasperation.
    M.

  • I have a macbook pro mc700, And the scrolling lags or doesn't respond at times. What can I do to fix it?

    I have a macbook pro mc700, And the scrolling lags or doesn't respond at times. What can I do to fix it?

    There is excessive swapping of data between physical memory and virtual memory.
    That can happen for two reasons:
    You have a long-running process with a memory leak (i.e., a bug), or
    You don't have enough memory installed for your usage pattern.
    Tracking down a memory leak can be difficult, and it may come down to a process of elimination.
    In the Activity Monitor application, select All Processes from the menu in the toolbar, if not already selected. Click the heading of the  Real Mem column in the process table twice to sort the table with the highest value at the top. If you don't see that column, select
    View ▹ Columns ▹ Real Memory
    from the menu bar.
    If one process (excluding "kernel_task") is using much more memory than all the others, that could be an indication of a leak. A better indication would be a process that continually grabs more and more real memory over time without ever releasing it. Here is an example of how it's done.
    The process named "Safari Web Content" renders web pages for Safari and other applications. It uses a lot of memory and may leak if certain Safari extensions or third-party web plugins are installed. Consider it a prime suspect.
    If you don't have an obvious memory leak, your options are to install more memory (if possible) or to run fewer programs simultaneously.
    The next suggestion is only for users familiar with the shell. For a more precise, but potentially misleading, test, run the following command: 
    sudo leaks -nocontext -nostacks process | grep total
    where process is the name of a process you suspect of leaking memory. Almost every process will leak some memory; the question is how much, and especially how much the leak increases with time. I can’t be more specific. See the leaks(1) man page and the Apple developer documentation for details.

  • HT6162 IOS 7.1 creates scrolling problem?

    Upgraded my UK iPhone 5S 64GB to ios 7.1 yesterday. I have been facing page scrolling problems in all applications (Bloomberg, BBC, Safari, FT, LinkedIn, FaceBook...all applications). The problem is easily reproduced by keeping your finger on the screen when the page to scroll is displayed and moving the finger slowly to scroll the page. The page jumps in direction opposite to the expected.

    Hey, I have an iPhone 5 64Gb just updated to iOS 7.1 (11D167) . Various apps all have the same scroll problem. It's amost like 1.5 cm from the the bottom of my screen, an invisable line across the phone where swiping across up or down causes the the normal smooth motion to be jumpy. This has only just happened after the latest iOS update. I have also noticed touch senstivity issues when using the keyboard in some older apps causing key strokes to be missed or even double pressed when only pressing once, and number keys to not work also. My current work around is to type the txt or numbers into notes app, then cut or copy the txt or numbers into the app i'm  using. My other work around for the scroll issue, is to use asistive touch and create a scroll gesture.
    Hope there is a fix for this soon. I'm not totally convinced this is a hardware issue. it's too coincidental these issues just happend to occur after the latest update. Gone through the normal power cycle, soft reboot holding home button and power button for 10 secs, but makes no difference.
    I've turned back on the' automatically send' diagnostics & usage setting in general settings hoping this will contribute to a fix.

  • Still the same issue: Scrolling problem in itunes w/ dual screen setup

    Hey there,
    I am getting really ****** here. For 2 months this problem has been bugging me. It seems to randomly appear and disappear.
    Just have a look what is happening here: http://www.youtube.com/watch?v=N2m4G6c2Tqo
    I basically tried everything.
    1.Reinstalled Windows from scratch twice!
    2 Reinstalled Itunes a couple of times - clean install - tried different versions. Yea, got the latest one now.
    3. Tried different VGA drivers. Got the latest Intel driver installed.
    The problem has been gone for a couple of weeks now ever since I uninstalled a Windows update called U2711 Dell Display driver (The U2711 is my current LCD). That was just a 80KB file that messed Itunes up.
    Well, I believed I found the problem (hail system restore) but nope. Today it started happening again. I even have Windows Update deactivated for that reason so no changes have been made to the system in the last couple of days! It worked fine yesterday.
    So again: Same scrolling problem. And it only happens on my second large 27" screen. On the notebook screen it works just fine.
    Guys, I really need help. I'm about to curse Apple and Microsoft at the same time.
    Cheers
    K

    Since I am that furstated I started trying really unorthodox methods to resolve the problem.
    I just started Itunes in compatibilty mode (Windows XP SP3) and for now it seems to be working without that annoying bug!
    Anybody know what that means?!

  • Does anyone has the same scrolling problem? My macbook air 13''(2010) running lion, when files in a folder arranged by kind, every scrolling paused for a second..?

    does anyone has the same scrolling problem? My macbook air 13''(2010) running lion, when files in a folder arranged by kind, every scrolling paused for a second..?

    does anyone has the same scrolling problem? My macbook air 13''(2010) running lion, when files in a folder arranged by kind, every scrolling paused for a second..?

  • Scroll bar jumps around

    I doubt there is a solution... 5 versions in, but I'm scrolling to the bottom of 2000 images -- I let go of the cursor and the scroll bar jumps up to the top near image 100. Ongoing issue. thanks.

    I let go of the cursor and the scroll bar jumps up to the top near image 100. Ongoing issue. thanks.
    When loading files in Bridge it starts to cache and keeps the focus on the selected file. Therefor scrolling without selecting the image below will mean the preview shows the first selected file and when rebuilding the thumbs in the content window it automatically puts the matching thumb in view. This is as designed.
    However when there is no activity at all (importing and caching is done and the activity bar shows no action) it should work as expected. It also does so on my system

Maybe you are looking for