What is the maximum size of a .swf flash file that can be created for DMM

Please help,
I am running DMM 5.2.1 and was wondering what is the maximum size of a .swf file that can be created and play SMOOTHLY on the screens (screen dimension 1366 x 768px).
Kind regards.

Hi Nicholas,
You can refer to the content creation best practices documented at the following link:
http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_2/dmd/best/practices/guidelines.html#wp1168116
As you can read there:
- if the SWF file size is greater than 500KB, you may start to see high memory consumption on the DMP.
- regarding resolutions, the SWF can be up to 1920 x 1080 when animations within the SWF are small and are restricted to a 640x480 region.
Regards,
Marco

Similar Messages

  • What is the maximum number of 263 byte text files that can fit in a folder?

    what is the maximum number of 263 byte text files that can fit in a folder - on a windows 2000 operating system?
    I created a java program that creates these text files.
    It was set to loop 30,000 times.
    It created a total of 21874 html files before throwing a null exception.
    I tried to copy and paste 10 more html files manually and it said not enough disk space.
    however, I made a New Folder in that same folder and I was able to successfully paste the folders in
    there.
    That's interesting.
    It appears there is a size limit in each folder, BUT I can make another folder within that and successfully paste more html files in there
    Does anyone know the rules governing this feature.
    Stephen

    Whatever the answer is, it has nothing to do with Java programming. Microsoft might know, though, and that's where you should look.

  • What is the maximum size for open_cursors parameter in 11g database

    what is the maximum size we can set for open_cursors parameter in 11g database..

    Oracle® Database Reference
    11g Release 1 (11.1)
    Parameter type     Integer
    Default value     50
    Modifiable     ALTER SYSTEM
    Range of values     0 to 65535
    Basic     Yes
    For details, go to the following link:
    http://www.seasongreetings.org/documentation/oracle/database/11.1/server.111/b28320/initparams153.htm

  • What is the maximum size for mailbox per user (Exchange 2007)

    Hello,
    I'd like to know:
    What is the maximum size per mailbox, and is it not recommended to exceed 3 GB and about the items how many is the maximum per folder (inbox, .. )
    I've Exchange 2007 SP2, Outlook 2007 and 2010.
    Thank you.

    Hi
    There is no size limit on mailboxes up to the maximum size of your database.  I normally recommend 2GB mailbox limits if you have some form of archiving in place.  If you have no archiving in place then the limit should be set at the amount of
    data people need to keep - it is not a good idea for people to store mail in PST files because there is a limit on their mailbox.
    See this article for item count recommendations:
    http://support.microsoft.com/kb/905803
    Also you need to upgrade your Exchange 2007 server to SP3 ... SP2 has been out of support for nearly 3 years already:
    Exchange 2007 Support Lifecycle
    Steve

  • What is the maximum size of an image height (in pixels) that supports Muse? I noticed that if the photo is too high, reduce the Muses. thanks

    What is the maximum size of an image height (in pixels) that supports Muse? I noticed that if the photo is too high, reduce the Muses.
    thanks

    Thanks for the explanation, it was very helpful
    Paolo Guercio
    Il giorno 11/nov/2014, alle ore 17:00, Vikas.Sharma <[email protected]> ha scritto:
    If you place in Muse - an image with either height or width larger than 2048 pixels - Muse scales the image down proportionately, limiting the larger dimension to 2048.
    However, if you want to use the placed image at its original size, you can scale the image up to desired size either by dragging the resizing handles or by entering Height and Width values in the Control Strip on top. After that, go to the Assets panel and locate the image in there, then right click that image in Assets panel and choose "Import Larger Size". That would bring back the lost image information from the original image.
    Hope this gives you clarity on what you wanted to know.
    Cheers,
    Vikas
    >

  • TS3276 What's the maximum size of an email to be sent by Apple's Mail program?

    What is the maximum size of an email sent in the Apple Mail program?  Is 2.9 MB too large?

    susanzimm wrote:
    Is 2.9 MB too large?
    No, in terms of Mail.app. As WZZZ said, this limit is set by your ISP.
    Yes, in terms of netiquette. Google it. Any file > 1MB is, IMHO, too big for e-mail. Nowadays, this rule may be more relaxed, because more people have broadband. You should check with your intended recipient.

  • What's the maximum size and length that go onto a DVD

    I'm trying to put a whole load of home videos onto DVDs. What is the maximum size that can be burnt onto a DVD. There are a lot of hours on here, about 15 and I was hoping to try and get about 3 hours per DVD is this possible?
    Thanks
    Tom

    If you're referring to a video DVD which will plan on a TV set via a DVD player then a single layer DVD disk can hold 120 minutes of playing time which includes the basic material and any animated menus in the project.
    A double layer disk can hold 240 minutes.
    If you are creating a data disk with the files copied to it then its a matter of grouping the files into batches of either slightly less than 4.7 GB for single layer and 9.4 GB for double layer.
    if you're referring to  video DVD discs follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process.
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.

  • What's the maximum size.......

    What's the maximum size of an ImageIcon to be supported by a Label???
    I'm trying to show a 3.5 Mb image and doesn't show it. But a 1 Mb does....
    Can anyone tell me why this happens???

    Well maybe you have to set the size of the Label to the size of the Image - use setPreferredSize() to set the size of the label....
    otherwise you can do something like this :
    //Get the Icon
    icon =
    new ImageIcon(YourFrame.class.getClassLoader().getResource(
                   "/images/yourImage"));
    //Get he Width of the Label on which the Image is placed
    int width = imageLabel.getSize().width;
    //Get the height of the label on which the Image is placed
    int height = imageLabel.getSize().height;
    //Get the Scaled image
    Image scaledImage = image.getScaledInstance(width,height,Image.SCALESMOOTH);
    //Set the Image of the Icon
    icon.setImage(scaledImage);
    //Update the Image Label
    imageLabel.updateUI();
    --j                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • What's the maximum size of data a coherence cluster can hold?

    What's the maximum size of data a coherence cluster can hold before it starts noticing a degradation in performance?
    Assume a partitioned topology is used with only one backup for each partition.

    Hi,
    Coherence partitioned cache is designed for linear scalability and it does it quite well. I don't see any reasons of performance degrations with increase in data size given, you have enough cores and memory for processing the requests and managing the data.
    Cheers,
    _NJ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • What's the maximum size a varchar2  variable can hold for and NDS Stmnt?

    What's the maximum size a varchar2 variable can hold for and NDS Statement? I read that NDS is good for doing EXECUTE IMMEDIATE on statements that aren't too big. The 10g PL/SQL manual recommends using DBMS_SQL for statements that are too large, but it never gave a limit for what too large was. Does anyone know offhand?

    The limit is the same as the length of varchar2 variable within PL/SQL - that is varchar2(32767).It's not documented, but intermediate concatenation result can hold up to (64k-1) :
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    declare
      part1 varchar2(32767) := rpad('begin null;', 32767);
      part2 varchar2(32767) := lpad('end;',        32767);
    begin
      dbms_output.put_line(length(part1 || ' ' || /*' ' ||*/ part2));
      execute immediate part1 || ' ' || part2;
    end;
    65535
    PL/SQL procedure successfully completed.

  • What is the maximum size a sender SOAP adapter can handle?

    Hi,
    I am using sender SOAP adapter and receiver RFC adapter.
    What is the maximum size of request message it can handle efficiently.
    In the current scenario which I need to design , the request XML file could be up to 24 MB.
    Also if you could comment on which would be the best to use as the sender side - SOAP or File Adapter
    when the request message/file is of such size?
    regards
    Arun G

    hi,
    >What is the maximum size of request message it can handle efficiently.
    it totally depends on your hardware and flow design inside XI/PI
    >In the current scenario which I need to design , the request XML file could be up to 24 MB.
    this size is not a lot for a "normal" XI machine but it also depends on the
    volume of those messages - that is if you need to send
    one message like that per day or 1000 per half an hour...
    >Also if you could comment on which would be the best to use as the sender side - SOAP or File Adapter
    when the request message/file is of such size?
    SAP's general recommendation is to use messages around 5mb
    but it heavily depends on other factors so don't threat it as a must
    Regards,
    michal Krawczyk

  • What is the maximum size limit for a KM document to be uploaded?

    Hi,
    1.  I have a requirement, wherein the user wants to upload a document which is more than 448MB in KM.
    I am not sure what is the maximum limit that standard SAP provides by default, which I can advice the user at the first place.
    2. what if we want to increase the max limit of the size?Where do we do that, can you suggest me the path for the same?
    Thanks in advance.
    Regards
    DK

    Hello,
    CM Repository in DB Mode:
    If there is a large number of write requests in your CM usage scenario, set up the CM repository in database mode. Since all documents are stored in the database, this avoids unintentional
    external manipulation of the data.
    CM Repository in FSDB Mode:
    In this mode, the file system is predominant. If files are removed from or added to the file system, the database is updated automatically.
    If you mainly have read requests, choose a mode in which content is stored in the file system. If this is the case, make sure that access to the relevant part of the file system is denied or
    restricted to other applications.
    What is the maximum size of the document that we can upload in a CM (DB) and CM (FSDB) without compromising the performance ?
    There are the following restrictions for the databases used:
    ·  Maximum number of resources (folders, documents) in a repository instance
       FSDB: No restriction (possibly limited by file system restrictions)
       DBFS and DB: 2,147,483,648
    ·  Maximum size of an individual resource:
       FSDB: No restriction (possibly limited by file system restrictions)
       DBFS: 8 exabytes (MS SQL Server 2000), 2 GB (Oracle)
       DB: 2 GB
    Maximum length of large property values (string type):2,147,583,647 byte
    What is the impact on the performance of Knowledge Management Platform and on Portal Platform when there are large number of documents that are in sizes somewhere from 100 MB to 500 MB or more.
    The performance of the KM and Portal platform is dependent on the type of activity the user is trying to perform. That is a heavy number of retrievals of the large documents stored in the repository for
    read/write mode decreases the performance of the patform. Searching and indexing in the documents will also take a propertionate amount of time.
    For details, please refer to,
    http://help.sap.com, Goto "KM Platform" and then,
    Knowledge Management Platform   > Administration Guide
    System Administration   > System Configuration
    Content Management Configuration   > Repositories and Repository
    Managers    > Internal Repositories   > CM Repository Manager
    Technically speaking the VM has a restriction according to plattform.  W2k is somewhere around 1,2G and Solaris, I believe, 4G.
    Say for instance I was on a W2k box I allotted 500+ for my J2EE Engine that would leave me with the possiblity to upload close to 600mb documents max.
    See if the attached documents (610134, 634689, 552522) can provide you some guidance for setting your VM to meet your needs.
      SUN Documentation
      Java HotSpot VM Options
            http://java.sun.com/docs/hotspot/VMOptions.html
      How to tune Garbage collection on JVM 1.3.1
            http://java.sun.com/docs/hotspot/gc/index.html
      Big Heaps and Intimate Shared Memory (ISM)
            http://java.sun.com/docs/hotspot/ism.html
    Kind Regards,
    Shabnam.

  • What is the maximum size of a jpg that can be imported into iPhoto?

    what is the maximum size of a jpg that can be imported into iPhoto

    I've imported and worked on Photoshop and tiff files up at 220 MB (8400 x 6600 pixels) in size.  It does take some time to do any edits, up to 7 seconds for some.   220 MB is a big file but iPhoto handles it OK.
    I do have a top of the line iMac with SSD drive so it's pretty fast.  Other Macs may be slower depending on their configuration.
    OT

  • What is the maximum size of the application to download to iPad via GSM. Is it 20 Mb? Is it possible to change this parameter?

    What is the maximum size of application to download to iPad via GSM. Is it 20 Mb? Does exist any possibility to change this parameter? In the towm where I live there is lack of wifi and the only possibiluty to download something from Apple Store is to use GSM/3G.

    It has partly to do with the carrier.  From what I've summized from reviews & feedback online is since Apple iPhone was the most advanced phone on the market when it was initially released the carriers were concerned about using up bandwidth with the apps & movie downloads so a limit was intially set for 10mb max on 3G connection.  Later apple raised the limit, against the carrier's advice, to 20mb max.
    The interesting part is the limitation doesn't exist on Android phone when they also have large apps & movies which are available for download & they use the same networks the iPhone uses!  So why are the iPhone users still limited to the amount they can download at once while the Android users are not.  They pay the same for thier data plans, if not less in some cases, that iPhone users do!

  • ***Zen 4Gb*** ***what is the maximum size card in the zen 4 gb

    What is the maximum size in the zen 4gb mp3 player, the one wich is like a credit card. I want to put another 4 gbcard in there but will it take it's

    6GB Max
    8GB SDHC http://www.creative.com/products/mp3/zen/?nav=sdcard

