Want to stop all sounds and start them up too

Hi.
I have a flash website that is entirely based on videos. It
loads and starts with an intro. Then a scene where a loop movie
plays, and depending on which objects from the scene you press on a
different videos start playing and then back to the scene.
The problem si that, as with all videos, the sound is
incorporated into the different videos that load.
I want to stop or set the volume to zero by pressing on a
button and to restore the sound by pressing again. How can i do
that and have the sound stopped even if i load different movies all
with their sound incorporated?
Thank you.

I do not recommend reformatting your harddrive and reloading your software.  This is a Windows thing. On an older mac it may be difficult to find all your software again.
Best to have greater than 2gig of free space.  Many posters to these forums state that you need much more free space: 5 gig to 10 gig or 10 percent of you hd size.
(0)
Be careful when deleting files. A lot of people have trashed their system when deleting things. Place things in trash. Reboot & run your applications. Empty trash.
Go after large files that you have created & know what they are.  Do not delete small files that are in a folder you do not know what the folder is for. Anything that is less than a megabyte is a small file these days.
(1)
Run
OmniDiskSweeper
"The simple, fast way to save disk space"
OmniDiskSweeper is now free!
http://www.omnigroup.com/applications/omnidisksweeper/download/
This will give you a list of files and folders sorted by size. Go after things you know that are big.
(2)
These pages have some hints on freeing up space:
http://thexlab.com/faqs/freeingspace.html
http://www.macmaps.com/diskfull.html
(3)
Buy an external firewire harddrive.
For a PPC computer, I recommend a firewire drive.
Has everything interface:
FireWire 800/400 + USB2, + eSATA 'Quad Interface'
save a little money interface:
FireWire 400 + USB 2.0
This web page lists both external harddrive types. You may need to scroll to the right to see both.
http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
(4)
Buy a flash card.

