Frame 1 size grows even though preloader is small file size

I'm hoping someone can help me out... I made a preloader for my single scene movie and although the preloader is about 16k, when placed into frame 1 of the movie and tested, the frame is shown to have about 256k, which is larger than the movie it's loading.  I've gone through all the files and made sure that export in frame 1 is not checked and made sure the publish settings also are set to export in frame 1.  Any idea why this is happening??

I appreciate you trying to help, but unfortunately nothing is working at this point.  To be honest - I have basic flash knowledge from one semester of a class where I obviously didn't learn much about preloaders and the only thing I can think to do is start over on the page I was working on since the preloader works in some of the other pages I made for the website.  I don't really understand the concept of the exports, I was just following directions, I thought when I placed things on a frame of the timeline that it was just, well, there.  To live happily ever after.  So until I gain some more knowledge about Flash programs or move on to another type of design medium that I can understand, I guess I just have to live with not having things work smoothly.
Thank you for trying to help.

Similar Messages

  • Since the FF8 update, all bookmarks were lost and none of the recommended methods for restoring lost bookmarks work; I always get "Unable to process to backup file" even though the backup .json files still exist

    Since a FF8 update, all bookmarks were lost and none of the recommended restore methods work, even though I have been able to find the backup ".json" files; I continually get "Unable to process the backup file" for all methods of importing or restoring the bookmarks from the .json files. As others note, I can also no longer add any new bookmarks to my now empty bookmarks tab. My profile has not changed, so that's not the problem. This is really a pain.

    Did you try to delete the file places.sqlite to make Firefox rebuild the places.sqlite database file from a JSON backup?
    *http://kb.mozillazine.org/Unable_to_process_the_backup_file_-_Firefox
    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_places-database-file

  • Time Capsule backup keeps growing even though I have no data!

    I have just bought a new 2TB Time Capsule. I set up Time Machine to backup my hard drive and two USB disk drives that hold music and film. The initial backup seem to work fine - but every incremental backup then repeats large chunks of the backup. In particular one of the disk drives is backed up every time. The other oddity is that the progress indicator for incremental backups in Time Machine shows 'Backing up XGB of YGB' with both X and Y ticking up together. Meanwhile I have added virtually no data to any disk between backups. This (obviously) makes Time Machine unusable. I am just trying backing up only my internal hard drive to see if that works.
    I have searched for help on this topic and found nothing (there is one entry from last year that is unanswered). Has anyone else seen this? Is there a known fix?
    Thanks for your help,
    Mike

    Mike Adam wrote:
    I had already seen this document. However, none of these apply to my situation. The two drives in question are Western Digital and I have found some old posts that suggest that they are not compatible as Time Machine drives, but nothing that says that Time Machine cannot back up the contents.
    Since Time Machine seems to be working with those Western Digital drives, I would think that the problem is not with those drives. You might look at those Time Machine support pages for information on the Time Machine Buddy widget (item A1 in that earlier page) to see if it (or anything else) can show you a list of just what's being backed up each time. That may explain what's going on.
    do you want me to move the topic to the Time Machine forum, or can I leave it he now that I have started?
    Since this thread is under way, I'd leave it here unless you can have someone move the entire thread. Confusion between Time Capsule (an Apple WiFi router with an integrated disk drive) and Time Machine (backup software included with OS X starting with OS X 10.5 that can use a Time Capsule disk as its destination drive) is fairly common.

  • Cant get list of files from a folder (even though the folder and files are created with the same app)

    Ok so each character rolled with my app gets saved as an html file in a folder i create on the sdcard called RpgApp
    the code to do this is 
    private async Task saveToHtmlCharacter(string name)
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault(); //Windows.Storage.ApplicationData.Current.LocalFolder;
    var dataFolder = await sdcard.CreateFolderAsync("RpgApp",
    CreationCollisionOption.OpenIfExists);
    var file = await dataFolder.CreateFileAsync(name+".html",
    CreationCollisionOption.ReplaceExisting);
    using (StreamWriter writer = new StreamWriter(await file.OpenStreamForWriteAsync()))
    writer.WriteLine("<html><head><title>Character File for " + z.charNameFirst + " " + z.charNameSecond + "</title></head><body>");
    //trimed for the post
    now this as i say works perfectly and i can confirm that the files show up in the "RpgApp"folder
    now the next step is to have the app read the names of each of those html files and create a seperate button for each one named for the filename and with the filename as content (later i will link them up to load the html file they are named for in a webbrowser
    panal)
    here is the code that *should* do that
    private async Task readFiles()
    z.test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    IReadOnlyList<StorageFile> fileList = await folder.GetFilesAsync();
    //z.test.Add("dummy");
    foreach (StorageFile file in fileList)
    z.test.Add(file.Name);
    public async void buttonTest()
    await readFiles();
    CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
    await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    foreach (string name in z.test)
    Button button1 = new Button();
    button1.Height = 75;
    button1.Content = name;
    button1.Name = name;
    testStackPanal.Children.Add(button1);
    now i say should as what i get is an error of "A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.ni.dll" (2 of them in fact one after another)
    more detailed error is at http://pastebin.com/3hBaZLQ9
    now i went through checking line after line to find the error and line that causes it is:
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    in the readFiles method
    i checked to make sure the case is right etc and its spot on, that IS the folder name, and remember my app creates that folder and creates the files that are inside that folder (and only files my app creates are in that folder) so it should have access
    im 100% stuck its taken me all day to get the files to save and now i cant get them to list correctly
    I have tested the button creation function with fake list data and that worked fine, as i say the error is when i tell it to look at the folder it created
    all help most greatfully recieved

    this was actually solved for me on another forum thread 
    async Task<bool> continueToReadAllFiles(StorageFolder folder)
    if (folder == null)
    return false;
    if (folder.Name.Equals("RpgApp", StringComparison.CurrentCultureIgnoreCase))
    var files = await folder.GetFilesAsync();
    foreach (var file in files)
    test.Add(file.Name);
    return false;
    var folders = await folder.GetFoldersAsync();
    foreach (var child in folders)
    if (!await continueToReadAllFiles(child))
    return false;
    return true;
    public async void buttonTest()
    test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    var folders = await externalDevices.GetFoldersAsync();
    foreach (var folder in folders)
    if (!await continueToReadAllFiles(folder))
    break;
    //.... commented out
    ...now i say solved this is more a workaround...but it works.
    I would love to know why we cant just scan the RpgApp folder instead of having to scan the whole dc card and disregard all thats not in the RpgApp folder

  • WD 1TB not recognised on 13" macbook pro retina (late 2013) even though it is exFAT file structure. The same drive is recognised on iMac and an old Dell laptop. I also have a seagate 2TB external hard drive (powered) that is recognised by my macbook pro.

    I just bought a late 2013 macbook pro retina 13" a few days ago. I am trying to transfer all my music from my old Dell laptop. I formatted by 1TB Western Digital MyPassport to exFAT to allow read and write on both operating systems. The 1TB WD My Passport is recognised by both my Dell and iMac but not my new macbook pro retina 13 (late 2013).  My 1TB WD My Passport is USB 3.0 with USB 2.0 backward compatability. I also just bought a 2TB Seagate Desktop Backup Plus (which is powered) for backing up and extra file storage, THIS WORKS! I don't understand how this works on my macbook pro but my 1TB western digital my passport doesn't. PLEASE HELP!! I have done full formats as well (not quick ones) which take nearly 8 hours. PLEASE HELP

    Is there a pattern to the time of day or other detail that may be
    traced back to a OS X system cause of this odd phenomenon?
    Are there any copies of system files on any of the attached USB
    external drives? Any libraries, such as iTunes, iPhoto, etc?
    Once the drives are indexed by Spotlight, are their permissions
    ignored by the OS X? Content, if neutral, should not affect the
    wake or sleep cycle; especially if they're ignored by the OS X.
    Could there be a bad cable or other component? If so that would
    be a difficult process of elimination to detect it. Usually replacing
    most suspect components in the USB stream (external to Macs)
    is a rote way to mechanically test that idea; & not 100% sure.
    Does the equipment all have a good ground to the utility or house
    electrical field? An intermittent ground may affect more than sleep.
    Hard to say at this point. Maybe a late-night talk radio guru on
    remote viewing could peer into your situation and sleuth it out?
    Sorry to have run out of ideas, but the process must be electrical
    & mechanical to some extent. - Or perhaps odd software inspired.
    Do you have any phone-home spyware items inside, just jumping
    at the chance to spill your information? Little Snitch may help.
    PS: Perhaps the computer needs to go into Apple & have a genius
    or product specialist at AASP test the unit thoroughly... BlueTooth?
    see:
    https://www.google.com/?gws_rd=ssl#q=Wake+reason:+XHC1
    Good luck & happy computing!
    edited 2x

  • How do i delete completely all data that i already deleted? Because even though i deleted the files and empty the trash, my memory is still the same! please help!!

    Hi all! im using the OS XV10.6 not 4 sorry. Anywayz, i tried to delete all data that i dont need to have more free space. However, after i deleted all the files that i dont need, then empty the trash cane, my free space is still the same! I did research and try the "erase for free space" But it is still the same! please help!!! Is there anyway to increase my free space?

    Hello, are you using Filevault perchance?
    How much free space does it report if you do a Get Info on the whole drive?
    Could we be confusing Memory (RAM), with Hard Drive Free Space (Virtual Memory)?

  • Can i still sync my files even though i have corrupted files?

    so i just put my itunes library on my new mac laptop from my pc. on my pc i have that stupid thing where it says it lost the pathway and i guess the files are now corrupted. BUT they still play on my ipod. I have synced my ipod several times not realizing this could cause a issue on my ipod, but the songs are still playing on my ipod but not my pc. so now the songs wont play on my mac either, but still play on my ipod. i want to download some more songs, but i am afraid to sync my mac and my ipod now for fear that it will replace the songs that work, with the corrupted files. also, i used my ipod as a external hard drive to transfer the files and haven't set it back up to do an automatic sync because once again i am afraid of losing the songs. the songs that are corrupt are ones from cds and ones i downloaded off itunes. but when i go to try to download the songs i already purchased, it doesn't get them all.
    help?

    if the error you are getting is a disk copy error when trying to sync the ipod, then that error normally halts the sync process. that would be why you "synced" your ipod but the songs still play on your ipod... if you have a back up of your computer, then you can find and delete the file that is giving the read or copy error and replace it with your back up.
    very important! if you are actually getting read or copy errors, then your disk may be beginning to fail. make sure that you have a good back up. if not then make one as soon as possible. as the saying goes, there are 2 kinds of hard disks: those that have failed and those that are going to fail... so protect yourself and make a back up if you wish to avoid the pain of loosing files.
    if some other problem is happening, like the some files have been mistakenly deleted (outside of itunes) and itunes just cant find the files anymore, than that is a matter of resorting the files from a back up. i believe itunes will also halt a sync if it can't find a file...
    there is a shareware utility called "podworks" which allows you to copy a song from your ipod and restore it to your computer if you've lost the song from your hard disk... but it will only copy what is still on your ipod, meaning that if you do a sync and some files get deleted from your ipod in the process, then you'll have to restore them another way. you can find podworks on versiontracker.com

  • ITunes 10.5 can't find any of my original files, even though they show in my library

    I was hoping you could help me with iTunes 10.5. This update has been a pain. When I first installed it, my entire library was gone. Luckily, I saved the "iTunes Library" file before updating and copied it in place and my library appeared. But now the problem I'm having is that the iTunes can't find any of the "original" files, even though my iTunes Media file location has not changed (it's on an external network drive". When I click on the "Do you want to find the original file" I can find it in the appropriate folder. I checked the "Preferences" and under "Advanced" I re-mapped it to the appropriate location and already had the 2 boxes for iTunes organizing files checked. Then went to "File" and "Organize Library" and clicked the first check box and then got the "Copying Files" bar. When this was completed, I thought it would be able to find the original files. But I'm still getting the same error message about not being able to find the "original" files. Do you have any suggestions?

    I was hoping you could help me with iTunes 10.5. This update has been a pain. When I first installed it, my entire library was gone. Luckily, I saved the "iTunes Library" file before updating and copied it in place and my library appeared. But now the problem I'm having is that the iTunes can't find any of the "original" files, even though my iTunes Media file location has not changed (it's on an external network drive". When I click on the "Do you want to find the original file" I can find it in the appropriate folder. I checked the "Preferences" and under "Advanced" I re-mapped it to the appropriate location and already had the 2 boxes for iTunes organizing files checked. Then went to "File" and "Organize Library" and clicked the first check box and then got the "Copying Files" bar. When this was completed, I thought it would be able to find the original files. But I'm still getting the same error message about not being able to find the "original" files. Do you have any suggestions?

  • .png files open in browser even though I have set prefs for .png files to "Always ask" instead. How fo I force Firefox to save .pngs and not open in browser?

    Forefox will not download or ask me to save .png files even though I set that file extension in Prefs -> Applications dialog box to be "Always ask"
    I have to be able to donwload and save .png files and I can't do that if they load in a browser window.

    I find it odd that the browsers on the Android platform can't support this on their own. I know that Google Chrome on it's full blown version for the PC is able to do so without using the Adobe software for the embedded PDF aka using "The Adobe PDF Link Helper" . I would love to see this change especially since I prefer Firefox over other browsers.

  • Hompage is redirecting to ask Jeeves even though I keep setting my preferred homepeage in the options window - why?

    I have just upgraded to firefox 4 - now every time I open it it defaults to the ask jeeves search page as my homepage.
    THIS IS EXTREMELY ANNOYING
    I have tried to reset to my preferred homepage using the options window - however, it still does noot work and seems to defualt back to the ask jeeves site when I re-open firefox.
    Is this a known issue or is there a fix for this?

    Yeah how do you get rid of ask.com from Firefox
    It seems that ask.com has joined the Mozilla Firefox partner program which has added ask Jeeves into the latest version of Firefox.
    http://www.mozilla.com/en-US/about/partnerships.html
    I found some files on my computer which were from ask.com referring to co-branding, but even though i deleted these files from my computer it is still in my browser.
    There was no notification of this during the last Firefox update, so unless i can get rid of it, it will be time to change browsers.

  • How can I print a full frame photo from iPhoto 11?  Even though I click on scale to fit paper size, it crops both ends of the photo in landscape set up.  I have an Epson R1800 with the latest drivers.

    How can I print a full frame photo from iPhoto 11?  Even though I click on scale to fit paper size, it crops both ends of the photo in landscape set up.  I have an Epson R1800 with the latest drivers. (I'm also 3 days new to iMac and iPhoto 11 from an eMac and iPhoto 6.)

    " Hello Jeff. Here at Oki Data, we do not support programming.  I would recommend contacting Adobe for further assistance. You can also browse their website at http://www.adobe.com/products/postscript/.

  • I am having the problem when trying to take a panorama picture.   It may only take the first frame or doesn't even start at all when I press the shutter button. even though when i  hold the phone straight up and down, so that camera is at the top

    I am having the problem when trying to take a panorama picture. 
    It may only take the first frame or doesn't even start at all when I press the shutter button.
    even though when i  hold the phone straight up and down, so that camera is at the top on the back and the home button is on the bottom on the front.
    This problem is irritating me....?

    To take panorama
    - ensure that the panorama option is on
    - press the shutter button once
    - you will see a line with an arrow
    - move around in a circle  ( I keep the camera steady and turn myself around in a circle)
    - as you do this you will see the arrow moving across the screen as it captures pictures
    - at the end of the capture, you will be able to see your panorama picture
    I hope that this helps, do report back.

  • HT201412 After ios7, My iphone4 has gone dead twice in a time frame of around two months...even though its not happening very often but a two month Old phone going dead just after a New update is not acceptable.probably ios7 still has sum bugs dat need to

    After ios7, My iphone4 has gone dead twice in a time frame of around two months...even though its not happening very often but a two month Old phone going dead just after a New update is not acceptable.probably ios7 still has sum bugs dat need to be fixed...Can this bug expected to be fixed in the next update...

    Hi 1283ar.
    Unfortunately, iOS 7 is too hard to push for the iPhone 4 and therefore has a lot of effects turned off to try to get it to run as smoothly as possible.
    However, it becomes better and better with each update coming but it's hard to do anything about the hardware on an already released phones.
    If you still have trouble or think they are too hard. My tip is, if so, to restore your iPhone 4 and make a clean setup with no iCloud backup. But all your photos in a photostream so you can access it later.

  • I am trying to upload files to an Apple hosted feed on KSU iTunes U (unpublished site). The file size shows as 2 GB even though the files are 50MB. The upload stalls and fails. Address:

    I am trying to upload files to an Apple hosted feed on KSU iTunes U (unpublished site). The file size in the Feed Editor shows as 2 GB even though the files are 50MB. I am using Safari on Intel Mac 10.5.8. at Kennesaw State University. Any help would be appreciated.

    This is the second day. I tried using a new Apple feed to test. Still not working. I uploaded a 50MB mp3 file. The first time the upload failed. The second time the file showed that it was uploading a 2 GB file. It has been about 20 minutes now and shows "3.5GB of 2.0GB 178% Completed". Now it has started uploading all over again - it is now showing 399.4MB or 2.0 GB - 19% Completed. I dont know if this will keep looping - but I am going to Cancel.
    Please let me know what other information do you need from me. Definitely need some help with this!

  • Thank you for approving my feed iTunes . The only problem is, there is no art work, even though artwork was submitted correct sizes and formats were used. Why is this and how can the problem be rectified?

    Thank you for approving my feed iTunes . The only problem is, there is no art work, even though artwork was submitted correct sizes and formats were used. Why is this and how can the problem be rectified?

    Thanks for getting back. Hadn't got round to re uploading the amended feed. I just did it now.
    The only thing is, Feed Validator doesn't like it because of the picture size, and a couple of other things, it reeds the following:
    Sorry
    This feed does not validate.
    line 22, column 14: width must be between 1 and 144: 1400 [help] <width>1400</width>
                  ^
    line 23, column 15: height must be between 1 and 400: 1400 [help] <height>1400</height>
                   ^
    line 25, column 21: XML parsing error: <unknown>:25:21: not well-formed (invalid token) [help]
    <itunes:image href=http://www.whiteberg.com/Wdotfontitunes2.png" />
                         ^
    In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendations.
    Your feed appears to be encoded as "utf-8", but your server is reporting "US-ASCII" [help]
    line 4, column 114: Self reference doesn't match document location [help]... dcast.xml" type="application/rss+xml" />
                                                 ^

Maybe you are looking for

  • Transfer of Vendor Line Items from One Co CD to another Co Cd  -- urgent

    Hi Peers We have a situation wherein we are going for a new company code from the existing company code. so we have to recreate all the customers & Vendor  master data. Is there any T.Code or Program by which we can create the customer & vendor maste

  • Firefox stops responding when starting

    Basically, Firefox has worked fine for 3 months on this computer, no problems. I haven't installed any new add-ons since I set it up initially. I closed out of my session, went and had lunch, came back and now within 5-10 seconds after starting up Fi

  • Query operation in file adapter

    Dear All, we have faced several issues in using polling for production env. We have to ensure sequential nature of data, which means FIFO order of inserts is there any alternative to using polling - Receive in file adapter ? Can we use {query databas

  • Choosing specific key figure

    Hi all, There are 12 key figures (one for each month) and now I want select one of them in the query for output according to input value. For example, when user entry is 3, in the report will be visible column Z03, for 4 column Z04, etc. How can I ac

  • Acrobat renders embedded text unsearchable by spreading out letters: why?

    Something strange happened today when I created a single PDF page of a magazine and inserted it into the larger PDF of the entire magazine: all the letters in the words embedded in the single PDF page were automatically spread out, so this caption, i