Extend length of menu screen or loop program?

I'm prepping a DVD of corporate sponsor slides and and event information that will run for a 6 hour event on monitors. I'd love to be able to take my whole final cut project and make it the DVD menu so it loops all night - but I get cut off at about 30 seconds. Can that be extended indefinitely? How?
If not - is there a way to create a loop in a media file that is selected from the menu so that this runs indefinitely?

I'll have maybe a 5-10 minute montage of motion slides with sponsor logos, event information, etc. I was thinking if I leave it as the DVD menu, it will loop on it's own without direction from the DVD player - but if I can put it on the menu and have it loop automatically via dvd studio pro - that'll work too. Whatever should work best.
If there is not a limit to how long menu animation can last, I can just let the players loop on the menu all night. If there is a limit, I guess I need to know how to loop a program automatically.

Similar Messages

  • Can I make two differents selection screen in my program?

    Hi experts!!
    I don't know how to male this, the problem is that I need to make two differents selection screen in my program because I have two differents kinds of button,
    BUTTON1         BUTTON2          BUTTON3
    When I press button1 I received.
    BUTTON4         BUTTON5          BUTTON6
    Now If I press on button4, how can I pick up the event? the name or something associate to this button4?
    Thanks a lot and regards
    Rebeca

    Hi and thanks,
    I've tried with your code,  Velu Lakshmanan,  and I only received another screen with the buttons... I need to put this button in the same screen, now I've this, but I can't receive the event associate to the second's buttons,
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON  1(79) DTP USER-COMMAND DTP
    VISIBLE LENGTH 25.
    SELECTION-SCREEN PUSHBUTTON 28(79) EMP USER-COMMAND EMP
    VISIBLE LENGTH 25.
    SELECTION-SCREEN PUSHBUTTON 55(79) ABS USER-COMMAND ABS
    VISIBLE LENGTH 25.
    PARAMETERS: PROC_TYP TYPE I DEFAULT 1 NO-DISPLAY.
    SELECTION-SCREEN END OF LINE.
    * Informes de datos de tiempo.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-FED USER-COMMAND FED MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-DCH USER-COMMAND DCH MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-ACH USER-COMMAND ACH MODIF ID DT1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-FII USER-COMMAND FII MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-PTB USER-COMMAND PTB MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-PTS USER-COMMAND PTS MODIF ID DT1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-ACI USER-COMMAND ACI MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-FIM USER-COMMAND FIM MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-LDH USER-COMMAND LDH MODIF ID DT1.
    SELECTION-SCREEN END OF LINE.
    * Informes de empleados
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-LDP USER-COMMAND LDP MODIF ID EM1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-PDF USER-COMMAND PDF MODIF ID EM1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-LDT USER-COMMAND LDT MODIF ID EM1.
    SELECTION-SCREEN END OF LINE.
    * Informes de bajas
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-BAJ USER-COMMAND BAJ MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-VMA USER-COMMAND VMA MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-SDE USER-COMMAND SDE MODIF ID AB1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-LDB USER-COMMAND LDB MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-LDA USER-COMMAND LDA MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-DHT USER-COMMAND DHT MODIF ID AB1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B1.
    * Pintamos los botones que necesitemos mostrar según la opción seleccionada
    AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.
        WHEN 'DTP'. PROC_TYP = 1.
        WHEN 'EMP'. PROC_TYP = 2.
        WHEN 'ABS'. PROC_TYP = 3.
      ENDCASE.
    AT SELECTION-SCREEN OUTPUT.
      CASE PROC_TYP.
    * Cuando el botón que ha seleccionado es "Datos de tiempo"
        WHEN 1.
          CALL FUNCTION 'ICON_CREATE'
            EXPORTING
              NAME   = ICON_OKAY
              TEXT   = TEXT-DTP
              INFO   = TEXT-AUS
            IMPORTING
              RESULT = DTP.
          EMP = TEXT-EMP.
          ABS = TEXT-ABS.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'DT1'.
              SCREEN-INPUT = '1'. SCREEN-INVISIBLE = '0'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'EM1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'AB1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN 2.
          CALL FUNCTION 'ICON_CREATE'
            EXPORTING
              NAME   = ICON_OKAY
              TEXT   = TEXT-EMP
              INFO   = TEXT-AUS
            IMPORTING
              RESULT = EMP.
          DTP = TEXT-DTP.
          ABS = TEXT-ABS.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'DT1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'EM1'.
              SCREEN-INPUT = '1'. SCREEN-INVISIBLE = '0'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'AB1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN 3.
          CALL FUNCTION 'ICON_CREATE'
            EXPORTING
              NAME   = ICON_OKAY
              TEXT   = TEXT-ABS
              INFO   = TEXT-AUS
            IMPORTING
              RESULT = ABS.
          DTP = TEXT-DTP.
          EMP = TEXT-EMP.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'DT1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'EM1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'AB1'.
              SCREEN-INPUT = '1'. SCREEN-INVISIBLE = '0'. MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
      ENDCASE.
    Help please... I don't know how can I make this.....
    If I use screen...how can I put this screen in the correct place?
    Thanks a lot
    Regards,
    Rebeca

  • Differnece between EXIT and LEAVE TO SCREEN or LEAVE PROGRAM?

    HI Experts,
    Differnece between EXIT and LEAVE TO SCREEN or LEAVE PROGRAM?
    thanks in advance

    Syntax
    EXIT.
    Effect
    If the EXIT statement is executed outside of a loop, it will immediately terminate the current processing block.
    After the prodessing block has been executed, the runtime environment behaves in such a way that it follows with the exception Reporting Event Blocks START-OF-SELECTION and GET the schema from Leave Processing Blocks.
    After the Reporting Processing Blocks START-OF-SELECTION and GET have been exited using EXIT, the runtime environment does not trigger any further reporting events. Instead, it directly calls the list processor for displaying the basic list.
    Note
    We recommend using EXIT only within loops (see EXIT (loops) ). Instead, use RETURN to leave processing blocks.
    LEAVE [TO] SCREEN
    Syntax
    LEAVE { SCREEN | {TO SCREEN dynnr} }.
    Variants:
    1. LEAVE SCREEN.
    2. LEAVE TO SCREEN dynnr.
    Effect
    This statement ends the processing of the current screen. The current processing block of the ABAP program and the current processing block of the dynpro are left immediately.
    Variant 1
    LEAVE SCREEN.
    Effect
    The variant LEAVE SCREEN calls the current next screen. This is either statically specified in the properties of the current screen or has been set before using the statement SET SCREEN.
    Variant 2
    LEAVE TO SCREEN dynnr.
    Effect
    The variant LEAVE TO SCREEN calls the screen with the number dynnr as the next screen. A data object of the type n of the length 4 is expected for dynnr. It must contain either the screen number of a screen in the main program of the current program group or the value 0. Otherwise, an exception that cannot be handled is raised. This statement is a short form of the statements SET SCREEN dynnr and LEAVE SCREEN.
    Note
    This statement does not terminate the entire dynpro sequence; it branches to an additional screen in the same sequence. Only if the number 0 is used to branch to the next screen, LEAVE SCREEN terminates the screen sequence.
    LEAVE PROGRAM
    Syntax
    LEAVE PROGRAM.
    Effect
    This statement immediately ends the current main program and deletes its internal session - including all loaded programs, instances, and their data .
    The LEAVE PROGRAM statement can appear anywhere within any processing blocks. It ends the program regardless of the program/object or the program group of the internal session in which it is executed.
    Regards,
    Pavan P.

  • Creating a screen in report program and calling that screen in program.

    Hi,
    I have a report program and I want to give output in different screen.
    can any one tell me how to create a screen in executable program and calling that screen in program in END-OF-SELECTION for displaying results.
    Thanks a lot.
    Kiran

    Hi,
      Open your program in SE80. Right click on your program. Click CREATE->Screen menu. This will allow you to create screen for the program. 
    In the End-of-selection event call the screen using the  commands CALL SCREEN or LEAVE TO SCREEN or SET SCREEN.
    CALL SCREEN
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba4e635c111d1829f0000e829fbfe/content.htm
    LEAVE SCREEN/SET SCREEN
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbab3635c111d1829f0000e829fbfe/content.htm
    Regards,
    Vara

  • Warning- extend your available memory to allow other programs to close

    Warning- extend your available memory to allow other programs to close

    Go to Settings>General>About>Available How much available space do you have?
    Or it could be saying you don't have sufficient RAM because you have too many apps open.
    For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
     Cheers, Tom

  • Frozen Ipod/ Ipod keeps rebooting at black apple logo screen (on loop)

    Frozen Ipod/ Ipod keeps rebooting at black apple logo screen (on loop)
    -I've already replaced my old 60 GB Ipod in exchange for an 80GB, I bring it home, sync it up with Itunes v7.02 and everything works fine for a while. Not even 24 hours later I go down into my artist/song directory to play a song, and it freezes again. I do the menu center key soft reboot a few times to bypass it and it works for awhile. I've tried looking for current updates for software on it, Restoring it, Resyncing and now It gets to the point everytime I unplug the ipod from charging I get back to the menu and try to play a song or video and it does nothing, it freezes everytime.
    There has to be an explanation as to why my first one did it and why my new 80GB is doing it.
    I've already ran a diagnosis on all the files in the ipod all of them come back clean.
    Help me out.
    If you know how to resolve this issue reply and/or email me
    [email protected]

    My ipod is having a similar problem. The black apple logo has been the only thing I see on my ipod. I went a step farther and held the select and play/pause button to get it into disk mode. Once I am here I cannot proceed. I do not have computer that I hook it up to and have transferred the desired songs from an ex-girlfriends computer which I do not have access. What can I do once I have it in disk mode if I do not have a computer available?

  • How to create the same cool 'introduction' menu/screen that Jira has?

    If you login to Jira for JavaFX bugs https://javafx-jira.kenai.com/
    there is a cool 'introduction' menu/screen "What's new with Jira 5.2"
    How was it implemented? I would like to have a similar screen for my application.

    Hi,
    Kindly go through this sample program below:
    DEMO_LIST_FORMAT_INPUT *and
    check this function module:
    FREE_SELECTIONS_DIALOG *.
    Hope it helps
    Regards
    Mansi

  • Browser window not taking up whole screen, despite actual program doing so.

    At one point I opened FF and the browser window stopped taking up full screen. The program actually fills the screen, but the actual browser window has some sort of right hand margin. Right clicking in right margin produces no pop up menu. Browser currently looks as such http://i.imgur.com/8pgtE.jpg. I've tried closing, force closing, and restart of PC and does not revert back to normal. No plug in installed, however cannot be certain one did not update, although I believe none did.

    Found my culprit. Whitespace Remover for Google Plus plugin recently updated evidently. I disabled v1.28 and everything went back to normal

  • IDVD - dvd plays automatically without going to the menu screen

    Hi,
    I'm new to iDVD and burned my first project yesterday, after transfering it from iMovie.
    A problem: I created chapter markers in iDVD, which when imported into iDVD appeared there. The home page let's you choose either to play the movie or select a scene. However, after burning the project to DVD and inserting it into a DVD player, it starts the movie automatically!
    I would like it to go, by default, to the menu screen when inserting into a DVD player - so I can choose scenes. Any suggestions how I can get it to do that?
    Thank you,
    Mont

    As you have rightfully pointed out above; I wouldn't assume iDvd'08 and iDvd'09 are identical versions. But they are very similar. There are more significant differences within separate iMovie versions, as well as iPhoto, GB, etc.
    Have I tested the difference between iDvd'08 vs. iDvd'09? No, not yet. As soon as I do I'll make every attempt to post a few of the differences. At the moment, I'm looking into separate volumes / hard drive bootability differences between Tiger vs. Leopard on both an external FW HD as well as internal ATA and SATA hard drives. And it seems I have my work cut out for me in this regard for at least the next few weeks. As soon as I complete this latter issue I will come back to iDvd.
    Under Tiger I didn't have to worry about making a clone (using CCC or SuperDuper) of my existing volume/s that contained iDvd and other i-apps. But apparently (at least at first glance) this is longer the case under Leopard.
    Message was edited by: SDMacuser

  • Is there a way to make the resolution of my menu screens better?

    When I burn my DVD the resolution is realy bad on the menu screens and the color is extremely muted and muddy is there a way to fix this?

    a. What material did You use ?
    • video codec (.mov, .mp4, .avi - is no codecs but containers - What's in  them?)
    • audio file format
    • photo file format
    b. What video editor did You use
    • iMovie HD6
    • iMovie'08 or 09 or 11
    • FinalCut (Express/Pro/Pro-X)
    c. 120 minutes - Are You using a DL-DVD ?
    Duration is Movie time PLUS MENU. Menu can take 15 minutes or even more.
    iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1)
    iDVD 6 has the two last ones
    • Professional Quality (movies + menus up to 120 min.) - BEST
    • Best Performances (movies + menus  less than 60 min.) - High quality on final DVD
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6) (movies + menus up to 120 min.) - slightly lower quality than above
    About double on DL DVDs.
    d. Frame rate: Don't know - PAL or NTSC or 24fps
    Open in QuickTime Player and open Inspector and read (codec and frame rate)
    e. Burn speed: Default
    Set it down to x4 - Better over all result.
    Yours Bengt W

  • How do i drag media to the menu screens in premiere elements 13? I can't see my audio files and the menu screens at the same time. In prior versions it was easy

    How do i drag media to the menu screens in premiere elements 13? I can't see my audio files and the menu screens at the same time. In prior versions it was easy?
    It is very cumbersome to "re browse" for audio files/pics/movie clips to add to menu screens. Certainly there is a way to view the media and menu screen at the same time so I can drag and drop?

    Jayhawk
    I think I know exactly what you are seeking and believe it cannot be done in Premiere Elements 11, 12, and 13 as it can be done in versions earlier than 11 where the Disc Layout and Project Media are viewed side by side.
    Premiere Elements 13 uses a Movie Menu customization workspace which is not allowing viewing of Project Assets in the Expert workspace at the same time.
    ATR

  • How to call  Screen in another program from exsisting program

    Hello Frieds,
    Can any one help me how to call  a screen  in another program (Say "test2") from exsisting program(say "test1')
    If above case is possible then how to access the fields in the target screen?
    Your responce is greatly appreciated.
    Best Regards,
    Rakesh

    Hi Rakesh,
    If you wish to use ONLY the screen of another program, call transaction  will not help you, because the called transaction will be fully executed (and not only the screen), and the acess to screen field wil be difficult.
    When you wish to access the same screen from more than one program, you can create this screen in a function module and in this way you can call the function (to display the screen) in many programs.
    Best regards,
    Leandro Mengue

  • How to Use Edit - Cut  menu Command in my program

    Hi All,
    I want to call edit->cut menu action from my program, i have tried with textmodel->cut and also scrapsuite-> cut method, it works for normal text but i have a document with text from Word documents, when i cut the text from menu edit->cut it works properly, but when i tried to cut it from my code i get asserts like owneditem->getconnectedtotext() and the system crashes.can anybody guide me in this regard
    Thanks
    Madhu

    Hi i tried the following code<br /><br />SelectText (poTextModel, oRangeData);<br />InterfacePtr<IActionComponent> iptrActionComponent(CreateObject2<IActionComponent>(kScrapComponentBoss));<br />if (iptrActionComponent != nil )<br />{<br />IActiveContext *poActiveContext = gSession->GetActiveContext ();<br />if (poActiveContext != nil)<br />b iptrActionComponent->DoAction (poActiveContext, kCutActionID); asserts at this point<br /><br />}<br /><br />I am getting "About to use nil interface ptr!" assert,<br /><br />SelectText (poTextModel, oRangeData)->(My function which selects the text of specified range in the specified textmodel) <br /><br />Is anything wrong in the above code

  • How to set Screen type "Selection Screen" in Dialog program

    Hi Experts,
    I have copied a screen 400 from a program into my program. In that screen in source program, the screen type was defined as 'Selection Screen'. After i copied that screen into my program, the screen type Selection Screen option is disabled. How to set the screen type of a screen to Selection Screen.
    I am currently getting the following error
    "Error when generating the selection screen "0400" of   "Ztest_screen                 ".
    I tried running the generation program RSDBGENA. There the diagnosis was given as follows:
    When generating the report Ztest_screen and its selection screen, an existing screen 1000 (not a selection screen) was overwritten.
    The selection screen was defined as follows:
    SELECTION-SCREEN BEGIN OF SCREEN 400 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK blck1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_matnr FOR mara-matnr.
    PARAMETERS:     p_werks TYPE werks_d OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK blck1.
    SELECTION-SCREEN END OF SCREEN 400 .
    I am calling the screen 400 with selection screen declarations in PBO of screen 0100.
    CALL SUBSCREEN sub_scr INCLUDING 'Ztest_Screen'  '400'.
    Where am i going wrong? Your inputs are needed.
    Thanks

    Thanks Przemysław and Nabheet for your suggestions.
    I had copied the generated screen 400 also from the source program into my program. This was the error. I deleted that and the report got activated now.
    Both the source and destination programs are not module pool. They are executable programs.
    Thanks

  • Selection-screen in module program

    Hi,
    I have created a module pool prog.
    Now the new regd. is that I want to create selection-screen before displying the actual screen.
    But when I m trying to use selection screen then I m getting the message that it is not possible in type 'M' as my program is module pool.
    I m using screen 9000 to display the records, now where to write selection screen in the program?
    I think in PBO but getting some error, I have created one screen and in that defined a subscreen but it is giving some error.
    So any body knows how to add selection screen in 'M' type program?
    Thankx in advance.
    Umesh

    Hi,
    You can create a selection-screen for a module pool program.
    Create a new program with executable type. Create the selection screen as you would do in a normal program. Once you give data in the selection and press F8 button, based on the logics written, the O/P must appear in a table control. This is what your requirement is:
    A example below for your understanding.
    name of the prog : ZTEST
    Type: Exectable report (I)
    *----Selection Screen -
    SELECTION-SCREEN BEGIN OF BLOCK IPDATA WITH FRAME TITLE TEXT-001.
    PARAMETERS: PR_MONTH LIKE BOITEM-SPMON.
    SELECT-OPTIONS: SO_VKGRP FOR KNVV-VKGRP.
    SELECTION-SCREEN END OF BLOCK IPDATA.
    SELECTION-SCREEN BEGIN OF BLOCK ORGDATA WITH FRAME TITLE TEXT-002.
    SELECT-OPTIONS: SO_REGIO FOR KNA1-REGIO,
                    SO_KUNNR FOR KNA1-KUNNR,
                    SO_WERKS FOR T001W-WERKS.
    SELECTION-SCREEN END OF BLOCK ORGDATA.
    *--Selection Screen Events--
    START-OF-SELECTION.
      W_CURMFDAY = SY-DATUM.
      W_CURMFDAY+6(2) = '01'.
      PERFORM F001_GETDATA.
      IF SY-DBCNT EQ 0.
        MESSAGE S017(ZSFL).
        EXIT.
      ENDIF.
      PERFORM F002_ADDITIONALDATA.
      CALL SCREEN 100.
    For this screen 100, both the PBO and PAI can be declared in this main program itself.
    Regards,
    JLN.

Maybe you are looking for

  • IOS 7

    Anyone noticed the problem with "AIrplane Mode" issues? Issue: When you turn the Airplane Mode on and quickly turn it off, the phone doesnt pick the network at times and stays in "Airplane Mode" itself. I have this problem on Multiple Devices running

  • FB60 Layout change

    Folks, I have a requirement that asks me to change the order of the  columns that appear at the bottom portion of FB60. 1. Need to suppress(hide) some of the columns. 2. Change the order in which they appear. If possible, please do give a detailed wa

  • Playback of imported videos

    I am having problem with playback of my videos that have been imported into iMovie. They keep freezing a frame while the music keeps playing and the play button is highlighted. If iclick somewhere else on the time line it starts again but then keeps

  • Error with plant in as01

    hi, I have defined a location within the plant. When I am assigning it to asset master (AS01) . It is giving me error message that entry does not exist in table T499S. I checked back and entry is there in the table. How to proceed on this . regards J

  • Can't get flash to work on Safari

    Hey so recently I wiped my hard drive and reinstalled snow leopard to get rid of a messy computer full of files. Anyways when I reinstalled snow leopard I had to download adobe flash again. The download and install go fine but when I open up Safari i