Similar Messages

  • I have a problem with my mac  i have too many  archives and programs and i want to delete all files and start at the begin my mac with out do format

    i have a problem with my mac  i have too many  archives and programs and i want to delete all files and start at the begin my mac with out do format

    I do not recommend reformatting your harddrive and reloading your software.  This is a Windows thing. On an older mac it may be difficult to find all your software again.
    Best to have greater than 2gig of free space.  Many posters to these forums state that you need much more free space: 5 gig to 10 gig or 10 percent of you hd size.
    (0)
    Be careful when deleting files. A lot of people have trashed their system when deleting things. Place things in trash. Reboot & run your applications. Empty trash.
    Go after large files that you have created & know what they are.  Do not delete small files that are in a folder you do not know what the folder is for. Anything that is less than a megabyte is a small file these days.
    (1)
    Run
    OmniDiskSweeper
    "The simple, fast way to save disk space"
    OmniDiskSweeper is now free!
    http://www.omnigroup.com/applications/omnidisksweeper/download/
    This will give you a list of files and folders sorted by size. Go after things you know that are big.
    (2)
    These pages have some hints on freeing up space:
    http://thexlab.com/faqs/freeingspace.html
    http://www.macmaps.com/diskfull.html
    (3)
    Buy an external firewire harddrive.
    For a PPC computer, I recommend a firewire drive.
    Has everything interface:
    FireWire 800/400 + USB2, + eSATA 'Quad Interface'
    save a little money interface:
    FireWire 400 + USB 2.0
    This web page lists both external harddrive types. You may need to scroll to the right to see both.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    (4)
    Buy a flash card.

  • Stop All Sounds and goToAndPlay Label

    Can someone aide me with a simple solution in AS3 to allow a
    movie clip to stop a Sound Object as well as going to a label and
    playing it. I'm a graphic designer trying to get a handle on AS3.
    Any assistance is greatly appreciated.

    fiveflightsup,
    > Thanks for your help.
    Sure thing.
    > Here's what I came up with other a little research
    > ,studying your instructions and pulling out a few
    > hairs. It works but question is it correct :-)
    Before I continue replying, I should point out there are two
    ways to
    visit this forum. One way is to visit the adobe.com website
    with a browser
    and select Support > Forums. My guess is that you're using
    this approach.
    Another way is to use a news client like Thunderbird or
    Outlook Express and
    read Adobe's NNTP feeds. That's the way I'm using. What's the
    difference?
    There are many differences, but the important one is that the
    browser
    version lets you edit your replies, while the news client
    approach does not.
    That said, I have to be open to the possibility that you've
    edited some
    of your posts. Maybe there's something I'm just not seeing.
    Bear that in
    mind if my reply doesn't match up with what you've written.
    You're saying you've studied my suggestions, researched this
    topic, and
    come up with this variation:
    > var soundReq:URLRequest = new
    URLRequest("flashgame_intro_extended.mp3");
    > var sound:Sound = new Sound();
    > var channel:SoundChannel;
    >
    > sound =new Sound ();
    >
    > sound.load(soundReq);
    >
    > sound.addEventListener(Event.COMPLETE, onComplete);
    >
    > function onComplete(event:Event):void
    > {
    > sound.play();
    > }
    While slightly different, this still doesn't make practical
    use of the
    SoundChannel class, so I'll spell it out this time and try to
    explain a bit
    more while I do.
    > var soundReq:URLRequest = new
    URLRequest("flashgame_intro_extended.mp3");
    > var sound:Sound = new Sound();
    > var channel:SoundChannel;
    These lines are fine. In ActionScript, when you need an
    object, you
    instantiate it. The way you communicate with an object,
    often, is to
    declare a variable typed to that kind of object, and then set
    that variable
    to the object in question. That lets you refer to the object
    by way of an
    arbitrary variable name. You're doing exactly that:
    var soundReq:URLRequest = new
    URLRequest("flashgame_intro_extended.mp3");
    In that line, you declare an arbitrarily named variable,
    soundReq, type
    it as a URLRequest object, and then set it to an instance of
    the URLRequest
    class. Once you do that, the variable soundReq gives you a
    convenient "nick
    name" or "handle" you can use to refer to that URLRequest
    instance. In
    fact, you use this reference a few lines later.
    > sound = new Sound();
    >
    > sound.load(soundReq);
    In this pair of lines, you don't need the first line. You
    already
    instantiated the Sound class earlier. No need to do it again.
    The second
    in this pair of lines is useful, though, because you're
    putting that
    previously-instantiated Sound object to work. How? By
    invoking the
    Sound.load() method on your object (aka instance). And this
    is where you're
    making use of that URLRequest instance created earlier.
    > sound.addEventListener(Event.COMPLETE, onComplete);
    Here, you're wiring up your Sound instance -- referred to by
    the
    arbitrary variable name, sound -- so that it performs the
    onComplete()
    function when the Event.COMPLETE event occurs (that is, when
    the requested
    MP3 file fully loads).
    Finally ...
    > function onComplete(event:Event):void
    > {
    > sound.play();
    > }
    ... which is where you need to actually use your SoundChannel
    instance, if
    you plan to eventually stop the MP3 from playing. I did show
    this in a
    previous reply, but I'll repeat it here:
    function onComplete(event:Event):void {
    channel = sound.play();
    The play() method returns a value, which happens to be a
    SoundChannel
    instance. You declared a SoundChannel-typed variable earlier,
    named
    channel, and all you're doing here is setting channel to a
    SoundChannel
    instance. Not just *any* SoundChannel instance, but the one
    associated with
    the playing of this particular sound, which is an MP3 file.
    With me?
    Doing what I just showed lets you stop the music later by
    invoking the
    SoundChannel.stop() method on your channel instance.
    e.g.
    // in later code ...
    channel.stop();
    Before you move forward, you should make sure you understand
    100% what's
    going on here. There shouldn't be any pulling of hair -- at
    least not until
    you dig into something new. ;) In order to be able to stop
    sound in the
    way I've been describing, you have to associate that sound
    with a sound
    channel.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Videos get stuck-stop-loose sound and start again--all in 30 sec.

    hi friends
    i have been using the video ipod since a month.i use videora to transcode videos..but today i dunno why but exactly after 30 sec. the movies get stuck for say 3-4 sec. and then i loose sound but the movies play from where they left..
    i restored my ipod to factory settings but the problem still continues..i'm using the latest version of the software and i dunno whatz wrong all of a sudden..please help
      Windows XP  

    no i did not..but how will that help
    It won't. I'll make it much worse. Stick to the 1.0 updater that came with your iPod and don't upgrade to 1.1.

  • I have itunes set up on a PC with all my music, apps, etc. I want to stop using PC and move my iTunes and files to a Mac I bought and synch my iPhone with the Mac. Can I just synch iPhone with Mac iTunes and will it copy all my stuff onto Mac, or will I h

    I have itunes set up on a PC with all my music, apps, etc. I want to stop using PC and move my iTunes and files to a Mac I bought and synch my iPhone with the Mac. Can I just synch iPhone with Mac iTunes and will it copy all my stuff onto Mac, or will I have to copy files from PC onto Mac?

    Here are some of the links to get you started.
    https://discussions.apple.com/thread/3727530?start=0&tstart=0
    http://support.apple.com/kb/HT4527
    http://www.macworld.com/article/1146958/move_itunes_windows_mac.html

  • Redundant folders created in root of C drive of server and Client . I want to stop the same and want to automatically delete them from server and client .

    Redundant folders created in root of C drive of server and Client . I want to stop the same and want to automatically delete them from server and client .
    Please let me know the solution to delete them not manually . It should not create automatically .Is there a way we can change the path of creation.
    Is there a way that once the folfer is create should be automatically deleted once the task is done.
    Redundant folders are created in the root of my C drive all the time,
    folder names look like:
    09b0508d0bd2dbd70523
    56f51b81c1462bb378009ee4d5ed03
    02afe4378371907aca40ab

    This is a duplicate of
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/ae99c2d0-8dea-4c5e-8a79-17e08e9e5de4/sccm-2012-issue-folders-with-long-guid-are-created-in-c-drive?forum=winservergen#ae99c2d0-8dea-4c5e-8a79-17e08e9e5de4
    Jason | http://blog.configmgrftw.com

  • My iCloud on my phone is undJer another persons account I however am no longer with them and want to cut all ties and is there any way for me to change my iCloud account or will it affect my phone? And it's photos, apps, music?

    My iCloud on my phone is under another persons account I however am no longer with them and want to cut all ties and is there any way for me to change my iCloud account or will it affect my phone? And it's photos, apps, music?

    You have to delete the iCloud account but you can keep all your data such as Contacts, Calendars etc. when you delete the account you will prompted to "Keep on my iPhone".
    All your purchased content (like apps and music from iTunes Store) belongs to the original ID and you have to re-Purchase them under your Apple ID.
    Photos in Camera Roll remains in Camera Roll.
    Photos in photo stream that are not in Camera Roll must be saved in Camera Roll.
    Photo that previously synced from iTunes remains in photo library until you synced with another iTunes library (another computer).
    Also sign out from iMessages, FaceTime and Home sharing (Settings>Music)

  • To run an application on iAS6sp1 on HP-Unix, while starting the kjs from command line, it gives a GDS error and crashes. Subsequently, after stopping all services and restarting iAS wouldnot come up.

     

    Hi,
    Not a problem, please post the KJS error logs for me to hunt the
    exact reason for the error.
    Thanks & Regards
    Raj
    Neel John wrote:
    To run an application on iAS6sp1 on HP-Unix, while starting the kjs
    from command line, it gives a GDS error and crashes. Subsequently,
    after stopping all services and restarting iAS wouldnot come up.
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • I had to restart my mac and couldn't remember my password and had to create a new keychain, help?? i just want to stop all these pop up screens coming up now, how do i retrieve my original password?

    i had to restart my mac and couldn't remember my password and had to create a new keychain, help?? i just want to stop all these pop up screens coming up now, how do i retrieve my original password?

    I'm not quite sure I understand what you're saying? Have you gained access to your mac, but getting pop-ups about your old password? If you have access, you could always copy important files and reinstall OS X from scratch. Also you could use the Mac as an external hard drive if you have another Mac doing the same. Those are probably the easiests ways. If it was easy to just go ahead and change passwords as so, security would be an issue. How is your computer locked? Is it a filevault password, or how much do you have access?

  • Stop all parallel and series task after rejection in sharepoint 2013

    How to stop all parallel and serial tasks to stop and terminate the workflow once an approver rejects a request at any hierarchy or any branch of parallel activities.
    I am looking for SharePoint 2013 SPD workflow.

    Hi Arun,
    Based on your description, my understanding is that you want to stop all parallel or serial tasks and stop the workflow once an approver rejects a request.
    I recommend to edit the Start a task process action in the workflow and set the Wait for task completion under Task Options:
    If the workflow contains other steps under the Start a task process action and you want to stop the workflow after an approver rejects the task, then I recommend to add a condition to check if the Task outcome is approved under the Start a task process and
    move all the other steps inside the action.
    After that, only if the all the tasks are approved, the workflow will run the other steps, otherwise it will go to the end of the workflow.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • HT201250 i am using for first time the time machine and an external hard drive because I want to erase my macbook and start from zero files. do i keep my files in the portable hard disk when I connect it again with the macbook or the time machine will era

    i am using for first time the time machine and an external hard drive because I want to erase my macbook and start from zero files. Am i keeping my files in the portable hard disk when I will connect it again with the macbook or the time machine will erase all?
    I would like to know if after I erase all my data, empy hard drive inside the macbook, the time machine will erase all my files that I have saved in my "WD "My passport" external hard drive

    Welcome to Apple Support Communities
    Time Machine has to erase the external disk in order to make backups. Before setting Time Machine up, copy the files of your external disk to the hard disk of the Mac in order not to lose them, and then, set up Time Machine. The first backup will start automatically.
    If you want more information about Time Machine, read the Pondini's site > http://pondini.org

  • How stopping a version and start a new one from the previous

    Hi,
    May be someone could help me to erase my basics questions on Robosource control.
    We have to manage several versions of our product documentation and It is not clear how it is managed by robosource control. The documentation tells what can do RBSC (and it seems to be what we need) but they do not explain how to do it (prerequisites, ordered steps, etc), and I do not really succeeded. May be I missed the basics.
    All our projects are added to Robosource control 3 from RoboHelp7 Html from a local directory.
    In the database, we inserted them in a directory corresponding to a version V01.r01.
    I would like to stop this version and start a new one V01.02 with the projects which are V01.01. What is the best way to do this:
    Do I just label the directory V01.01 and "Pin" it ?  In that way how can I recover all the projects and files that were labelled and pinned for version V01.01, if I need them later ?
    Copy and rename directory V01.01 into V01.02 to continue the file modifications without modifiying the same project in V01.01?
    My questions are quite similar to Kristen's questions.
    Please can anyone help ! Thanks !

    Then the (App) tabs from that window are lost unless you can restore an older copy of the sessionstore.js file (Time Machine?) that has that lost window.
    *http://kb.mozillazine.org/sessionstore.js

  • Does it exist a way to attach sound (and play them) directly from 3d ?

    Hi all,
    I want to know if there is a way to attach sound and play them directly from 3D, like image for background for insteance ?
    see an example >>here<<

    found :
    doc level :
    rm = getAnnotsRichMedia(this.pageNum)[0]; //sound
    JS 3d level :
    host.rm.activated=true;
    host.rm.callAS("multimedia_play");

  • HT201274 iPhone 4s, but wifi option is greyed out. I want to erase all content and setting from my old 4s and it will not connect to the internet, because the cellular data is no longer connected, bought a iPhone 5c. how do I erase all on my 4s with no in

    I have an iPhone 4s, but wifi the option is greyed out. The wifi stopped working on it months ago. Now I wanted to erase all content and setting from my old 4s and it will not connect to the internet, because the cellular data is no longer connected, since I bought a new iPhone 5c. I can't erase my phone by pluggin it into my Macbook Pro, since I can't disable the "Find my iPhone" App without internet. How do I erase all the data and setting on my 4s without connecting to the internet? It is running ios 7

    See this https://answers.yahoo.com/question/index?qid=20131119125513AAtRloc
    I just did it. To enter DFU mode, I had to use "method 3" on this post
    http://thebigboss.org/guides-iphone-ipod-ipad/dfu-mode
    Too bad my 4S is 2 years old. Wifi is dead. I had to upgrade to 5S, but 5S is soooooo much faster than 4S so it's kind of good outcome. Without the 4S breaking down, a stingy person like me would have never upgraded the phone.

  • LOVE LOVE LOVE my iPhone so far, but ringer switch doesn't stop all sounds?

    With exception of a few concerns like somewhat low speakerphone and earpiece volume, no non-pinch zooming in maps, not being able to expand email contacts (to see the actual address), not having any auto-fill in Safari, and some stability issues (a couple Safari crashes on complex sites - to be expected until they collect enough bug data and make a patch)... I love my iPhone! After updating my OS & iTunes, activation took only a few minutes (early evening of the 29th) since I was an existing account holder. I did have a corporate discount on my plan and was worried I would be denied, but it went through just fine - fwew!
    So then, I'm in a movie theatre today during a dramatic, quiet passage, with the ringer switch off (I'm so polite! <bg>), and low and behold, here comes a clever marimba roll. Having not heard this other than in the ringer setup area, I wasn't sure what it was (still not). Hitting the sleep button on top didn't do anything... it bleeped 3 times, almost sending me out of the theatre in embarrassment. I don't have to go into the settings and turn off all the notices do I? The ringer off is supposed to stop ALL sounds, per Apple's site. Anyone experience this or have a solution?
    PM G5-Quad 2.5GHz | eMac G4 1.25GHz | PM G4 800MHz | PB G4 1GHz 17 | PM G4 400MH   Mac OS X (10.4.5)  

    Per the manual, the switch doesn't stop the alarm clock from going off. Which is set to marimba by default.

