How to make sound optional in flash?

I need to edit this flash design. I have not done flash in a
very long time and have no clue what to do so I need a simple and
step by step explanation. Currently, the flash design starts off
with sound and there is an option on the bottom right corner that
let's you turn it off. I need it to be the other way around. I need
the flash design to start with the sound off and then have the
option on the bottom right to turn it on.
How can I do this? Please explain. Thanks!

either use mp4 files or use an older ame.

Similar Messages

  • How to make the option none in the payment information from app store

    how to make the none option in payment information in app store??????using iphone
    i made a purchase from my card then after i tried to make another purchase that is free but while doing this a massege appears "review your payment information" then it goes back to app store.tell me how to make none option in apple account payment information using iphone??????

    surendramandia wrote:
    i don't want to creat a new account i want  none payment option in my existing account
    This has been suggested by other Users, but have not tried it myself...
    ' ... Get an iTunes gift card & redeem that in iTunes using your existing Apple ID.
    Then the option for none, regarding a credit card should appear...'

  • How to make a simple JPEG flash light to dark on PDF?

    Hello all. Thank you for reading this.
    Please have a look at this online magazine:
    http://viewer.zmags.com/publication/1d272263#/1d272263/1
    Notice how the "Click Here To Read" is flashing?
    Well I'm wondering how do I create that effect? I'm sure it can't be as confusing as I'm trying to learn. Basically I'm creating a online magazine, and I want a JPG/PNG File to flash from dark to light. Is this an effect I add on Adobe InDesign before I convert my (rather large 1,500 page) magazine to a PDF? Or do I open this in Adobe Acrobat X as a PDF and tweak some setting there?
    Or does this file have to be converted to a Shock-wave Flash file? Because I have NO EXPERIENCE in flash files, they seem so confusing.
    Please help if you can!

    Salah Fadlabi wrote:
    Yes that correct
    just export the page logo flashing to (SWF) than place again on indesign document to export with remaining pages to PDF.
    Hello, thank you for your help. When I place the swf file onto the correct InDesign page, I upload it onto the page viewer online, but I see that rather large Flash icon. If you click on the image below you'll be able to see it. I've print screened it.
    ?1
    Am I exporting it incorrectly? I've exported it as a interactive PDF.
    EDIT: I may be confusing you, but this is my general process. I create a magazine. Export it as a PDF, and upload it on a pdf internet viewer called FlipViewer.
    But now, some clients want certain pages/logos etc flashing. So now I need to figure out (for the next magazine that will be uploaded soon), how to make certain logos/badges etc flash. So when I follow your instructions, I upload it as a PDF, then when I open that PDF, I get that flash icon that says "...click to activate", when I click that, then the SWF effects appear over the document. But when I upload that PDF document to FlipViewer, it just appears as a unclickable link. And other magazines that have been uploaded on flipviwer has flashing logos, automatically when you open up the document. What am I doing incorrectly?
    Thank you so much for your help!

  • How to make sound play in loop

    Hi
    How can i make sound play in loop? Is there any property in class SoundChannel responsible for this or i have to write my own function?

    Using the sound Object there is a property you can pass in which asks for number of Loops
    Play(startPosition:Number,LOOPS:int,SoundTransform)
    or you can create your own method that listens to SoundComplete and then trigger play again.  which in my opinion is the best to do because when you play a sound with a loop, and choose to have is begin at a position other than 0  then the loop will play starting from where you set the position.

  • How to make Select Options Mandatory?

    Hi Guys,
                  Can anybnody tell me how to Declare  Selection Options for some of them mandatory.
    Select-Options : v_PurOrg for EKKO-EKORG default '2000',
                             v_GRDate for Sy-Datum ,
                             v_GRPrd  for MSEG-GJAHR.
             In these i have to make v_PurOrg Manadatory.
    Thanks,
    Gopi.

    Hi Gopi,
    In order to make select-options mandatory we add OBLIGATORY in the statement like the below.
    Selection-Screen.
    Select-Options : v_PurOrg for EKKO-EKORG default '2000' OBLIGATORY.
    In this case, only the first option will have the default value of 2000.But if you want both the options low and high of select-options, means you have to add the below code in your program in the initialization event.
    Initialization.
    v_PurOrg-low    =   1000. 
    v_PurOrg-high    =   2000. 
    append v_PurOrg.
    Hope this helps.
    Please reward if useful.
    Thanks,
    Srinivasa

  • How to set autosave option in flash and other Application

    hi,
    How to set automaticaly autosave  and backup option in flash and other Application?
    Thanks for reading!

    The Flash forums are here:
    http://forums.adobe.com/community/flash
    This forum is only for discussions on the forums themselves.
    And when you post there, don't forget to add enough information about your specific setup.

  • How to make seletion optional VA35?

    Hello Experts,,,
    Please guide about " How to make the selection ( customer, material, PO numbed) optional in VA35?
    While doing the search I have found that "validation in Line number 36-44 in PAI include MV75ANEU_EINGABEN_PRUEFEN"
    what does it mean? where can I view this?
    Thanks & Regards
    RaviRaj0308

    VA35N is a simple report. You can copy it and make any changes necessary. It is pulling the same data as VA35 (the same dictionary structure, from what I see, which, by the way, can be enhanced), but for some reason when presenting the data in ALV, it is only using some fields, not all available. It is just one line ABAP change (in the field catalog routine) to adjust this. Otherwise the report is well-written and optimized.
    VA35 (like VA05) is designed to work with a single sold-to or material #, as I explained above. If you need a different report then you need to use or write a different report. It doesn't make any sense trying to break the transaction that wasn't meant to work that way. You actually might be better off with creating a simple query.
    No disrespect to krishna, but I'm an ABAPer and sometimes functional folks just get these wildest ideas without a good understanding of their impact.

  • How to make select-option for one inner table

    Hi,
    Who can teach me to  make select-option for a inner table, which let select-option display data from this inner table.
    Thanks in advance.

    Is this what you are looking for?
    report zrich_0002.
    data: begin of itab occurs 0,
          matnr type mara-matnr,
          spras type makt-spras,
          maktx type makt-maktx,
          end of itab.
    select-options: s_matnr for itab-matnr.
    select-options: s_spras for itab-spras.
    start-of-selection.
      select mara~matnr makt~spras makt~maktx
               into corresponding fields of table itab
                      from mara
                            inner join makt
                               on mara~matnr = makt~matnr
                                        where mara~matnr in s_matnr
                                          and makt~spras in s_spras.
      check sy-subrc = 0.
    Regards,
    Rich Heilman

  • How to make checkbox option enable/disable

    Hello,
    i am newbie in coldfusion...i want to make an option answer after my first check box answer is true
    code :
    <tr>
        <td><table width="100%"  border="0">
      <tr>
    <tr>
        <td>Do you have a car? </td>
        <td><input name="car_type" type="checkbox" value="1">Yes<input name="car_type" type="checkbox" value="0">No</td>
    </tr>
    <tr>
        <td width="100%"></td>
        <td><strong>(Select your car type)</strong></td>
    </tr>
      <tr>
        <td></td>
        <td><input name="car_bmw" type="checkbox" value="1">
          BMW</td></tr>
       <tr><td></td>
        <td><input name="car_mercedes" type="checkbox" value="1">
          Mercedes</td></tr>
        <td></td>
        <td><input name="car_toyota" type="checkbox" value="1">
          Toyota</td>
         <td></td>
        <tr><td>
        </td><td>Others<input name="car_others" type="text" size="20" maxlength="100" /></td>   
      </tr>
      <tr>
    Thank u

    What have you tried? 
    This is a client-side interaction, not server-side, so it should be fairly straightforward to do in JavaScript (I'd recommend using jQuery as it will make things a bit easier).
    -Carl V.

  • How to make one-option dropdown list partial trigger?

    There are two dependent dropdown lists. when list one is selected, the other one will get the SelectItems according the value of list one. My question is: when there is only one selectiem in list one (and the hint 'Please select one..."), how to make it partial trigger in the second time? e.g. I first login and select the ONLY one choice in List one, and the List two gets the values. but the data in datasource updated, so I want to choose the List one again, and make the List two get the new values.

    Hi,
    create a JSF binding (Bindings property on the list component) to a managed bean. The in the code that would trigger the PPR, call
    AdfFacesContext.getCurrentInstance().addPartialtarget(theListBindingName);
    If you have a refresh button, then you could use declarative PPR
    Frank

  • How to make sound better quality?

    So I exported a preview of my animation but the sound isn't high quality. How can I make it better quality? It doesn't sound like when I press Enter in Flash CS5.

    Go to the publish preferences and see what bit rate is set for the compression of the audio. Be sure to check both stream and event.

  • For Movie sound tracks, how to Make sound? Auto Normalize is dangerous

    I'm not sure how to do this.
    But i'm making an animation movie. i lay sounds(Mp3's etc i downloaded from websiteis) in about 3 different Normal audio tracks.
    I add sounds ettects(GB rain, etc) too and also later on i will add a music track.
    The problem is that, all these sounds came from different sources. some of them are loud.. some of them are quiet.
    How do i prepare my sound project so that when i export somehow all that will be fixed. The last time i made a movie..and watched in in a normal TV.. some sounds were quiet i had to up the volume.. then other sounds would suddenly play and they were too loud.
    At that time, i didn't use any compression or anything like that. I just adjusted the volume track sound level lines for the entire single track but also within the track i added KEYS so that i could lower the volume of loud sounds.
    The whole thiing sounded good when i heard it in GBand.. but in the TV it just didn't sound good. I had loud sounds and soft sounds.. i had to, as i said, keep adjusting the TV volume.
    What effect do i have to add so that 1) there won't be any dangerous changes in sounds( Some too loud, some too quiet) and 2)So that my whole track is in the same level when i play it on a TV.
    I heard that using compressionin helps.. I tried a test, go to track edit and select Comporession->Limiter smooth.
    That sounded like something that would work. and it did sound nice. But i'm not sure if when i play it on tv.. it iwll sound too low or too loud compared to other TV shows.
    In sum, how do i make it so that when i create my movie using a Gband soundtrack composition...and hear it on at TV, that the sound level will be around the same as a regular TV show.. and not have super loudness or something

    Before you experiment with compression, just put clips with different volumes on separate tracks in GB and adjust the volume using the volume slider!

  • How to Download Sound Clips in Flash Player 9?

    Some of our audio book publishers use the Adobe Flash Player
    9 to offer sound clips. I am quite familiar with how to download,
    to our audio books Web store, other types of sound clips such as
    wma and mp3 but haven't figured out how to download the Flash
    Player 9 files.
    I would appreciate advice on how to download the Flash Player
    9 sound clips.

    Go to this Adobe website to see what version you currently have: Flash Player Checker. Then there's a link on the page to send you to the download page for the latest version. This is the only page one should use to download and install the Flash Player.

  • How to make field optional?

    In G/L entry f-02 some of the fields are mandatory. How can I make some of the fields optional? How can I know field status group?

    Hi,
    The Field Status Group is linked to the Field Status Variant which in turn is assigned to a Company Code.
    So if you want to check which Field Status Variant a Company Code has you have to check in IMG company code general data.
    But Generic SAP config allows us to control field stats at Company Code level, Posting Key Level and Transaction Level.
    Hope it helps along with other posts.
    Thanks,
    Praveen

  • How to enable sound in Adobe Flash plugin in Linux ?

    I installed the Flash plugin from Adobe's yum repo, but there is no sound. When I look on the online settings manager, there is no control to set the sound output device.
    On my system, there are multiple sound devices, only one of which works for playback - hw:1,0 in ALSA. In applications which
    allow me to choose an audio device, that works.
    The Totem media player, like Flash, has no audio settings.
    But when I use gnome-sound-properties to set the default playback device to "ALC889 analog", Totem works. Flash does not.

    No, no pulseaudio
    However, I've solved it. Per http://www.seehuhn.de/pages/alsa, If I set the default ALSA device to card 1, then restart Firefox, Flash sound works. As does "aplay" with no options.
    This also works to fix the same issue with the built-in OGG player in Firefox, per my question https://support.mozilla.org/en-US/questions/929698

