Can flash handle multiple screens?

hi people,
need some advice please. I want to make an application that works on 2 screen.
on screen1 I need to make GUI with several buttons, sliders, radio buttons, field for dynamic text
on screen2 (big screen / LED / video projector) I want to output photos and simple vector animations that are controlled with GUI on screen1
I don't know if it is possible in Flash to have one output with GUI and other with content. Does Flash recognize multiple screen outputs? Is there an action script command to tell flash projector: this put on screen1 and this put on screen2
PS
I have been using flash when it was version 3. I stopped with MX version and haven't opened it for last 5 years.I was great in as1, ok with as2 but never read/write any command in as3. This is a big challenge for me
thanks in advance

I guess that the northcode link can be helpfull. I haven't looked at their products for quite a while, but I used to think, that they did excellent stuff. Without additional software, I think you could use the local.connection feature and two swfs - one for (remote)-control and one for display. I'm not sure about how to achive full full-screen and not loosing it when working on the controler, but there may be a solution with the help of a full-screen browser...
M

Similar Messages

  • How can we handle multiple applications in session method

    how can we handle multiple applications in .. session method.
    can any body reply me.
    thanks

    Hari,
    hi Check out this sample code to use session method
    REPORT  ztest_report
    NO STANDARD PAGE HEADING
                            LINE-SIZE 255
                            MESSAGE-ID ZRASH.
                    Internal Table Declarations                          *
    *--Internal Table for Data Uploading.
    DATA : BEGIN OF IT_FFCUST OCCURS 0,
             KUNNR(10),
             BUKRS(4),
             KTOKD(4),
             ANRED(15),
             NAME1(35),
             SORTL(10),
             STRAS(35),
             ORT01(35),
             PSTLZ(10),
             LAND1(3),
             SPRAS(2),
             AKONT(10),
           END OF IT_FFCUST.
    *--Internal Table to Store Error Records.
    DATA : BEGIN OF IT_ERRCUST OCCURS 0,
             KUNNR(10),
             EMSG(255),
           END OF IT_ERRCUST.
    *--Internal Table to Store Successful Records.
    DATA : BEGIN OF IT_SUCCUST OCCURS 0,
             KUNNR(10),
             SMSG(255),
           END OF IT_SUCCUST.
    *--Internal Table for Storing the BDC data.
    DATA : IT_CUSTBDC LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    *--Internal Table for storing the messages.
    DATA : IT_CUSTMSG LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : V_FLAG1(1) VALUE ' ',
    "Flag used for opening session.
           V_TLINES LIKE SY-TABIX,
           "For storing total records processed.
           V_ELINES LIKE SY-TABIX,
           "For storing the no of error records.
           V_SLINES LIKE SY-TABIX.
           "For storing the no of success records.
             Selection screen                                            *
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS : V_FNAME LIKE RLGRAP-FILENAME,
                 V_SESNAM  LIKE RLGRAP-FILENAME.
    SELECTION-SCREEN END OF BLOCK B1.
             Start-of-selection                                          *
    START-OF-SELECTION.
    *-- Form to upload flatfile data into the internal table.
      PERFORM FORM_UPLOADFF.
           TOP-OF-PAGE                                                   *
    TOP-OF-PAGE.
      WRITE:/ 'Details of the error and success records for the transaction'
      ULINE.
      SKIP.
             End of Selection                                            *
    END-OF-SELECTION.
    *-- Form to Generate a BDC from the Uploaded Internal table
      PERFORM FORM_BDCGENERATE.
    *--To write the totals and the session name.
      PERFORM FORM_WRITEOP.
    *&      Form  form_uploadff
        Form to upload flatfile data into the internal table.
    FORM FORM_UPLOADFF .
    *--Variable to change the type of the parameter file name.
      DATA : LV_FILE TYPE STRING.
      LV_FILE = V_FNAME.
    *--Function to upload the flat file to the internal table.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      =  LV_FILE
        FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR           = 'X'
        HEADER_LENGTH                 = 0
        READ_BY_LINE                  = 'X'
        DAT_MODE                      = ' '
      IMPORTING
        FILELENGTH                    =
        HEADER                        =
        TABLES
          DATA_TAB                      = IT_FFCUST
        EXCEPTIONS
          FILE_OPEN_ERROR               = 1
          FILE_READ_ERROR               = 2
          NO_BATCH                      = 3
          GUI_REFUSE_FILETRANSFER       = 4
          INVALID_TYPE                  = 5
          NO_AUTHORITY                  = 6
          UNKNOWN_ERROR                 = 7
          BAD_DATA_FORMAT               = 8
          HEADER_NOT_ALLOWED            = 9
          SEPARATOR_NOT_ALLOWED         = 10
          HEADER_TOO_LONG               = 11
          UNKNOWN_DP_ERROR              = 12
          ACCESS_DENIED                 = 13
          DP_OUT_OF_MEMORY              = 14
          DISK_FULL                     = 15
          DP_TIMEOUT                    = 16
          OTHERS                        = 17
      IF SY-SUBRC = 0.
    *--Deleting the headings from the internal table.
        DELETE IT_FFCUST INDEX 1.
    *--Getting the total number of records uploaded.
        DESCRIBE TABLE IT_FFCUST LINES V_TLINES.
      ENDIF.
    ENDFORM.                    " form_uploadff
    *&      Form  Form_bdcgenerate
        Form to Generate a BDC from the Uploaded Internal table
    FORM FORM_BDCGENERATE .
    *--Generating the BDC table for the fields of the internal table.
      LOOP AT IT_FFCUST.
        PERFORM POPULATEBDC USING :
                                    'X' 'SAPMF02D' '0105',
                                    ' ' 'BDC_OKCODE'  '/00' ,
                                    ' ' 'RF02D-KUNNR' IT_FFCUST-KUNNR,
                                    ' ' 'RF02D-BUKRS' IT_FFCUST-BUKRS,
                                    ' ' 'RF02D-KTOKD' IT_FFCUST-KTOKD,
                                    'X' 'SAPMF02D' '0110' ,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    ' ' 'KNA1-ANRED'  IT_FFCUST-ANRED,
                                    ' ' 'KNA1-NAME1' IT_FFCUST-NAME1,
                                    ' ' 'KNA1-SORTL'  IT_FFCUST-SORTL,
                                    ' ' 'KNA1-STRAS' IT_FFCUST-STRAS,
                                    ' ' 'KNA1-ORT01' IT_FFCUST-ORT01,
                                    ' ' 'KNA1-PSTLZ' IT_FFCUST-PSTLZ,
                                    ' ' 'KNA1-LAND1' IT_FFCUST-LAND1,
                                    ' ' 'KNA1-SPRAS' IT_FFCUST-SPRAS,
                                    'X' 'SAPMFO2D' '0120',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0125',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0130',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0340',     
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0360',
                                    ' ' 'BDC_OKCODE'  '=ENTR',
                                    'X' 'SAPMF02D' '0210',     
                                    ' ' 'KNB1-AKONT'  IT_FFCUST-AKONT,
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0215',
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0220',     
                                    ' ' 'BDC_OKCODE'  '/00',
                                    'X' 'SAPMF02D' '0230',     
                                    ' ' 'BDC_OKCODE'  '=UPDA'.
    *--Calling the transaction 'fd01'.
        CALL TRANSACTION 'FD01' USING IT_CUSTBDC MODE 'N' UPDATE 'S'
        MESSAGES INTO IT_CUSTMSG.
        IF SY-SUBRC <> 0.
    *--Populating the error records internal table.
          IT_ERRCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_ERRCUST.
          CLEAR IT_ERRCUST.
    *--Opening a session if there is an error record.
          IF V_FLAG1 = ' '.
            PERFORM FORM_OPENSESSION.
            V_FLAG1 = 'X'.
          ENDIF.
    *--Inserting the error records into already open session.
          IF V_FLAG1 = 'X'.
            PERFORM FORM_INSERT.
          ENDIF.
    *--Populating the Success records internal table.
        ELSE.
          IT_SUCCUST-KUNNR = IT_FFCUST-KUNNR.
          APPEND IT_SUCCUST.
          CLEAR IT_SUCCUST.
        ENDIF.
    *--Displaying the messages.
        IF NOT IT_CUSTMSG[] IS INITIAL.
          PERFORM FORM_FORMATMSG.
        ENDIF.
    *--Clearing the message and bdc tables.
        CLEAR : IT_CUSTBDC[],IT_CUSTMSG[].
      ENDLOOP.
    *--Getting the total no of error records.
      DESCRIBE TABLE IT_ERRCUST LINES V_ELINES.
    *--Getting the total no of successful records.
      DESCRIBE TABLE IT_SUCCUST LINES V_SLINES.
    *--Closing the session only if it is open.
      IF V_FLAG1 = 'X'.
        PERFORM FORM_CLOSESESS.
      ENDIF.
    ENDFORM.                    " Form_bdcgenerate
    *&      Form  populatebdc
          FOrm to Populate the BDC table.
    FORM POPULATEBDC  USING    VALUE(P_0178)
                               VALUE(P_0179)
                               VALUE(P_0180).
      IF P_0178 = 'X'.
        IT_CUSTBDC-PROGRAM = P_0179.
        IT_CUSTBDC-DYNPRO = P_0180.
        IT_CUSTBDC-DYNBEGIN = 'X'.
      ELSE.
        IT_CUSTBDC-FNAM = P_0179.
        IT_CUSTBDC-FVAL = P_0180.
      ENDIF.
      APPEND IT_CUSTBDC.
      CLEAR IT_CUSTBDC.
    ENDFORM.                    " populatebdc
    *&      Form  FORM_OPENSESSION
          Form to Open a session.
    FORM FORM_OPENSESSION .
    *--Variable to convert the given session name into reqd type.
      DATA : LV_SESNAM(12).
      LV_SESNAM = V_SESNAM.
    *--Opening a session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
       EXPORTING
         CLIENT                    = SY-MANDT
         GROUP                     = LV_SESNAM
         HOLDDATE                  = '20040805'
         KEEP                      = 'X'
         USER                      = SY-UNAME
         PROG                      = SY-CPROG
    IMPORTING
       QID                       =
       EXCEPTIONS
         CLIENT_INVALID            = 1
         DESTINATION_INVALID       = 2
         GROUP_INVALID             = 3
         GROUP_IS_LOCKED           = 4
         HOLDDATE_INVALID          = 5
         INTERNAL_ERROR            = 6
         QUEUE_ERROR               = 7
         RUNNING                   = 8
         SYSTEM_LOCK_ERROR         = 9
         USER_INVALID              = 10
         OTHERS                    = 11
      IF SY-SUBRC <> 0.
        WRITE :/ 'Session not open'.
      ENDIF.
    ENDFORM.                    " FORM_OPENSESSION
    *&      Form  FORM_INSERT
          fORM TO INSERT ERROR RECOED INTO A SESSION.
    FORM FORM_INSERT .
    *--Inserting the record into session.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          TCODE                  = 'FD01'
        POST_LOCAL             = NOVBLOCAL
        PRINTING               = NOPRINT
        SIMUBATCH              = ' '
        CTUPARAMS              = ' '
        TABLES
          DYNPROTAB              = IT_CUSTBDC
        EXCEPTIONS
          INTERNAL_ERROR         = 1
          NOT_OPEN               = 2
          QUEUE_ERROR            = 3
          TCODE_INVALID          = 4
          PRINTING_INVALID       = 5
          POSTING_INVALID        = 6
          OTHERS                 = 7
      IF SY-SUBRC <> 0.
        WRITE :/ 'Unable to insert the record'.
      ENDIF.
    ENDFORM.                    " FORM_INSERT
    *&      Form  FORM_CLOSESESS
          Form to Close the Open Session.
    FORM FORM_CLOSESESS .
      CALL FUNCTION 'BDC_CLOSE_GROUP'
        EXCEPTIONS
          NOT_OPEN    = 1
          QUEUE_ERROR = 2
          OTHERS      = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " FORM_CLOSESESS
    *&      Form  FORM_FORMATMSG
          Form to format messages.
    FORM FORM_FORMATMSG .
    *--Var to store the formatted msg.
      DATA : LV_MSG(255).
      CALL FUNCTION 'FORMAT_MESSAGE'
        EXPORTING
          ID        = SY-MSGID
          LANG      = SY-LANGU
          NO        = SY-MSGNO
          V1        = SY-MSGV1
          V2        = SY-MSGV2
          V3        = SY-MSGV3
          V4        = SY-MSGV4
        IMPORTING
          MSG       = LV_MSG
        EXCEPTIONS
          NOT_FOUND = 1
          OTHERS    = 2.
      IF SY-SUBRC = 0.
        WRITE :/ LV_MSG.
      ENDIF.
      ULINE.
    ENDFORM.                    " FORM_FORMATMSG
    *&      Form  form_writeop
          To write the totals and the session name.
    FORM FORM_WRITEOP .
      WRITE :/ 'Total Records Uploaded :',V_TLINES,
               / 'No of Error Records :',V_ELINES,
               / 'No of Success Records :',V_SLINES,
               / 'Name of the Session :',V_SESNAM.
      ULINE.
    ENDFORM.                    " form_writeop
    Don't forget to reward if useful..

  • IE running under XP can't handle multiple SWF files, Why?

    I noticed that IE 8 running under Windows XP cannot handle multiple swf files in one page.
    Up to about 10 files is no problem they are loaded and we can play them ( buttons that start a small audio file).
    But more of these files in one page will stop IE.
    Firefox ( 3.6.28) runs them fine.
    And also IE 8 and/or Firefox under Windows 7 handles them perfectly.
    Has anyone any idea what can cause this and how to resolve this?
    Thanks,
    Onno Tomson
    The Netherlands

    Sorry...I still don't get it. What is it about Windows FUS that keeps iTunes from running running the process twice? It can run many other non-Apple windows apps in multiple user sessions (commercial apps, open source apps, audio/video apps, networked apps). I can even run two different virtual machines at the same time under two different user sessions.
    Why can iTunesHelper.exe run twice but iTunes.exe cannot? Why can I run Safari at the same time? Quicktime Player runs fine under multiple user sessions.
    Blaming it on Windows and/or FUS sounds like FUD. Can anyone give a valid technical reason? Semaphores? Mutexes? An admission (and explanation) that the Windows version is purposely crippled?

  • How can I handle touch screen events with Swing?

    Hi,
    I was wondering how i can handle touch screen events. Are there APIs for that or is it just a mouse event?
    Thank you in advance.
    Tim

    I have recently created an application that ran on a touch screen system. I used the normal mouse events attached to the swing components (onClick) and these were translated by the touch screen. Typically I created a calculator type keypad, touched the screen on the text box where I wanted the data to appear and then pressed the keypad buttons to populate the field. No special drivers, just using swing components
    Hope that helps
    yeah, this is really useful info.. me too trying to build an application for the touch screen... just wondering how other events like focus gained, tree selection events are recognized by touch screen? can we have focus and tree, table selection events etc, as it is in the touch screen as well?? or everything is just mouse event only??

  • Can i have multiple screens on my mac book pro when connected to my iMac using a firewire cable?

    What do I need to have multiple screens when I connect my iMac to my Mac book

    You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • Can we handle multiple fields delimiter in sql*loader

    Hi,
    Users wants to load the data from each of their individual system. But problem is when they save the csv file, due to their sytem setup some files gettng saved with pipe (|) seperated and on some system it is saved with comma (,) sepearted fields.
    Can we handle both these field seperator in control file?
    Please suggest
    Thanks,
    Rahul

    Rahul,
    I recommned you should use "|" as "," can be embedded in a text string. I guess you can pass a directive to use to deliver "|" delimited file :). If you want to handle both then you might have to write a shell script or bat to pass delimiter as an argument which will edit and replace your control file.
    Regards

  • Can JSP handle multiple windows?

    Hi,
    What I am going to do is:
    I have multiple windows, each has several forms to let the user to set database query conditions. The query result will depends on all the conditions specified in all the forms of all the windows.
    Question:
    Can I use one(or more) .JSP file(s) to handle this situation? if not, could you give me some hints?
    Thanks a lot in advance!
    -Wendy

    I don't know how you will manage to forcefully grab informatoin from a different browser window. The user will have to hit return on each before it can be seen.
    Well unless you put the data into the session as it is being entered. This will likely require some javascript or VB Script. Whatever it is, its going to be nasty. I would onlyy do this as a Masters Thesis experiment :D

  • Can Flash play multiple audio and video files at the same time?

    Hello,
    I would like to create a web-based client/application that
    can play multiple a/v files or stream multiple a/v files at same
    time. Is this possible with Flash, without the use of RTMP? If yes,
    can you please provide an example. Thanks in advance.
    Regards,
    Nilang

    You never edit within a clip. The purpose of opening a clip is to make sync adjustments, audio equalization, color correction, stabilization, things that you might want do overall to the master clip before you edit it. You edit the portion of the clip you want from the browser into a project. There is really very seldom any need to open a clip into the timeline.

  • Can iTunes handle multiple versions of the same app?

    Now that iTunes, iOS, and iDevices have been around long enough for users to have multiple devices on multiple iOS versions, is Apple doing anything to allow users to run multiple versions of the same app through iTunes?
    Case in point I have an older iPhone running iOS-5 with a few apps that are now running exclusively on iOS-7, my new iPhone is on iOS-7. Once I sync my new phone with the updated versions of the app, iTunes usually dumps the old version into the trash bin. But what if I need that older version to continue running it on my iOS-5 iPhone?
    Is there a workaround for this? I've considered using an old PC as my base computer for sycning the new iPhone, but I still fear that the new app updates will go to all devices running on my iTunes account through iCloud.
    If Apple doesn't address this problem at some point then as the years go by certain iDevices will eventually become completely useless even if they are a fully functional piece of electronics.
    (spare me the "that's their plan, corporate greed" replies).
    Thanks in advance!

    Yes, the apps SHOULD be developed to work with the new stuff, No, not all apps keep their old versions in the App Store, BUT, finally Apple has ALLOWED developers to have multiple versions of an App in the store.
    The problem isn't about retarding development, it's about Apple trying to force users to buy new things that they don't need because the old thing, though it works just fine & has the apps that you need, is unable to be used because the apps have been updated in iTunes. Why can't you allow me to keep Facebook 5.0.1 for my old iPhone 3G that is used as an iPod, Facebook 6.7.2 for my iPod Touch & Facebook 19.6.4 for my new iPhone 8? As of now I can download the old version on the old device, but when I sync it it always tries to 'Update' it & then says 'Can't be updated because this version is incompatible with this device' making the sync take 3x as long & meaning that if my device crashes for some reason or I choose to restore it becasue of problems I have to go find the old version, hoping that I saved it, delete the new version, drag in the old version, THEN sync & then move the old version back before updating from my other device (Having done this with the 3G & iTouch 4 for years I learned that when the sync transfers purchases from the phone it 'replaces' the file instead of moving the old 1 to the trash).
    Some of these apps I have purchased, & by forcing the update to remove the old version Apple is essentially taking something I have purchased & saying I am no longer allowed to use it.
    Just in the what 3 months since the new iOS came out I have noticed that now over half of the apps can't be run on my iPod Touch 4G.
    It's simple, iTunes should either:
    Keep a record of the devices that have synced (I know, it already does) & keep the newest version for the lated iOS in iTunes
    Let users have multiple versions of the same app in iTunes & allow us to disable update checks for certain apps
    Allow users to choose to download from iTunes the different versions of the apps available from the developer
    OR
    Allow users to edit the info on Apps, unlinking them from their original & updates & allowing users to keep an old version & still download a new 1

  • Can we handle multiple forms  in struts application

    In one jsp i will handle a form based on the input ,I must retrieve data and set it in another form class is it possible if so how
    addResource.jsp
    <html:form >
    <html:text name="resourceForm" property="resourceId" />
    </html:form>
    In action class method
    retrive resourceid based on that retrieve employee information
    and need to set in another form for display is it possible

    you can forward the request to a different action before redirecting to the second form, create another action like
      <action path="/secondFormAction"
                      type=""
              name="secondForm">
              </action>
    then in your resource form action
    <action path="" name="resourceForm" >
        <forward name="success" path="/secondFormAction.action"/>
    </action>the secondFormAction will create the form for you and u could put the data in request attribute and access it in the secondFormAction and then pupulate the data in the secondForm and then redirect the request to the second JSP.
    hope you have got the point here, I wouldnt wont to paste anycode until you try it out.

  • How can I handle multiple Queries in single Report?

    Using Reports 6.0, i have 2 queries Q_1, Q_2 and I have define a user parameter, Flag_1 char(1).
    I wish to execute Q_1 if Flag_1 = 'T' and Q_2 if flag_1 = 'F'
    How can i do this?

    Hello Fayad,
    Another way in which you can achieve the same result in one report is by framing your two queries something like:
    Q_1. select * from emp where :flag_1 = 'T'
    Q_2. select * from dept where :flag_2 = 'F'.
    This will cause the appropriate query to be executed, depending on the value of the flag_1 parameter. Additionally, you would need to create two report blocks in your layout, one for each of the above queries. You can create format triggers for the enclosing frame of these blocks, which will show/hide the entire block depending on the value of the flag_1 parameter. For example, the format trigger for the EMP report block (based on query Q_1) frame would look like:
    function M_G_EMPNO_GRPFRFormatTrigger return boolean is
    begin
    if (:p_1 = 10) then
    return (TRUE);
    else
         return (FALSE);
    end if;
    end;
    Thanks,
    The Oracle Reports Team.

  • Can I place multiple screen shots onto one document?

    I need to put several pages of text(or drawings), sized down onto one document.  any ideas on how I can do that??? Thanks !
    I have the TextEdit program.

    Yes. Just drag the screenshots into place, or choose Edit > Attach Files...

  • Can iTunes handle multiple users

    Can iTunes be used as follows - user 1 listens in room 1 to rock songs while at same time user 2 in room 2 listens to jazz while user 3 in room 3 watches movie?

    See this thread for answers: http://discussions.apple.com/message.jspa?messageID=1285867#1285867
    Post back here with questions if you have any.

  • Can Business One handle multiple company codes / multi national co. codes?

    I have been told that SAP Business one can not handle multiple company codes, is this correct ?
    Pl let me know.
    In addition to this, can it handle multiple company codes, that belongs to different countries.
    Thanks
    Arun Tulsi

    Answer from you second question: Yes and No.  When these different countries are in the same cluster, i.e. A or B , you can. Otherwise, you can't.
    Now back to your first question. If you want use B1 for multiple companies which are not related, then you shouldn't because any B1 licenses should be under strict control.  License is not shareable.  If they under one group, then there are no problem to have multiple companies with one exception as the first answer to your second question..
    Thanks,
    Gordon

  • Can Flash MX 2004  handle Director files (.dir)

    Hi,
    Can Flash handle Director movies? I am making a presentation
    of my artworks in Flash environment; I have both Flash and Director
    movies. I know that I can import all my swf movies into Director
    MX2004 to create a standalone projector and play both swf and dir
    movies in Director MX 2004. Does the same work if I import dir
    files into Flash MX 2004 Pro?
    Thanks
    Uti

    uxk8396 wrote:
    > What will be the ideal solution in this case. I do not
    have Director MX 2004.
    > I have only Macromedia Studio mX 2004 Pro.
    Hi Uttam,
    If you need Director movies to be integrated with Flash
    movies, there is only one
    way, use Director. If you don't have Director, then you won't
    be able to use the
    Director movies. So, either, recreate the Director movies in
    Flash (if it's
    possible), or better yet, get Director
    regards
    Dean
    Director Lecturer / Consultant
    http://www.fbe.unsw.edu.au/learning/director
    http://www.multimediacreative.com.au