Maybe you are looking for

  • Oracle 11g Standard Edition + Locator Java API

    We have Oracle 11g Standard which includes the Oracle Locator package, but not the Oracle Spatial. I would like to use the Oracle® Spatial Java API in my java code, but am unsure of the licensing implications of this. I require some form of java api

  • Niable and Taxable Pay

    Hi I have been tasked with writing a report for a period which picks out Niable and taxable for for all employees. What would be the easiest way to get this information from the payroll runs ? Any advise in the right direction would be useful. Many T

  • Does Siebel license limits the Max task of Object Manager?

    Hi, Gurus, We installed a Siebel environment on a Linux VM (Linux version el6.x86_64, Read Hat 4.4.6-4, the VM has 64g ram). The database (Oracle 11.2.0.0.1) and Oracle Http Server (ofm_webtier_linux_11.1.1.6.0_32) were also installed in the same VM.

  • PLEASE HELP-Flash Version 9.0

    Everything was working fine this morning. I went to the Playhouse disney.com website for my sons. It said I needed to update my flash player. I downloaded 9.0 for MAC powerPC (I have version 10.5). The download did not finish, stating I needed a diff

  • Problems with new message alert on home screen (No...

    Not sure if this problem is specific to the Nokia X6 but this is really annoying me! I have contacted Nokia through their form as well as speaking to an advisor... Basically, when your phone has been auto-locked, is there a way other than the ridicul