Screen based document max dimensions

Hi,
I'd like to create a flash screen based document/application
that will automatically load when the CD that contains it is put
into the disc drive of a computer. What do you have to do to make
this happen?
I was also wondering if anyone knew how to make it so that
the flash document automatically opens to fill the full screen of
the monitor. How would this be affected if the user had a wide
screen? Would it better to set the size of the window that the
flash file will open in to an absolute set of values (for example
set the size of the window to 800x600)?
Any insight would be appreciated.
Thanks!

for full screen, you put the code below in 1st frame of your
movie:
fscommand("fullscreen", true);
for autorun, you need to create a autorun.inf file put in the
root of your cd
more info about autorun.inf
http://www.phdcc.com/shellrun/autorun.htm
http://autorun.moonvalley.com/autoruninf.htm

Similar Messages

  • Screen-based documents in CS5

    Hi all,
    Just fired up Flash CS5 to a surprise.  My screen-based SWF from years ago will no longer load.
    Searching around, I couldn't find an easy answer . . . how does one achieve the equivelant of nested screens in CS5 now?
    I have outer chrome that's common to all screens and switch between nested screens to show different shared form screens that get populated with content from a database.  Short of duplicating the shared content over and over, how do you get the layered effect I'm after?  Does everyone simply jump around on the master timeline?  Or does CSS play a role here?

    I'm not sure if this will help at all, but there were a couple of Presentation templates added to CS5 that may help answer some questions or generate some ideas. Go to File > New, choose Templates, and go to the Presentations category to find the FLAs.

  • What are the appropriate document/stage dimensions in Flash for tablet optimized apps?

    What are the appropriate document/stage dimensions in Flash (width x height in pixels) for tablet optimized apps?
    (Dec. 2013)
    Using Flash and AIR for Android/iOS I would like to develop a educational interactive title optimized for tablet PCs, hopefully both the Android but finally also the iOS platforms. With so many tablets on the market today and with different resolutions (and even aspect ratios) I have difficulty deciding what document/stage size to set for my project/app. I have been experimenting with an Android Google Nexus 7 and Samsung Note 10 tablets and discovered that Android automatically resizes the app's stage to fully fit the screen of the tablet BUT this creates the following two issues for me:
    if the stage/document size in Flash is too small and I include bitmaps when the app's stage is enlarged to fit the tablet screen the bitmaps look pixelated.
    If I make the stage dimensions too big so that there is no bitmap pixelation because the bitmaps will be shrank instead of enlarged, I am afraid that on some older tablets with slower processors the app may be too slow to run (but I have to say that I did not experiment with very large stage dimensions yet).
    Until today I had looked at some of the most commonly used tablets on the market and their resolutions Google Nexus 7, Samsung Note, iPads etc and was inclined towards using a stage size of approximately 1280 x 720 pixels which I considered a medium solution, but now the new generation tablets came out (Nexus 7 gen 2, iPad Mini with Retina, iPad AIR etc) with much higher resolutions so I don't know what size to use now. Anybody has any suggestions?
    I would appreciate any ideas and suggestions on this matter.

    You explained your problem well enough that looking at the picture won't matter.  It looks like you found out too late that one of the first things you should do when you create a Flash file is set the movie properties, which include the dimensions and other things like background color, frame rate, publish settings, etc.  While the string that I just listed can pretty much be revised anytime, the dimensions should really be done before anything else, when possible.
    One way to go about resizing is to leave the file as is and specify the larger dimensions in the html page code.  This could end up reducing the quality of any bitmaps you might have in the file(s) since you would essentially be enlarging them, but any Flash drawn elements will resize cleanly.
    If you resize the stage, then you don't have much choice but to resize and relocate everything in it keyframe by keyframe.

  • Jump from alv report to qa03 screen based on PRUEFLOS field

    Hi experts,
    I developed one alv report ,in that one field name is PRUEFLOS (inspection lot number).I want to jump from alv report
    to QA03 screen based on PRUEFLOS field.I wrote in this way but i didn't get.
    FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD.
      CASE SELFIELD-FIELDNAME.
        WHEN 'PRUEFLOS'.
          READ TABLE T_FINAL INDEX SELFIELD-TABINDEX.
          SET PARAMETER ID  'QLS' FIELD T_FINAL-PRUEFLOS.
          CALL TRANSACTION 'QA03'   AND SKIP FIRST SCREEN.
      ENDCASE.
    ENDFORM.
    what is the problem ?pls help me in this.

    Hi Ram,
    Recheck:
    1) You have passed 'FORM USER_COMMAND' in 'I_CALLBACK_USER_COMMAND' while calling f.m. for ALV displa, and
    2) You have checked the value of user command, i.e.
    FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD.
    CASE SY-UCOMM.
    WHEN '&IC1'.
    CASE SELFIELD-FIELDNAME.
    WHEN 'PRUEFLOS'.
    READ TABLE T_FINAL INDEX SELFIELD-TABINDEX.
    SET PARAMETER ID 'QLS' FIELD T_FINAL-PRUEFLOS.
    CALL TRANSACTION 'QA03' AND SKIP FIRST SCREEN.
    ENDCASE.
    ENDCASE.
    ENDFORM.
    Regards,
    Birendra

  • How to change the number of items displayed on the screen based on user input

    I need to place a number of input clusters on the user's screen based on the number of input types he will have.  Is there an easy way to do this?  (Say I have 3 different electrodes, I want to be able to add information for each then take this information and add it to a database, this case adding three new record sets to the database.  If I only have one electrode though, I only want one cluster on the screen and only one recordset will be added to the database)
    Message Edited by Vitamin on 01-11-2007 12:36 PM

    Place your clusters in a 1D array and create a property node for the array. You can use the Number of Rows property to control how many elements are shown. Wire the array into a for loop to index it.
    To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here, here, here, here and here are a few you can start with and here are some tutorial videos. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf).
    Try to take over the world!

  • Changing the selection screen based on the option in list box option

    Hi Experts,
    I have a list box parameter in my selection screen,
    i have four options and i am changing my selection screen based the option selected.
    see my code below,
    at selection-screen output.
      GS_VRM_VALUES-KEY = '1'.
      GS_VRM_VALUES-TEXT = TEXT-S02.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '2'.
      GS_VRM_VALUES-TEXT = TEXT-S03.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '3'.
      GS_VRM_VALUES-TEXT = TEXT-S04.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '4'.
      GS_VRM_VALUES-TEXT = TEXT-S05.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      CLEAR: GS_VRM_VALUES.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          ID                    = 'P_DROP'
          VALUES                = GT_VRM_VALUES
      EXCEPTIONS
        ID_ILLEGAL_NAME       = 1
        OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT SCREEN .
        CASE P_DROP .
          WHEN '1'.
            IF SCREEN-GROUP1 = 'M2' OR
              SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '2'.
            IF SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '3'.
            IF SCREEN-GROUP1 = 'M2' OR
                SCREEN-GROUP1 = 'M4' .
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '4'.
            IF SCREEN-GROUP1 = 'M2' OR
            SCREEN-GROUP1 = 'M3'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN OTHERS.
            IF SCREEN-GROUP1 = 'M2' OR
               SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
          screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
        ENDCASE.
      ENDLOOP.
    my problem is when i change the option in the list box, the particular modify group ie, the screen is getting changed only after i press enter, So please suggest me how i can change the screen without pressing enter.

    Hi,
    without using VRM_SET_VALUES...you just create one data element by going se11....create one domain for it...now give the values in the "value range" tab....and at the time of declaration just write ..
    PARAMETERS var1 TYPE <your created data element>
                        AS LISTBOX VISIBLE LENGTH 20
                        USER-COMMAND onli
                        DEFAULT <one value>.
    You will get the same effect as list box....and make it mandatory..
    Arunima

  • Hi there, I currently subscribe to Adobe Pro Subscription (yearly) and I also subscribe to Adobe PDF pack (monthly).  I only require Adobe to read and create PDF documents such as converting word/excel document or a web based document.  Can someone tell m

    Hi there, I currently subscribe to Adobe Pro Subscription (yearly) and I also subscribe to Adobe PDF pack (monthly).  I only require Adobe to read and create PDF documents such as converting word/excel document or a web based document.  Can someone tell me if I'm doubling up as I'm not sure of the differences between the products and would like to save a few dollars.

    Acrobat Pro can do a lot more than the PDF Pack online service.
    Try if you can do everything you need with PDF Pack; otherwise keep Acrobat Pro.

  • Resize intensity image based on pixel dimensions

    Hi,
    I want to resize an intensity graph to an exact pixel-by-pixel size, but I do not see this option anywhere.  Right now I need to create a 257x256 intensity graph on the front panel, but I have no idea how to do this.  Does the graph automatically reshape the viewable area based on the dimensions of the 2d array that I provide it?
    Thanks,
    Anthony

    Hello,
    There is an intensity graph property available called Plot Area: Size which will set the plot area (width and height) in pixels - I think this is exactly what you are looking for.  Attached is an example of this in version 7.1, otherwise you can just right click the intensity graph on your block diagram and Create -> Property Node, and then use the operating tool on the property node to select the noted property.
    Best Regards,
    JLS
    Best,
    JLS
    Sixclear
    Attachments:
    Programmatically Set Intensity Graph Plot Area in Pixels.vi ‏24 KB

  • Based document series need to be copied to target document

    Hi,
    There are 4 document series for every marketing document as Manufacturing - Series 1, Trading - Series 2, Retail - Series 3, Wholesale - Series 4, Shoppers - Series 5.
    Now User A is been given permission / authorization for document series 1 and 2 which is for Manufacturing and Trading and user B is given permission for document series 3,4 and 5 for Retail, Wholesale and Shoppers. Now when user B makes a sales order in say Wholesale which is document series 4 and then makes a delivery based on the sales order it is seen that in delivery note he has to again select the document series manually which is series 4 Wholesale. Why it is not possible to copy the based document series to the target document.
    Again for example user A makes PO in series 1 which is Manufacturing and then makes a Good Reciept PO then again he has to select the document series in the target document as 1 manually.
    Is there any way by which the base document series can be copied to the target document without manually selecting the same as its creates a mess if the user forgets to select the document series in the target document....Means SO is made in in Wholesales and Delivery is done in Shoppers. No default series also can be done as in any series as per requirement the user does the base document and he wants that once he put the series in the base document then automatically while doing the target document the base document series should be selected.
    Kindly let me know is there any possibility in SBO 2005B.
    Regards,
    Kamlesh

    Dear Shamseer,
    Default series has been set for that particular user. But for that user only 2-3 series are defined as per clients requirement. Now user wants that once in the base document the series is selected. All the corresponding target document should come with the same series ( Note all marketing document has the same series name but have diffrent series number )
    Regards,
    Kamlesh

  • Can We generate Check report based on Custom Dimension in FDM

    Hi All,
    We got a requirement in our project to generate the check report based on custom dimension. As far as i know the check reports that got generated in FDM are based on Entity Dimension.
    So, will you please let me know whether it is possible to generate report based on any one of the custom dimension.
    Thanks.

    I guess I am not understanding the question here?
    The check report is based on the location/entity that you are running the report for.  You can pull values for a specific intersection in the target application with the check report, so you could specify the custom dim in the intersection.

  • How to select records based on Max/Min on different columns and group by

    I have a table with 5 columns(a,b,c,d,e), i need to select records based on MAX(c),Max(D) and Min(e) group by a,b. i am trying using : select max(c),max(d),min(e) from table group by a,b. this is not working. its giving me 1 6 1
    a b c d e
    1 1 1 2 1
    1 1 1 6 4
    1 1 1 6 3
    when i group by a,b i am expecting the record 1 6 3
    Please help me with this.. Thanks in advance....

    Hi,
    Welcome to the forum!
    962163 wrote:
    I have a table with 5 columns(a,b,c,d,e), i need to select records based on MAX(c),Max(D) and Min(e) group by a,b. i am trying using : select max(c),max(d),min(e) from table group by a,b. this is not working. its giving me 1 6 1
    a b c d e
    1 1 1 2 1
    1 1 1 6 4
    1 1 1 6 3
    when i group by a,b i am expecting the record 1 6 3It looks to me like "1 6 1" is the correct answer. You're asking for the lowest value of e, and 1 is lower than 3.
    Maybe you don't want MIN (e). Explain why you want 3 (that is, how you decided that 3 is the correct value for the last column) and someone will help you code it.
    Edited by: Frank Kulash on Sep 28, 2012 6:17 PM
    Whenever you have a problem, you should psot CREATE TABLE and INSERT statements for your sample data. That way, the people who want to help you can re-create the problem and test their ideas. It often helps to clarify the problem, too. since this is your first message, I'll do it for you:
    CREATE TABLE     table_x
    (       a     NUMBER
    ,     b     NUMBER
    ,     c     NUMBER
    ,     d     NUMBER
    ,     e     NUMBER
    INSERT INTO table_x (a, b, c, d, e) VALUES (1, 1, 1, 2, 1);
    INSERT INTO table_x (a, b, c, d, e) VALUES (1, 1, 1, 6, 4);
    INSERT INTO table_x (a, b, c, d, e) VALUES (1, 1, 1, 6, 3);
    COMMIT;

  • Hierarchy based on one dimension.

    Hi,
    How to create a hierarchy based on one dimension. For example: we have table:
    Category
    Category_ID
    Parent_Category_ID
    I want to create hierarchy, which like as:
    Category_Level_1
    Category_Level_2
    Is it possible without create new alias of table for each level?
    Thanks

    Which version of BO are you using?
    Assuming that you are using BO XI R2 or above version.
    And Is your question - how to create custom hierarchies in Universe Designer..... for two different fields (columns) taken from a single database table?
    If so, yes you can create custom hierachy for above scenario. In Custom Hierarcies option: Add the Parent_Category_ID first and  below that add Category_ID.
    If you want to rename your hierarchy levels as Category_Level_1 & Category_Level_2, then rename their corresponding objects names in Clasess & Objects pane.
    - Anil

  • OSX Dims Screen based on Content

    I've been noticing that my screen appeared to be dimming randomly (or at least it seemed random at first). I search the web and found tons of people complaining about the same behavior, and adjust their energy settings and ambient light settings, but none of it worked. Their Macs kept on occationally changing the screen brightness.
    Idleness wasn't the issue: During my tests I was actively using the computer (and I'm plugged in)
    Ambient Light: There was no change in ambient light, so it wasn't this either (and I disabled this setting and the behavior persisted).
    However, what has changed is the contents of my screen. If I go to a website with really dark graphics, or go full screen on some movies, the screen brightness turns down. I can reproduce this "dimming" effect consistently... and then I found this:
    http://www.macrumors.com/2013/01/22/apple-granted-patent-on-methods-for-dimming- screens-based-on-content-needs/
    Apple has a patent that allows them to dim screens based on their contents. I am certain this is what is affecting our screen brightness. This is meant to be a power saving feature according to the patent, but it is SUPER annoying. What I can't figure out is how to turn this setting off...
    Any help would be great.

    http://www.youtube.com/watch?v=KZQTul8k-OM

  • Render a xfa-based document in workspace

    Hi,
      I'm wondering if process management can handle rendering of a xfa-base document and xml data inside workspace without Forms being installed.  I did a quick test by installing livecycle without forms and it failed to render a xfa-base document.  On the other hand, it worked with forms being installed.
      Looking closely, workspace is calling "Render PDF Form" to render the pdf and the subprocess will eventually call a forms component to do the merging of data.  Just want to ensure my findings is valid, and process management cannot handle xfa-base workflow without forms.
    Thanks,
    Justin

    You are correct.  Forms is needed to render an xfa-based document.  Note that you can create a custom Render process that will merge the xml data with a PDF form using the importData operation of the FormDataIntegration service.

  • Configuring Accounts Screen Based on BP Roles

    Hi Experts ,
    We have a requirement where we would like to configure the screen based on BP Roles .
    That is ,
                    If we have BP Role as "Prospect " we should be able to display only few fields .
    For other BP roles we should have different screens .
    Can any one let us know how do we approach this ?
    Regards
    VB

    Hi,
           I think that you know how to maintain different configs based on pfcg role, component usage, ui object and sub-object. If that method cannot help you, create dummy ui object types in configuration(SPRO). Next, create different configs using the config tool based on the UI objects. Note: You can also use existing UI objects, with some thought. Next, in the controller class of the view, redefine the method "DO_CONFIG_DETERMINATION" if required and depending on bp role, load different configurations.
    Look at this thread to see how to use this method to load configurations.
    [Changing Screen configuration based on field.;
    Regards,
    Arun Prakash

Maybe you are looking for

  • Pictures not showing up in Messages (Macbook)

    When anyone sends me a picture through iMessage, it is not loading on my Macbook. It will display a bubble that says IMG_### (for example, IMG_280). When I click on it the following pops up Any ideas how to fix this? I just updated to Yosemite, but i

  • Does application needs to be replicated

    Our partner requirement is to stream 50 min long video clippings centrally located. Users located elsewhere are connected through VSAT. Which kind of replication is suggested and do we need to replicate the application (PL/SQL server pages) also. Any

  • New iMac/Nano Incompatibility (OK with MacBookPro)

    When I try to plug in my Nano into my new iMac to download a podcast, I'm told that computer is not authorized to do it. I think it wants to see my MacBookPro, where it has functioned normally up to now. How can I use both computers?

  • Dubug In Jdeveloper 10.1.3

    Hi , Does anybody knows how to debug in JDeveloper 10.1.3 because, i tried to put breakpoint in the .java files its showing me breakpoint mark, but while debugging the code , it execution not halt at the breakpoint. Is there any setting that i should

  • AirOS (from Ubiquiti) cannot open after entering password with firefox.

    Firefox cannot enter the webbased application (AirOS) from ubiquiti networks. This application is used for controlling (control panel) the devices. In the previous version of Firefox (4.x and below) it can open normally. But in version 5.0 and above