Maybe you are looking for

  • Can someone please tell me how to format a new disk to ZFS format?

    I have a Sun v240 with Solaris 10 update 8 installed on a single 73GB harddisk. Everything is working fine. I just purchased a another identical harddisk online. I plugged the disk into my v240 and ran 'devfsadm' and solaris found the new disk. I wan

  • Generate XML - Special Character in data causing error

    Hello, I have a procedure written using DBMS_XMLGEN to create xml output. A problem that I am running into is some of my data has an eacute in it. How can I code the XML to account for this and any other weird characters that may exist? (ie - i need

  • How to handle multiple datasources in a web application?

    I have a J2EE Web application with Servlets and Java ServerPages. Beside this I have a in-house developed API for certain services built using Hibernate and Spring with POJO's and some EJB. There are 8 databases which will be used by the web applicat

  • Sorry Demo that did not work

    Sorry Demo but your reply did not work, I tried to download some music but all it did was revert back to re-send the agreement to me, the AGREE button to click did not appear, why cant you put the "AGREE" button on the bottom of the agreement page, i

  • Adobe flash player app in development !

    i ran across a new article about the much needed adobe flash player update for ipods and iphones... just thought i share the good news! its due out by the end of the year weather of not apple likes it! http://tech.yahoo.com/news/pcworld/20091005/tcpc