Loading frames before images (preloader question)

I've got an .swf of which is 83% images and weighs ~4mb.
For that big size I decided I would do an preloader, however, the preloader's frame will only load after images and other resources are loaded.
Basically, the preloader will only appear after 83% of that .swf is loaded, which leaves the white screen for a big time, and only then displays the preloader.
In even simpler words, I want to set the loading priority of something(a resource? a scene? a frame?), or, load only a single frame and then let that frame load the rest.
Please point out if you didn't understand what I mean.

No, I'm using Flash CS5.5. Maybe it was fault of my interpretation.
I'm currently editing a .fla file, not an .swf. This .fla file has two scenes, whose the first is used for the preloader, which will skip to the next scene when the movie is loaded.
If that is revelant, here is the code of the preloader:
var total:Number;
var loaded:Number;
this.onEnterFrame = function()
total = _root.getBytesTotal();
loaded = _root.getBytesLoaded();
if(loaded >= total){
delete(onEnterFrame);
nextScene();
_root.ppl = (Math.floor((loaded/total)*100)).toString() + "%";
stop();
"ppl" is the variable which holds the contents of an dynamic text which shows the percentage.

Similar Messages

  • Adding video to a picture frame ( jpg image ) masking question

    Hi guys,
    I have an image of a picture frame, and I want to add some video inside the picture frame, but don't want the video to be seen outside the picture frame.
    How would I go about getting the video into the frame ?
    I have tried adding the "simple 3D " preset to my footage, and have put the video footage ON TOP of the picture frame later ( a simple jpg )
    Is there a correct proceedure to doing this ? or am I on the right track here ?
    I also notice one thing, - when I applied the Simple-3D preset, I can do a simple perspective on it.
    I applied a 22 degree "swivel" on the video footage, which correctly aligns the TOP of the video with the picture frame, however, the bottom of the video is out of whack slightly.
    On the bottom left, the video is perfect ( in the lower left corner of the picture frame ) however, on the right side ( bottom right ) the video is angled too much upward, and so there is a space there, and doesn't look correct.
    What do you suggest ?
    In photoshop, I would simply cut out the real photo from the picture frame, and put another image UNDER the frame and apply a simple masking to it, and this way it would be perfect, however I don't think this is how we can do it in Premiere ( ? ) I'm fairly certain about this, but could be wrong.
    If I am correct, then somehow I need to skew the video slightly ?
    Thanks for any suggestions,
    Dave.

    Hi Jim,
    I had the video under the picture frame, but parts of the video are still visible, ( in Photoshop I would simply mask out the area outside the frame, and that's it, it's done, but it seems in Premiere there is no such thing as this type of masking (perhaps ? )
    Hi Steven,
    I don't understand what you wrote, if I crop either the picture frame or the video, it won't look right. However, if I tweek the video just a tad, it would fit pefectly, however, when I do this to the video, just a portion of it sticks out from the picture frame in one area ( in Photos hop a simple mask would hide this )
    Dave.

  • Question about loading and using Images.

    I know how to load an image and to draw it onto a canvas etc etc. However my question is to do with the efficiency of loading multiple images (possibly the same image!) and using them together. I have multiple objects, all instances of the same class, which all draw themselves onto a screen in different positions. However they all use the same 3 images (depending on an internal state).
    So if I create 5 of these objects and each object calls to load the same image using something along the lines of:
    url = this.getClass().getResource("MyImage.png");
    normalImage = Toolkit.getDefaultToolkit().getImage(url);Does this mean that in the memory there are 5 exactly the same copies of this image? Or does java do something clever and use one image that they would all reference? I suspect I will have 5 in memory but I wanted to ask about this before going and making an imageManager class where I load all the images and just use getMethods in that when drawing. I will not be preforming any transforms or anything on any of the images so they can all literally be the same image but simply drawn in multiple positions on the one canvas.
    (note: I am using active rendering to draw these images myself and then blit it to the screen ...).

    Use ImageIO rather than Toolkit--with Toolkit you need to use a MediaTracker to ensure you have your image loaded before you try to use it.
    If you load an image and then do this:
    MyImage1 = MyImage;
    MyImage2 = MyImage;
    MyImage3 = MyImage;
    There are 4 references to the Image in MyImage. If you don't specifically use a method that gives you a new Image, usually, you are getting a refrence to an image already loaded in memory.

  • JavaFX - Image preloading problem

    Hi,
    I try to use ImageView and face some problems with image preloading.
    Here is the code related to the component that has problems. The component extends CustomNode.
    in class attributes declaration:
    var imgNodes: ImageView[];
    // list of url of images to display
    public-init var imgs: String[];
    in create function:
    for(indice in [0..batch]){
    var view= ImageView{
    fitWidth:100
    fitHeight:100
    translateX: (110 * indice)
    preserveRatio: true
    cursor: Cursor.HAND
    insert view into imgNodes;
    on an image loading function:
    for(indice in [0..batch]){
    imgNodes[indice].image = Image{
    width: 100
    height: 100
    url: imgs[firstItem+indice]
    preserveRatio: true
    backgroundLoading: true
    with backgroundLoading set to true, the images are not displayed. When setting it to false, the images appear. So the urls passed to Image are ok.
    If I display the fields error and progress of the Image components, both have the value 0.
    I have other components that use preloading and they are working great before showing the problematic component. After, preloading does not work anymore.
    It looks like as if the thread used to preload images is blocked.
    Can anyone help me with it?
    Thanks in advance for your help
    Thomas

    I'm not shure but i think the only group component wich is updated after insert or delete is a Group, so there is the same problem with V/HBox.
    Then this code work for me
    package forumsamples;
    import javafx.ext.swing.SwingButton;
    import javafx.lang.FX;
    import javafx.scene.Cursor;
    import javafx.scene.Group;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.VBox;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    * @author Alex
    var imgNodes: Group;
    // list of url of images to display
    var imgs: String[] =
    for (n in [1..3]) "file:///E:/dev/images/FA/OUI/{n}.bmp";
    //in create function:
    //on an image loading function:
    function load() {
        for(indice in [0..3]){
            insert ImageView {
                fitWidth:100
                fitHeight:100
                translateX: (110 * indice)
                preserveRatio: true
                cursor: Cursor.HAND
                image: Image{
                    width: 100
                    height: 100
                    url: imgs[indice]
                    preserveRatio: true
                    backgroundLoading: true
            } into imgNodes.content;
    Stage {
        title : ""
        scene: Scene {
            width: 200
            height: 200
            content: [
                VBox {
                    content: [
                        SwingButton {
                            text: "Button"
                            action: function() {
                                load();
                        imgNodes = Group { }
    }

  • How prevent movie from loading completely before playing?

    Hi,
    how do I prevent an swf from loading completely before
    starting to play in the browser? When simulating a download in the
    Flash application, several preload stages work perfectly, but not
    in the browser. Preload stages don't appear, instead it takes ages
    for the 3.5 mb file to completely load before displaying the first
    frame of the movie.
    I have tried inversing the load order in export settings and
    different flash versions, but just can't get it to work.
    Can someone help? Thank you!

    hi kglad
    I thought it should be that way; the point is that I don't
    want to add code that loads the entire movie before starting to
    play the first frame, but only a certain number of frames (i.e. 11
    out of 35, for example). I'm trying to do this with this code in
    the first frame:
    ifFrameLoaded (11) {
    gotoAndPlay("start");
    in the simulation, it works perfectly, but when uploading the
    movie and viewing it in html, the entire thing loads, and the
    preloader doesn't appear.
    Many thanks for your help.

  • URGENT : Please HELP : Loading a first image too slow

    Hello,
    I want to load an image to save it just before in a JPG format so as to obtain finally a byte[] array of this JPG image result.
    So, to do it, I tried to load my Image from different ways but I have always a strange comportement... My problem come from the reading :
    First, I use the imageio classes...
    FileImageInputStream fiis = new FileImageInputStream(file);
    BufferedImage input = ImageIO.read(fiis);
    And then, I use the oldest method :
    Image image = new ImageIcon(file.getAbsolutePath()).getImage();
    BufferedImage input = new BufferedImage(image.getWidth(panel), image.getHeight(panel),BufferedImage.TYPE_INT_RGB);
    and also :
    Image image = new ImageIcon(file.getAbsolutePath()).getImage();
    BufferedImage input = toBufferedImage(picture);
    But finally, I understood my problem is that the first time I load an image (no matter the format, JPG, BMP, TIFF... or other) the loading phase is very slow and lasts at least 30 sec. But then, every loading that I do will gonna be really fast. (No more than 1 sec.) It's look like if the first time there was a kind of dinamical alocation or something like that.... but I tried to find some configuration parameters to set it... But without success. :-(
    If someone could have an idea to suggest me... it would help me very much.
    Thanks in advance for your help,
    Anthony

    Please someone can help me ?!? A suggestion ?
    I have tried today one more time to resolve this issue... but without success... Anything I do with the loading of an image... by imageio or other ways... it's still the same problem... the first time I load an image, it takes me 40 - 50 sec to load it and after this first load, it is very fast with others... and with every formats. It's not a question of format but of memory allocation, I think... but I'm not sure...
    PRECISION : I work with an applet, is there something to configurate to allocate some memories or another thing ?!?
    Thanks in advance for your help, I really need it just right now... I have to finish this job extremly fast !!!
    Regards,
    Anthony

  • How to load a boot image to cisco aironet 1140 series after missing boot image

    Hi all,
    I need a solution for this. When i switch my cisco aironet 1140 , it s blinking with red light .and gives a message "no boot image to load".
    When i tried next time, by pressing escape it shows this message that i have mentioned below.
    ap:
    ap:
    using  eeprom values
    WRDTR,CLKTR: 0x83000800 0x40000000
    RQDC ,RFDC : 0x80000035 0x00000208
    using ÿÿÿÿ ddr static values from serial eeprom
    ddr init done
    Running Normal Memtest...
    Passed.
    IOS Bootloader - Starting system.
    FLASH CHIP:  Numonyx P33
    Checking for Over Erased blocks
    Xmodem file system is available.
    DDR values used from system serial eeprom.
    WRDTR,CLKTR: 0x83000800, 0x40000000
    RQDC, RFDC : 0x80000035, 0x00000208
    PCIE0: link is up.
    PCIE0: VC0 is active
    PCIE1: link is NOT up.
    PCIE1 port 1 not initialized
    PCIEx: initialization done
    flashfs[0]: 1 files, 1 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 32385024
    flashfs[0]: Bytes used: 1536
    flashfs[0]: Bytes available: 32383488
    flashfs[0]: flashfs fsck took 16 seconds.
    Reading cookie from system serial eeprom...Done
    Base Ethernet MAC address: 28:94:0f:d6:c8:62
    Ethernet speed is 100 Mb - FULL duplex
    The system is unable to boot automatically because there
    are no bootable files.
    C1140 Boot Loader (C1140-BOOT-M) Version 12.4(23c)JA3, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Compiled Tue 18-Oct-11 14:51 by prod_rel_team
    ap:
    So , now my question is how to load the boot image ? From where will we get this ? OR
    I m also having another Cisco aironet 1140 , Can i get bootimage from that . Kindly let me know the solution from genius ?

    Take a look at this link as it should have the info you need
    https://supportforums.cisco.com/docs/DOC-14636
    Sent from Cisco Technical Support iPhone App

  • Adobe After Effects CS6 takes FOREVER to lock existing frames before rendering

    My After Effects CS6 locks up for 3 minutes "Locking Existing Frames" before it even begins to start rendering, every time I need to preview anything - even at the lowest possible quality.
    The render goes perfectly normal - it is not the rendering that is the problem - it is the "Locking Existing Frames" process BEFORE rendering that freezes up my computer for 3 minutes, and ruining my life.
    I am using Adobe After Effects CS6 on a Mac Book Pro with a 2.9 GHz Core i7 processor (2 cores) and 8 GB of RAM.
    Please help me understand what is happening when it is "Locking Existing Frames," and what some solutions could be to reduce the amount of time it takes to do this.
    ALSO: I have scoured the Web for hours looking for the answer to this problem, and to this point it has never been solved.  If you can solve this issue, Adobe should give you a promotion and $1 million.

    Hi Rick and Greg,
    Thanks for the quick responses.  Below are all the details to all your questions.  Also - just to emphasize again - my rendering goes super awesomely fast.  It is not the rendering.  It is the "Locking Existing Frames" process before the rendering that is ruining my life.
    FREE MEMORY:
    This is brand new Mac Book Pro with hardly anything stored on it.
    The 8 GB of RAM is split into 2 memory slots, each with 4GB of RAM
    3RD-PARTY CODECS:
    I am not aware of any third-party codecs in this system.  I imported some fonts (ITC Franklin Gothic) and some video files (see below), but I am not aware of any third-party codec installed on this system.
    DISC CACHE:
    My Disc Cache is enabled
    My maximum disc cache size is 69 GB
    I do not have a seperate "fast hard drive" or "SSD" seperate from my main hard drive, where I store my footage.
    MPEG SOURCE FILES:
    If by source files, you're asking about the video files I imported:
    2 MP4s (5 sec. each)
    3 QuickTime .mov (3 sec. each)
    1 Audio-only FLV. (2 minute background music throughout video; used to be a Premiere working file)
    MULTIPROCESSING
    Turned off, but still locks up forever before rendering.
    ADDITIONAL FUN FACTS:
    Here are some additional observations that might help:
    It doesn't just take a long time to start rendering; it freezes my entire computer for the duration of the "Locking Existing Frames" process - putting my entire life on hold for 3 minutes, every time I need to preview a minor detail... It's a nightmare.
    The video is 1 min. 45 sec. long so far, and has 15 sec. to go.
    The video is comprised of 99 percent motion graphics, and 1 percent actual footage (Occupy Wall Street hates my footage)
    The complexity in this video is that there are a lot of compositions inside of compositions inside of compositions, but even when I go to the very beginning of the first comp - where the only animation is a line being drawn with the "Stroke" effect - it still takes 3 minutes to "Lock Existing Frames."
    Again... The rendering goes super fast after the "Locking Existing Frames" process.  The problem is NOT with the rendering.  The problem is the "Locking Existing Frames" process BEFORE the rendering starts.
    This is my job and I can't do efficiently until I solve this problem, so I will be very responsive until we can identify the issue.
    Thanks again for all your helpful responses!

  • Final Cut Pro 7 exporting adds frames before transitions.

    When I export a movie from my sequence the movie adds one or two blank black frames before the transition starts. It does not happen when I render the video out and watch it (preview). It only happens when I export the movie. There are NO breaks in my time code and every video has plenty if handles on either side. Any ideas on how to fix this or why it is happening would be greatly appreciated!
    Key Points - Only happens when I export the movie and never when I am previewing it. There are NO breaks in my time code.
    -Martin

    Thanks, it was actually a mixture of your two questions let allowed me to figure the issue out. I was exporting it at 25FPS while the sequence setting was at 30FPS. I bumped up the export setting to the 30FPS and it plays through the transitions just fine.
    It was a user error! :-D
    Thanks guys.

  • Final cut dropped frames and image resolution

    I am working on a project involving placing a logo image over the video (simple). I have done this before with great results. I am trying the same with another project and I get warned that one or more dropped frames may have occured in playback. If I export to movie to .mov from FCP the movie has an issue in this area. If I disregard and export using compressor the movie plays fine but the logo image gets messed up....What am I doing wrong? How do I get fcp to stop dropping frames? what is the best file format to import a image into fcp (I have used a .png as I need the clear background)? I doesn't seem like I used to get this warning of dropped frames before. I have repaired permissions. I am stuck now.

    Also,
    Would this have anything to do with importing movie as a .mov vs. the original .dv format?

  • Loading only last image

    This code is loading the xml correctly, populating the mainClipArray correctly, but only adding the last image to the stage.
    I think it is not waiting for completeClipLoad() to complete.  I tried removing :void from the function to see if waiting for a return would do it, but no luck.
    Any ideas?
    CODE:
    var myXML:XML;
    var xmlLoader:URLLoader = new URLLoader();
    var mainClipArray:Array = [];
    var counter:int = 0;
    var myLoader:Loader = new Loader();
    xmlLoader.load(new URLRequest("portfolio.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, completeXMLLoad);
    function completeXMLLoad(e:Event):void{
        myXML = XML(e.target.data);
        var len:int = myXML.portfolio.unit.length();
        for(var i:int = 0; i<len; i++){
            counter = i;
            mainClipArray[i] = new pane();
            //Load small image
            var smallfilename = myXML.portfolio.unit[i].small.filename;
            myLoader.load(new URLRequest(smallfilename));
            myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeClipLoad);
            mainClipArray[i].x = i * 15;
            addChild(mainClipArray[i]);
    function completeClipLoad(e:Event):void{
        trace("made it in");
        mainClipArray[counter].addChild(myLoader);
        trace("added child");

    Delaying the progress isn't going to help if you still have only one loader.  I would say that you could move the var myLoader:Loader = new Loader(); line inside the loop so that you have a new loader instance for each loading occurence, but then you would also need to adjust the completeClipLoad function to use the event target (e.target) instead of "myLoader".  But that still wouldn't resolve matters completely because you have that counter variable that will be working as fast as the for loop, with the loop likely finishing before the first item gets loaded... and since your completeClipLoad also makes use of that variable, you'll end up with only the last pane object being used.
    If you want to control the order of loading and retain the code in the one place (the other suggestion offered above having the code inside the pane could also be a viable approach), then a better strategy is to to use a programmed loop rather than a for loop, where only one loading occurs at a time and the completion of one loading triggers the next to begin.  Something like (this is just an outline form)...
    counter = 0;
    imgArray;
    function completeXMLLoad(e:Event):void{
         ... // process all the xml into the imgAray
        loadSmallImage(); // start by loading the first image only
    function loadSmallImage(){
         // create loader instance
         // assign load complete listener
         // load imgArray[counter]
    function loadComplete(e:Event) {
         // process the loaded image in a new pane
         // increment counter
         // if counter is < imgArray.length -> loadSmallImage();

  • Why is the position of key frame BEFORE scene changes not after?

    Why is the position of I frame BEFORE scene changes not after?
    And, why doesn't MovieVideoChart show any I frames other than those that correspond to periodic "key frames every X frames"? Is it reading meta data and not really showing where the real existing I frames are located? I.e. WYSIAL (what you see is a lie)? If so, where can I get an affordable tool that will let me examine my files in this regard?
    I have put compression and chapter marks at scene changes in FCP and have exported with markers for DVDSP (both chapter and compression).
    I have read on this forum (somewhere) that when insert key frames every X frames is selected, Compressor is still going to insert key frames automatically at key frames.
    When I last encoded with H.264 in Compressor, I selected option to insert I key frame every 90 frames (fps=29.97).
    When I jump to chapter in my encoded video, where I had place a key frame at a cut, I end up with a chapter at the frame BEFORE the cut.
    I will try moving my chapter/compression marks a frame ahead and see if that helps.
    Certainly, others must have been plagued by this problem.
    When encoding with MPEG2 for DVD, the same thing happens.
    It is a real problem. I get one frame appearing before the cut in chapter skips.
    Hope someone can illuminate this problem.

    Hi there
    As you have seen, RoboHelp doesn't understand how to create the layers you are wanting to achieve the effect in Word. It simply brings the images in as separate objects.
    Basically there are two approaches you might consider.
    You could insert Positioned Text Boxes and configure them to present the images as you want. If you take this approach, you will likely find yourself struggling to maintain the positioning consistently as well as noticing text flow issues. Personally, I'd avoid that approach.
    The other approach involves displaying the images in your Word document so that you see them as intended, then screen capture so you grab the combined image. Then save that combined image and use it instead of the separate images in RoboHelp. This is the approach I'd suggest and that I use myself.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Why is the green screen visible on the last frame before the next clip?

    Hey guys!
    Maybe I'm ******** but i m having trouble here. I have "key-ed" a bunch of clips and successfully removed the green screen from them. But when placed in the timeline, the green screen of the clip reappears for the single frame before a next clip starts.
    I've re-rendered and chopped ends off but the green screen keeps appearing in the last frame of any keyed clip that is about to cut to a different clip.
    Where am i going wrong?

    Hey! I tried both suggestions but even the self contained quicktime file has the green screen frames popping up.
    I just dont get it, it's infuriating!
    I used "chroma keyer" effect on the clip, only enable "key on saturation", the green screen disappears, I place clip on V2 and image on V1. Image is then visible where the green screen was. All is well until the last frame before a next clip because on that ast frame the green screen appears again. Where am I going wrong? Please help!

  • Loading JPEG/Gif images causes Out Of Memory Error

    Hello Java gurus, please shed some light on this.....
    I am not a java newbie, but I am a java newbie in the area of dealing with graphics. I am using JDK 1.4.2_01 on Win XP with 2.4ghz and 512 RAM. When I try to read in a (or a few) JPEG image into a JLabel using ImageIcon, I get an out of memory error everytime. This happens whether I am reading the image out of a jar file or out of a local directory. The JPEG's are 8.5" x 11", and range between 150kb to 900kb. I am trying to load approximately 10 images in a JTabbedPane using new JLabel(ImageIcon) on individual JPanels (one JPanel for each JPEG). Now I get the java.lang.outofmemory error whether I try to load 1 image or 10 images. Anyone got a clue as to what I am doing wrong? I actually do get one image loaded before the error gets thrown. So I do know that it is trying to load the right image. What is going on here? Is it an ImageIcon problem, or are there others who have run into this. It has brought this project to a grinding halt, and I had thought this would be the easier part!!!! Please help me out gurus! Thanks!

    What options/values are you suggesting that I set? Or do you mean something else? Thank you for any ideas that can help me solve this problem. I never had any issues dealing with using ImageIcon for toolbar button graphics (file sizes of 1-3kb), but now with dealing with full page graphics I have run into a brick wall with this out of memory error.

  • Optimization on Load Time (Large Images and Sounds)

    Hi,
    I have an all flash website that works by having each portion of it to load and unload in the center of a frame based off the navigation chosen.  Load times on everything but one part of my site are ok.
    The dimensions of the part inside the frame are 968x674.  I know that's relatively large for a flash file, but that can't be changed at this point.
    Within the page there are objects that come up when you find an item on the screen.  Its a dialog box and it shows text, an image, and has a voice over that reads what the text says.  After you're done looking at it, there is an x-button to dismiss the window.  There are 15 of these and they are exported to the actionscript.  I add them in the actionscript via addChild.  I figured this is a huge spot that could be reconfigured, but I'm not sure if it would make much a difference.
    The other huge thing is there is a ton on the screen.  It starts you off in an environment, and when you click 3 different sections, it zooms into that portion allowing you to look for the items you're trying to find.
    There is also a man that talks and animates in the beginning and at the end.  We are planning on taking out the end part and putting a text box up.
    Here is the website..  its a propane safety site for kids.  I know its kind of a weird idea, but it works and people seem to like it.
    www.propanekids.com
    The two parts of the site we are trying to optimize is the main menu when you first are at the site, and the "Explore" section.  (Just click on the cloud on the front page.
    If someone could take the time to give me some new ideas of how I can get these loading times down, I would greatly appreciate it!
    Thanks

    Ok, who ever posted this message is hacking me  and i can't believe you guys are helping
    Date: Thu, 27 Jan 2011 11:07:28 -0700
    From: [email protected]
    To: [email protected]
    Subject: Optimization on Load Time (Large Images and Sounds)
    Hi,
    I have an all flash website that works by having each portion of it to load and unload in the center of a frame based off the navigation chosen.  Load times on everything but one part of my site are ok.
    The dimensions of the part inside the frame are 968x674.  I know that's relatively large for a flash file, but that can't be changed at this point.
    Within the page there are objects that come up when you find an item on the screen.  Its a dialog box and it shows text, an image, and has a voice over that reads what the text says.  After you're done looking at it, there is an x-button to dismiss the window.  There are 15 of these and they are exported to the actionscript.  I add them in the actionscript via addChild.  I figured this is a huge spot that could be reconfigured, but I'm not sure if it would make much a difference.
    The other huge thing is there is a ton on the screen.  It starts you off in an environment, and when you click 3 different sections, it zooms into that portion allowing you to look for the items you're trying to find.
    There is also a man that talks and animates in the beginning and at the end.  We are planning on taking out the end part and putting a text box up.
    Here is the website..  its a propane safety site for kids.  I know its kind of a weird idea, but it works and people seem to like it.
    http://www.propanekids.com
    The two parts of the site we are trying to optimize is the main menu when you first are at the site, and the "Explore" section.  (Just click on the cloud on the front page.
    If someone could take the time to give me some new ideas of how I can get these loading times down, I would greatly appreciate it!
    Thanks
    >

Maybe you are looking for

  • How do I move ID CS4 from one computer to another

    Hi - I have just purchase a new PC and need to move my registered copy of CS4 off the old machine and on to the new one. How do I go about this when this is a single liscense ? I'm sure it's easy cheers, Andrew

  • 'All' filter in Obiee 11g dashboard

    Hi All, My client requirement is to see all data in dashboard prompt as well as there should be another item its 'ALL' which return the all data. Example: There is a dashboard filter on CustomerType (like: GOLD,SILVER) , our client want to see the da

  • USER DEFINED F1 documentation for seelction screen fields.

    I have one selection screen in my Program. If I give F1 , It has to display user defined documentation. like...I have customer field in selection screen. Select-options:S_CUST for BSAD-KUNNR. For this I need doc as "Enter customer number excluding fr

  • HOW TO DISPLAY HTML FILE

    I'm trying to display a help file created in html when a menu item is clicked.Can someone please help with the code to do that... Thanking you in advance...

  • Problem Setting Item on a Page when using a List

    I have setup a List of reports. On the Page where the List displays, the user selects a Project Manager from a select list. In the List target section, I set the item for the project manager on the report page to the project manager selected on the L