Maybe you are looking for

  • Moving TM drive

    I am currently using a 2TB drive in an external SATA 3 enclosure as a Time Machine disk for my Mac Pro 10.6.8. The disk has two partitions, one to back up my 250GB SSD startup drive and one to back up my 500GB data drive. Since my Mac Pro sometimes l

  • My iphone 4s locked when i want my software to be update. now my iphone is off please helpe me for turn on

    hi help me for turn on my iphone 4s

  • Dynamic Dropdown key bind in the row

    hi all, i am facing a typical scenario where, <b>for each row in a table of 10 cells i have 1 cell with dropdownbykey control. the requirement is that based on the row's data the dropdownkey's content differs. ie., row 1's -> dropdownkey control's co

  • A bunch of relevant game hack tools

    A bunch of relevant game hack tools Archlord 2 Beta Key - https://localize.drupal.org/node/21868 Dino Hunter Deadly Sores Hack - https://localize.drupal.org/node/22028 Kim Kardashian Hollywood Hack - https://localize.drupal.org/node/22133 Timberman H

  • 8.1.2 Doesn't Upgrade 8.x on Mac OS

    I have systems with Reader 8.0.0 installed. When I downloaded the latest DMG for Reader 8.1.2 and run the install it creates a new install next to "Adobe Reader 8" called "Adobe Reader 8_". So now I have Reader 8.0.0 still installed and I also have 8