Need a "stop scroll" on my ferris wheel?

Hi there!
Can any one suggest how to stop the ferris wheel when the
users mouse is off the area of flash content in the browser?
Here is teh FLA file and the link to the page
http://www.totalamber.com/test.html
http://www.totalamber.com/flash/homepage.fla
Also when pc users in ie first view it, it asks them to click
to activate can anyone explain why?
Thanks,
Neil

Aha, thank you.
Sorry did not know the link was not working, What a duffus!
The link should now work and i will search for the control
activation box in Windows.
Thanks again,
Neil

Similar Messages

  • I have an optical mouse that came with my Mac Pro plugged into the USB port on the keyboard. After a year of working normally, the trackball all of a sudden stopped scrolling down. It scrolls up just fine, but not down. Any thoughts?

    I have an optical mouse that came with my Mac Pro, the only thing plugged into the USB port on the keyboard. After a year of working normally, the trackball all of a sudden stopped scrolling down. It scrolls up just fine, but not down. Any thoughts?

    Well
    I tried all of the suggestions, sort of. I did not have alcohol wipes, but I did take alcohol and pour some ona white paper towel and then rolled the mouse touch ball aroound and that finally cleared up the problem.  Just inverting it on paper did not do the reick, it needed some help with the alcohol.  Of course the probelm is the debris that gets inside and it really needs to come out.
    This is a huge problem for RIM devices users too.

  • Geturl not working of ferris wheel effect

    Hi,
    Thanks to Rob i have managed to get the effect i want and he
    has kindly given me the code to add a geturl to each of the images
    on the ferris wheel effect. The only thing is that when i view it
    it does not work so maybe i am missing somthing, see what you guys
    think:
    // create an onRelease function for each of the movieClips in
    the
    //objectsInScene array...
    for (i in objectsInScene) {
    objectsInScene.onRelease = function() {
    useLink(this);
    // this function will figure out which pane was clicked on
    and execute a
    //getURL for a specific URL...
    //substitute your own urls...
    function useLink(thisOne) {
    switch (thisOne) {
    case theScene.pane :
    getURL("firstURL.html", "_blank");
    break;
    case theScene.pane1 :
    getURL("secondURL.html", "_blank");
    break;
    case theScene.pane2 :
    getURL("thirdURL.html", "_blank");
    break;
    case theScene.pane3 :
    getURL("fourthURL.html", "_blank");
    break;
    case theScene.pane4 :
    getURL("fifthURL.html", "_blank");
    break;
    case theScene.pane5 :
    getURL("sixthURL.html", "_blank");
    break;
    case theScene.pane6 :
    getURL("seventhURL.html", "_blank");
    break;
    case theScene.pane7 :
    getURL("eighthURL.html", "_blank");
    break;
    case theScene.pane8 :
    getURL("ninthURL.html", "_blank");
    break;
    case theScene.pan9 :
    getURL("tenthURL.html", "_blank");
    break;
    case theScene.pane10 :
    getURL("eleventhURL.html", "_blank");
    break;
    case theScene.pane11 :
    getURL("twelvthURL.html", "_blank");
    break;
    case theScene.pane12 :
    getURL("thirteenthURL.html", "_blank");
    break;
    break;
    case theScene.pane13 :
    getURL("fourteenthURL.html", "_blank");
    break;
    case theScene.pane14 :
    getURL("fifteenthURL.html", "_blank");
    break;
    default :
    trace ("uh oh");
    Any suggestions please post.
    Thanks,
    Neil

    This is all of my code:
    // create a scene movieclip to contain all 3D elements
    // and center it on the screen.
    this.createEmptyMovieClip("theScene", 1);
    theScene._x = 290;
    theScene._y = 220;
    // now we'r going to create an array to keep track of all the
    // objects in the scene. That way, to position all the
    objects
    // you just need to loop through this array.
    objectsInScene = new Array();
    var paneArray:Array = ["pane", "pane1", "pane2", "pane3",
    "pane4", "pane5", "pane6", "pane7", "pane8", "pane9", "pane10",
    "pane11", "pane12", "pane13", "pane14"];
    var paneArray:Array ;
    paneArray[0] = "pane";
    paneArray[1] = "pane1";
    paneArray[2] = "pane2";
    paneArray[3] = "pane3";
    paneArray[4] = "pane4";
    paneArray[5] = "pane5";
    paneArray[6] = "pane6";
    paneArray[7] = "pane7";
    paneArray[8] = "pane8";
    paneArray[9] = "pane9";
    paneArray[10] = "pane10";
    paneArray[11] = "pane11";
    paneArray[12] = "pane12";
    paneArray[13] = "pane13";
    paneArray[14] = "pane14";
    // no camera, but a rotation will be needed to keep track of
    the
    // spinning involved (though its the same as the camera)
    spin = 0;
    // focal length to determine perspective scaling
    focalLength = 250;
    // the function for controling the position of a friend
    displayPane = function(){
    var angle = this.angle - spin;
    var x = Math.cos(angle)*this.radius;
    var z = Math.sin(angle)*this.radius;
    var y = this.y;
    var scaleRatio = focalLength/(focalLength + z);
    this._x = x * scaleRatio;
    this._y = y * scaleRatio;
    this._xscale = this._yscale = 40 * scaleRatio;
    // on top of the normal scaling, also squish the
    // _xscale based on where in the rotation the pane is
    // since you would be looking at its side when at a z
    // of 0, it would be at its thinnest which would be
    // 0 since its a completely flat pane. So for that,
    // we can use the trig function of z (sin) to squish the
    // _xscale based on its position in z.
    this.swapDepths(Math.round(-z));
    // attach each pane in a loop and arrange them in a
    // circle based on the circumference of the circle
    // divided into steps
    angleStep = 2*Math.PI/15;
    for (i=0; i<15; i++){
    attachedObj = theScene.attachMovie(paneArray
    , "pane"+i, i);
    attachedObj.angle = angleStep * i;
    attachedObj.radius = 160;
    attachedObj.x = Math.cos(attachedObj.angle) *
    attachedObj.radius;
    attachedObj.z = Math.sin(attachedObj.angle) *
    attachedObj.radius;
    attachedObj.y = 30;
    attachedObj.display = displayPane;
    objectsInScene.push(attachedObj);
    panCamera = function(){
    // rotate camera based on the position of the mouse
    spin += this._xmouse/4000;
    // Now, with the camera spun, you need to perform the
    rotation
    // of the camera's position to everything else in the scene
    for (var i=0; i<objectsInScene.length; i++){
    objectsInScene.display();
    // make each figure run backAndForth every frame
    theScene.onEnterFrame = panCamera;
    // create an onRelease function for each of the movieClips in
    the
    //objectsInScene array...
    for (i in objectsInScene) {
    objectsInScene.onRelease = function() {
    useLink(this);
    // this function will figure out which pane was clicked on
    and execute a
    //getURL for a specific URL...
    //substitute your own urls...
    function useLink(thisOne) {
    switch (thisOne) {
    case theScene.pane :
    getURL("
    http://www.totalamber.com/default.htm",
    "_blank");
    break;
    case theScene.pane1 :
    getURL("secondURL.html", "_blank");
    break;
    case theScene.pane2 :
    getURL("thirdURL.html", "_blank");
    break;
    case theScene.pane3 :
    getURL("fourthURL.html", "_blank");
    break;
    case theScene.pane4 :
    getURL("fifthURL.html", "_blank");
    break;
    case theScene.pane5 :
    getURL("sixthURL.html", "_blank");
    break;
    case theScene.pane6 :
    getURL("seventhURL.html", "_blank");
    break;
    case theScene.pane7 :
    getURL("eighthURL.html", "_blank");
    break;
    case theScene.pane8 :
    getURL("ninthURL.html", "_blank");
    break;
    case theScene.pan9 :
    getURL("tenthURL.html", "_blank");
    break;
    case theScene.pane10 :
    getURL("eleventhURL.html", "_blank");
    break;
    case theScene.pane11 :
    getURL("twelvthURL.html", "_blank");
    break;
    case theScene.pane12 :
    getURL("thirteenthURL.html", "_blank");
    break;
    break;
    case theScene.pane13 :
    getURL("fourteenthURL.html", "_blank");
    break;
    case theScene.pane14 :
    getURL("fifteenthURL.html", "_blank");
    break;
    default :
    trace ("uh oh");
    }

  • Mouse scroll bar stopped scrolling

    Hi,
    My scroll bar has stopped scrolling. How do I get it to work again?
    Thanks in advance.

    Hi moreton, Welcome to Apple's Users Help Users Forums.
    Do a forum search on clean MM or Mighty Mouse.
    In essence dampen clothe with water or alcohol and press down wheel and scrub rather vigorously in all directions.

  • Safari stops scrolling pages

    Since recently upgrading safari and of course the OS to Mountain LIon, I have discovered a quite serious bug.
    Randomly safari stops scrolling pages. This has so far happened 3 times in the last week or so. You can open/close/view pages, but even though the scrollbar is present it won't scroll. I cannot use my mouse wheel, or click in the scrollbar or use the space bar, page down key or even search the web page to force it move down.
    The site I visit doesn't initiate the issue, it can be any website. The issue appears to be quite random, the only way to fix the issues is to close the browser and start it again.
    I have currently 2 extensions running in Safari, Ultimate statusbar and Awesome screen grab., I am going to proceed to remove both to test if this fixes the problem.
    However this is very frustrating as this has never been a problem in other version of Safari to date. I had to complete this question in Google Chrome, as of course I couldn't scroll to tee bottom of the page in safari!

    Try resetting and clearing the cache more often.
    From your Safari menu bar click Safari > Reset Safari
    Select:  Clear History  (also empties the cache)
    Deselect the remaining boxes then click Reset.
    If that didn't help, open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy / paste:   ~/Library/Caches/com.apple.Safari
    Click Go then move the Cache.db file from the com.apple.Safari folder to the Trash.
    Quit and relaunch Safari to test.

  • Magic mouse stopped scrolling after system update

    Does anyone know why the mouse would stop scrolling after latest OS X update?
    Currently using V 10.8.5

    Hello Kaulfurst,
    While the article states that it is for Lion, this applies for Mountain Lion, as well. You may need to check that scrolling is enabled in the Accessibility pane of System Preferences.
    Magic Trackpad and Magic Mouse: How to adjust double-click and scrolling speed in Lion
    http://support.apple.com/kb/HT4930
    Cheers,
    Allen

  • Unauthorized frequent payments need to stop asap

    Hi Skype team.
    It seems impossible to get in contact with any living person so as a result I'm posting in here where it looks as though many people are struggling with the same issue as me. I have been charged every three months for something that I HAVE NOT authorized. All though I purchased ONE three month package I did not sign on to paying for it every three months. I have not used it in this time and have spent almost 100$. THIS NEEDS TO STOP. I cannot find anywhere to cancel this payment but yet I still get charged for it. I would like to know how I can stop this payment and I would like to be riembursed for the money I've lost. This is absolutely ridiculous and unacceptable. 
    I purchased a three month subscription on August 24, 2012 for $46.87 and since then I have been charged on three unauthorized accounts. 
    May 21, 2013
    [removed for privacy]
    Unlimited World 3 months
    PayPal
    C$ 39.87
    Delivered
    February 21, 2013
    [removed for privacy]
    Unlimited World 3 months
    PayPal
    C$ 39.87
    Delivered
    November 21, 2012
    [removed for privacy]
    Unlimited World 3 months
    PayPal
    C$ 39.87
    Delivered

    Hi, EmilyBoucher,
    I wrote a rather lengthy reply to your other post, so I will abbreviate my reply here.
    First things, first: Please ensure that the subscription is cancelled; you can do this from your account where you sign on to administrate your password and payment methods.  If you experience any challenges in doing this,  below is a slightly annotated version of the instruction to file your request with Skype Customer Service.  Hope this serves as a useful road map!
    Best regards,
    Elaine
    How can I contact Skype Customer Service?
    Skype offers help and support through:
    The Skype Support website
    The Skype Community
    The Heartbeat blog
    Skype blogs
    Email and Live chat (for eligible customers)
    To get help with the issue you’re experiencing:
    Go to the Support request page.  You will be asked to sign on to the Skype website at this step.
    Select the topic you need help with and the problem you’re experiencing. ... or the closest topic which matches your enquiry.  Some information that might help with your problem is displayed.  These are the FAQ articles pulled from the library for your review.
    If you still feel that the information doesn’t help, scroll down to the bottom of the website page and click the Continue support request button at the bottom of the screen.  Please note that the graphic, below, is for illustration purposes only, and is not a hyperlink to contact Skype Customer Service.
    Select your contact method. (We recommend that you check our Skype Community first. No need to circle back here, as the Community is where you started!)
    If you chose email, enter your details, describe your problem, and then click Send support request. We'll get back to you as soon as we can.
    We don’t currently provide telephone support.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Mighty Mouse Stops Scrolling

    I have a Mighty Mouse which suddenly stops scrolling up (and sometimes down). It works great some of the time.
    Anyone else have this problem? Nothing similar popped up when I searched.

    Have a look under 'More like this' to the right on this page!
    It probably needs a clean:
    How to really clean your Mighty Mouse (with caution!):
    http://support.apple.com/kb/HT3226?viewlocale=en_US
    and:
    http://web.mac.com/karelgil/iWeb/MacWebSite/MightyMEng.html
    http://www.linklink.co.uk/apple-computers/cleaning-inside-and-dismantling-the-ap ple-mighty-mouse/

  • Mighty Mouse stopped scrolling up

    Ahh it worked OK for a while, disconnecting and lagging every other day. But now my scroll button has just stopped scrolling up. I've tried cleaning it. I've tried a PRAM reset. I've tried trashing the preference file followed by a PRAM reset.
    Still doesn't work.
    Incidentally, when I tried trashing the preference file, the system didn't recreate a new one.
    If anyone know how to ACTUALLY fix this problem then I'M ALL EARS!
    Next piece of technology I buy for sure is NOT going to be apple...

    OK it's working again. I decided to try scrubbing the crit out of it with a damp cloth, and it seems to have dislodged a piece of something that was the root of the problem.
    Why didn't they just put in a scroll wheel it would have been so much easier!

  • Detect when user stops scrolling

    I have an application where a user scrolls using scrolldrags, but this always ends up in the user clicking where they stopped scrolling, so I need to stop this. My idea was that I have a variable "changeable" on and off depending on whether the user is scrolling or not, so when they stop scrolling, the objects become changeable again, how do I detect when the user stops scrolling with scrolldrag using the ScrollPane object?

    add a mouseup listener when scrolling begins and apply a stopPropagation() or stopImmediatePropagation() method to that event and remove the listener in the mouseup listener function .

  • My iPhone 5 won't stop scrolling through songs and I can't stop it please help !! :(

    My iPhone 5 won't stop scrolling through songs and I can't stop it please help !! :(

    settings - general - usuage - music - delete.   Then do a reset, hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    Then sync the music back via iTunes.

  • I have multiple devices with the same cerificate, once I have a an exception for one, FF denys access to the others. I cannot change the certificates, I need to stop FF blocking them.

    I have multiple devices with the same cerificate, once I have an exception for one, FF denys access to the others. I cannot change the certificates, I need to stop FF blocking them.
    == This happened ==
    Every time Firefox opened
    == I attempt to access a web front end on an IBM SVC device

    You can't use the same certificate more than once.
    See also [[Certificate contains the same serial number as another certificate]]

  • So i was updating my ipod touch (4g) to ios 6 and i needed to stop it in the middle of updating. so i held the home button and the lock button. it turned white and i tried charging it when it died but it went back to usual please help!

    so i was updating my ipod touch (4g) to ios 6 and i needed to stop it in the middle of updating. so i held the home button and the lock button at the same time for it to restart. It started turning on with the apple symbol and then the screen went white. I kept trying to do the same thing but it wouldnt work. Eace time i did that the screen was a different color. I was yellow/white at one point, blue at another time and sometimes the color behind the apple symbol. It got really HOT and i just let it die. When it was dead i put it on a charger. once it got charged up it started turning on with the apple symbol. then it turned white again and then restarted without me touching anything. When it restarted it turned the blue again. i took it off the charger immediantly because i didnt want it getting as hot as it was before. ive tried every way i know how to fix it but not putting it in the computer because i dont want it to ruin the computer. Please help because i really dont want to get a new ipod. Ive read a lot about how to fix it here on apple but there all the same answer and it still doesnt work. Please respond ASAP! thank you! i could really use your help right now!

    First see if placing the iPod in Recovery Mode will allow a restore.
    Next try DFU mode and restore.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    If not successful then time for an appointment at the Genius Bar of an Apple store. You are not alone with this problem.

  • How do you make a page scroll horizontally with mouse wheel?

    As the title says, how do you make a page scroll horizontally with mouse wheel in edge animate?

    This should get you there
    http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/
    1. Load the mousewheel min script via CDN (jquery-mousewheel - cdnjs.com - the missing cdn for javascript and css)  into the Scripts Panel;
    2. Add the provided snippet into your Stage > compositionReady event handler.
    hth
    Darrell

  • Need to stop my cursor leaving the flash stage area in browser?

    Hi, I need to stop my cursor from moving on certain points on the stage. I'm using a magnifying glass effect but in the browser this only show the glass up to the stage so I need to stop it moving past those points. You can see what I mean if you move the magnify glass to the very left or right here:
    www.zoeglazebrook.co.uk
    this is the code I have for the magnify glass:
    var moveGlass:Number;
    magnifyingGlass.onPress = function() {
        moveGlass = setInterval(startGlass,1);
    function startGlass() {
        magnifyingGlass._x = _root._xmouse;
        magnifyingGlass._y = _root._ymouse;
    magnifyingGlass.onEnterFrame = function(){
         this.largeobject._x = (this._parent.original._x-this._x)*2;
         this.largeobject._y = (this._parent.original._y-this._y)*2;

    kglad wrote:
    var moveGlass:Number;
    magnifyingGlass.onPress = function() {
        moveGlass = setInterval(startGlass,1);
    function startGlass() {
    if(_root._xmouse>magnifyingGlass._width/2&&_root._ymouse>magnifyingGlass._height/2&&_root. _xmouse<Stage. width-magnifyingGlass._height/2){
        magnifyingGlass._x = _root._xmouse;
        magnifyingGlass._y = _root._ymouse;
    magnifyingGlass.onEnterFrame = function(){
         this.largeobject._x = (this._parent.original._x-this._x)*2;
         this.largeobject._y = (this._parent.original._y-this._y)*2;

Maybe you are looking for

  • What is DTP in BI 7

    Hi Experts, Can anyone tell me what is DTP and what is the purpose of DTP in BI 7 ? Regards Venkata Devaraj

  • Help with Dreamweaver Forms

    I have tried to find this information and no one seems to be able to help me (including Adobe Tech Support). What I am trying to do is create a form on a web site that has four categories...Year, Make, Model, Engine. It is kind of like what is on Aut

  • Using Old AT Style Northgate Keyboard with Mac mini

    I have just switched to Mac from Windows and I am having trouble figuring out how to use my favorite keyboard. It's a Northgate Omni Key 102 At style keyboard without a "windows" key and I don't know how to access Command, or Option with it. Is there

  • Distributed web service.  What technology to use?

    Hi all, I need advice on what technology, architecture and platforms to use for the following: I have 1 thousand remote clients. These clients must receive notifications from my server on certain events that happen specific to that client. I would li

  • Is Mac mini 2.0Ghz +4Gb RAM sufficient for CS4?

    I am on a budget and am thinking of buying a 2.0Ghz Mac mini with 4Gb RAM to run Photoshop CS4 and Lightroom 2 for the next few years. I will be using external HDDs for scratch and photo storage. Up to now I have used a 3.0GHz P4 PC with 2Gb RAM. I w