Maybe you are looking for

  • ITunes is not transferring songs to iPod

    Very frustrated...MacBook, iTunes, and iPod are up to date. I imported a CD onto my iTunes library. With my iPod plugged in, the songs will not transfer to the iPod. I can drag the album over and also go the 'add to' route, but either way the transfe

  • "Drive no longer recognized"

    When I start up my imac all of a sudden I get the following: "The disk you inserted is not recognized" with the option to ignore, initialize or eject. The drive is a Western Digital MyBook Basic 1.5TB drive that I have been using for about a month wi

  • User Exit for T.Code : F110 - APP

    Hi Guru's, My Company is developing the interface to 3rd party system. For that i have to send the all payment data to customized table. From custom table to 3rd party system. So Please Suggest the Suitable User Exit for F110 - Automatic payment Prog

  • How to make a Input Field with multiple lines?

    hey folks, i need to make a popup window or a dynpro with 2 input fields, where the user can write on multiple lines. why isnt there such an input field in the screen painter? how can i make this? if i can do this with a dynpro it would be nice but a

  • Need help with Italics for ePub and InDesign CS5

    Could someone help a me out. I just can not find the answer to this and I know it should be simple, I am just missing it. I am creating an ePub from CS5 InDesign. All I want to do is have the italics that are shown in the text box in InDesign, show u