Unload FLV movies when clicking home

Is there a way to set up an unload FLV actionscript (AS3) on
the click of a home button? So, when defining the functions of the
home_btn, have it unload FLV (sound and video).
Or would it be better to put into the actionscript frame? So,
when the home_btn brings the timeline to "home", the actions on
that keyframe have an unload FLV.
Help would be greatly appreciated

Did you ever find a solution for this?  I'm having the same trouble; I have multiple FLVs linked in welcome.swf, but when I load a different .swf file the sound continues.  I need to unload the FLVs (or at least stop the sound), but I don't know 1) what that script is and 2) where to put that script.
Any help would be appreciated!

Similar Messages

  • What to do NOT ask Google maps permit every open a page with maps functionality, phonegap app? If from my App go to clik a you tube link or google maps link there is no way return back – I know – but when click home after click app  opens you tube, what t

    In iOS6 emulator i plan to migrate soon to iOS7
    What to do NOT ask Google maps permit every open a page with maps functionality(custom maps), in phonegap app?
    If from my App go to click a you tube link or google maps link there is no way return back – I know – but when click home after click app opens you tube, what to do to return in the actual app from where clicked the you tube link?
    I tried but no way see shot attached xcode errors…

    It would make more sense to ask for help with PhoneGap on their support site.

  • Playing multiple movies without clicking home button

    I want to create a piece of art containing multiple buttons. For example, an illustration of a field, where, if the user were to click on a bush, a rabbit's head would pop out briefly, then disappear behind the bush. If a lilly pad were clicked, a frog would pop his head out of water and again disappear. How can I allow the user to randomly click on the various buttons, triggering the associated movies to play, without necessitating that a "home" button be hit after each sequence?

    I can get each button to play the corresponding movie. After the movie plays, however, I would like the movie to automaticaly revert to the home state.
    In this way, the user could randomly click around on the image, triggering various movies when the appropriate buttons are hit. I have seen this done many times- I remember an an image of a hanunted house, for example. When the user clicked on a window, it would open and a ghost would look out. Without having to then click a home button, a further click on the door of the house would cause the door to open, and a mummy to lean out. I'm trying to avodi having to repeatedly hit a "home" button before additional button hits could trigger additional movie clips.
    I should probably mention that I've had to insert a stop command at the end of each movie clip, otherwise all the animations play sequentially, rather than one at a time, when a button is clicked. How do I tell Flash to procede from this stop command, at the end of each movie, back to home, so that further buttons can be pushed?
    Sorry if I've misunderstood your posting- I've been animating for several years on Flash, but have only started several days ago to use Actionscript 3 for interactivity, and am a complete novice, in that regard.

  • Firefox in Mac OS X opens home page twice when clicking 'home' button

    Using Firefox 3.6.3 on Mac OS X 10.6.3
    When clicking on 'Home' button in the browser, the home page loads in the current tab, but Firefox also opens a new tab and opens the home page there too.
    Not disastrous, but quite irritating.
    == This happened ==
    Every time Firefox opened
    == From 1st use

    It could just be that the home page setting was accidentally changed to this. Firefox can be set to have multiple tabs open as the home page. Try resetting your home page - [[How to set the home page]].

  • Scroll bar moves when clicked on

    Hello.  I have a custom scroll bar that was made using AS2.  It works fine except that when you click on the bar and move it, the image shifts slightly and then doesn't line up correctly.  I don't know what's causing it to shift.  All registration points are in the upper left hand corner.  I was really hoping someone could help me with this.  Here is the code:
    txt.setMask(mask)
    scrollbar.onMouseDown = function() {
        if (this.hitTest(_root._xmouse, _root._ymouse) && txt._height>mask._height) {
            this.startDrag(false, scrollbarBG._x, scrollbarBG._y, scrollbarBG._x, scrollbarBG._height-this._height)
            txt.onEnterFrame = scrollThumbs;
            dragging = true
    scrollbar.onMouseUp = function() {
        stopDrag()
        dragging = false
        delete this.onEnterFrame;
    function scrollThumbs() {
        var funkyVar = -this._parent.scrollbar._y*(((this._height-this._parent.scrollbar._height)/(this._parent. scrollbarBG._height-this._parent.scrollbar._height))-1)
        this.Y = (funkyVar-this._y)*.2;
        this._y += this.Y;
        if(Math.abs(funkyVar-this._y)<1 && !dragging){
            delete this.onEnterFrame

    Thank you very much for the code.  After what you said, though, I went to find different code.  I used kirupa this time.  I just finished testing it out.  I typed in the code and it went a lot smoother.  However, the scroll bar top is STILL shifting to the side.  So it must mean it's not the code that is messing up?  All the registration points are in the upper left hand corner.  Should the points be somewhere else to stop the shifting?  Here's the code:
    scrolling = function () {
    var scrollHeight:Number = scrollTrack._height;
    var contentHeight:Number = contentMain._height;
    var scrollFaceHeight:Number = scrollFace._height;
    var maskHeight:Number = maskedView._height;
    var initPosition:Number = scrollFace._y=scrollTrack._y;
    var initContentPos:Number = contentMain._y;
    var finalContentPos:Number = maskHeight-contentHeight+initContentPos;
    var left:Number = scrollTrack._x;
    var top:Number = scrollTrack._y;
    var right:Number = scrollTrack._x;
    var bottom:Number = scrollTrack._height-scrollFaceHeight+scrollTrack._y;
    var dy:Number = 0;
    var speed:Number = 10;
    var moveVal:Number = (contentHeight-maskHeight)/(scrollHeight-scrollFaceHeight);
    scrollFace.onPress = function() {
    var currPos:Number = this._y;
    startDrag(this, false, left, top, right, bottom);
    this.onMouseMove = function() {
    dy = Math.abs(initPosition-this._y);
    contentMain._y = Math.round(dy*-1*moveVal+initContentPos);
    scrollFace.onMouseUp = function() {
    stopDrag();
    delete this.onMouseMove;
    btnUp.onPress = function() {
    this.onEnterFrame = function() {
    if (contentMain._y+speed<maskedView._y) {
    if (scrollFace._y<=top) {
    scrollFace._y = top;
    } else {
    scrollFace._y -= speed/moveVal;
    contentMain._y += speed;
    } else {
    scrollFace._y = top;
    contentMain._y = maskedView._y;
    delete this.onEnterFrame;
    btnUp.onDragOut = function() {
    delete this.onEnterFrame;
    btnUp.onRollOut = function() {
    delete this.onEnterFrame;
    btnDown.onPress = function() {
    this.onEnterFrame = function() {
    if (contentMain._y-speed>finalContentPos) {
    if (scrollFace._y>=bottom) {
    scrollFace._y = bottom;
    } else {
    scrollFace._y += speed/moveVal;
    contentMain._y -= speed;
    } else {
    scrollFace._y = bottom;
    contentMain._y = finalContentPos;
    delete this.onEnterFrame;
    btnDown.onRelease = function() {
    delete this.onEnterFrame;
    btnDown.onDragOut = function() {
    delete this.onEnterFrame;
    if (contentHeight<maskHeight) {
    scrollFace._visible = false;
    btnUp.enabled = false;
    btnDown.enabled = false;
    } else {
    scrollFace._visible = true;
    btnUp.enabled = true;
    btnDown.enabled = true;
    scrolling();

  • Cairo-dock being spawned multiple times when clicking 'home' icon?

    Hi all,
    Not sure if any other cairo-dock users experience this, sometimes another instance of cairo-dock will launch seemingly out of nowhere. I've seen this for a couple of weeks but never been able to correlate it with any particular thing I've been doing. The only way I realize is that when I've got my mouse moving over the dock there's my animated dock and another static copy behind (which isn't animated since it doesn't have focus). Quitting the first dock just leaves the 2nd fully functional one in its place.
    EDIT: mandog isolated the cause.
    Last edited by ngoonee (2010-11-01 16:35:32)

    This was happening to me when I was using Xfce. I had cairo dock at autostart but it was also starting because of Xfce's weird session saving option.
    Last edited by z0id (2010-11-01 13:50:34)

  • Stopping an flv movie?

    I need to stop an flv movie when I click a button that is not on the control bar. e.g. I have three pages in flash and when I navigate from the videos page after starting the playback of the movie, the audio from the movie continues to play. I have no idea why this is. Please, any help is appreciated. I only have about 2 hours to fix this. :/

    I have no idea how to do that, sorry for being a pain.

  • When I open a new tab, I have to move to the other side of the page to click "home". Can I set the same "home" default for new tabs?

    My home page opens in the initial FireFox window, but new tabs open with a blank page. To get to my default page I have to click "home", but now it's way over on the other side of the page.
    Can I set a default for new tabs?

    right click on the control bar and choose "adapt" (or something like that). A window will pop up. Ignore that window and move the home button to the place you want it ''on the control bar''

  • Activity Window Shows "Forbidden" When Attempting to Play FLV Movies

    I've noticed a problem for the past few months using both Safari 2 and 3 that when I go to certain web sites with embedded FLV movies, if I click on the movie, I get an error at the bottom of the Safari window that tells me to check the Activity window. When I do, I see that the specific URL for the embedded movie shows a status of "Forbidden." However, if I click on the link to view the movie directly from the source site (not the embedded version), I have no problems. If I try the same thing in Firefox, the embedded movies always play fine. I'm running the latest version of Flash (just downloaded 9.0.115 today) and still have the issue. Any idea why a movie won't play when it's embedded but plays fine if you go to the site directly? What could be causing a response of "Forbidden"?

    Happy Dance!! I purchased a TV Show and it solved everything. I like the product... now, but what a pain all around, with very little direction. Thank goodness for forums like this. What a nice way to outsource your support to you customers! If it helps anyone, this is what I went through to gt everything working across a wireless AirPort Extreme network (iMac source):
    1. Followed instruction out of the box, connected to network fine, established connection to iTunes fine, set up sync fine
    2. Couldn't play any purchased content on ATV (unauthorized), logged in about 5 times on ATV, which is a PITA, no luck
    3. Unplugged ATV, plugged back in, login in was successful
    4. White screen on video, couldn't play purchased music
    5. Purchased TV episode, everything played fine
    Between steps 4 & 5 I also unnecessarily did the following over the course of a day:
    1. Reset ATV
    2. Reset ATV to factory
    3. Removed ATV from iTunes
    4. Deauthorized/reauthorized Tunes
    5. Changes every video setting thinking that it was my TV, as Apple would never release a buggy product in the market
    Anyway, thanks for the hints, as now I'm liking this little piece of gear.

  • I Photo, I Movie, and Photo Booth Icons are visible but when clicked on won't open.

    What can I do? I Photo, I Movie, and Photo Booth Icons are visible but when clicked on won't open.

    What happens when you try?

  • Frequent LowMemory crash when starting multitasking by double-click Home button

    After upgrading iOS 7, my iPhone 5 crashes when double-clicking home button for multitasking.
    The crush shows white apple logo and reboots my iPhone.
    It occurs about 2-3 times a day.
    Every time crash occurs, Diagnostic & Usage Data would add a LowMemory log, which is exactly the time iPhone crashes.
    Therefore I guess it's because of running out memory.
    I've tried Reset My Phone, Reduce Motion, Disable Background App Fresh..., but none of it worked.
    My iPhone begins to crash 3 days after resetting.
    Does anybody know how to solve it?

    I think you mean crash.
    Also, I am going to assume you've tried restarting and reseting. What you can do is back up the important information in your phone (using either iTunes or iCloud) and restore the device as new. Then, you can restore from your backup. This will remove any and all software bugs.

  • TS1398 I have an ipad and just recently am not able to connect to home wireless wifi, the hourglass just spins when clicking the network to connect, other devices work fine

    I have an ipad 2 and just recently am not able to connect to home wireless wifi, the hour glass just spins when clicking the network to connect, other devices work fine and can connect.  Was able to connect at school, but not here at home all of a sudden, help?

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • When I double click Home button, all of my apps don't show in the bar -- only the four that reside there. Did a reset last night to fix the Home button (it sort of works now) but now this. Any ideas on why I can't do the fast app switch now?

    When I double click Home button to change apps quickly, only the four apps that reside on the task bar show. All of my apps would show prior to my reset of the iPad last night (to fix the Home button). Any ideas on how to fix?

    My undertanding is that when you double-click the home button, the apps that are shown are those that are currently active.  The reason you are not seeing all of them is that not all of them are active.  Before you can access an app in the multitask bar, it has to be turned on first.  As a test, try accessing the Notes application.  Return to the home screen by clicking the Home button ONCE.  Once the home screen appears, double click the home button to bring up the multitasking bar.  The Notes app should be on the far left.

  • When clicking the + tab in the tab bar how do I set new tabs to automatically open my home page

    When clicking the + tab in the tab bar how do I set new tabs to automatically open my home page

    You can do that by using an add-on such as:
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

  • HT1657 I use apple tv; but when click on 'rent the movie' I get message to verify my payment info on itunes. I looked at my account and I am paid up. How do I 'verify'?

    I use apple tv; but when click on 'rent the movie' I get message to verify my payment info on itunes. I looked at my account and I am paid up. How do I 'verify'?

    I believe it is asking you to enter your CVV code.
    Edit your billing info, fill in the red box on iTunes.

Maybe you are looking for

  • IPhone wont let me listen to music or update apps

    Hello. When i go to the Music app and press a song it freezes and doesn't play it or it will be on play but it will just be at 0:00 and not start the song. I always try to turn up the volume but it freezes and doesn't work. I ushally have to double c

  • Creation of item-R12.1.1-Error

    Hi, In Release 12(Version 12.1.1.)when i try to create a new item, and applying a purchasing template to item i am not able to commit the item. especially while giving list price column that system wont accept the field. becoz of that i am not able t

  • Help needed in SORTING query

    I have a table having single column c1 of varchar2(10) and have stored these values in the table. A0 A1 A01 A100 A101 A102 B10 B99 B100 B101 B102 100 120 200 I need to sort them in the order as given, can someone help please. Thanks

  • HT2452 my grandsons were using my computer, now my pound character types as a # sign, how to I get my pound sign back

    my grandsons were using my computer, now my pound character types as a # sign, how to I get my pound sign back

  • How to delete archivelog file at standby database

    Hi All, I'm running Physical Standby Database on ASM. At standby database, I can see all logs using asmcmd: ASMCMD> ls thread_1_seq_14.330.625772527 thread_1_seq_15.346.625772527 thread_1_seq_16.329.625772527 thread_1_seq_17.327.625772559 thread_1_se