Please Help! Project Gone!!

So I have a big Flash CS4 project I've been working on....I opened it today and it's completely blank....However, the .SWF file plays fine, and to exactly the point where I left the project.....what is this???????
If anyone can help I'd be very grateful....this sucks.
-ryan

Also- the entire library for the project is there too! Just nothing in the timeline, nothing in the preview window!!!!!!!!

Similar Messages

  • Please help, project won't load

    I've worked for months on this project, compiling video and photos of my son's first year.  I made an awesome video, I honestly saved every 3 minutes if not more frequently.  I FINALLY finshed earlier today, I went to burn it to a disc and it knocked down my whole computer and now the file won't re-load it comes up with the photos and videos in the "task bar" area on the right but doesn't show my final product.  It has a red screen come up and saying Media offline.  I am devistated and just don't know where to begin.  any help would be greatly appreciated.
    Sadly... Kim

    If your computer crashed, then I would see this ARTICLE, as it sounds like more is going on, than you might realize.
    I think that Steve's suggestion on looking at AutoSave PREL's is a good one too, but it could well be that the AutoSaves were Saved over.
    Good luck,
    Hunt

  • PLEASE HELP PROJECT DUE IN TOMMORROW

    Hi, I am really stuck and have a project to hand in tommorow,
    I created a web site in dmx and linked it to the following access
    database
    ID, SEE
    where see is a hyperlink in a access db coloum to a page of a
    word document. However when I search for a cretain ID the link in
    the see coloum is not clickable as a hyperlink. Does any one know
    where I am going wrong?

    krazykris,
    primalx is right, you are probably outputting the hyperlink
    and just outputting it wont make it "clickable" you need to code it
    as a link like primalx said, except if you want it to look like a
    link you need to replace the ID to SEE (you should really try
    naming you columns differently ID is pretty vague try something
    like linkID and SEE is a common word with no correlation to you
    database try pageLink or something...
    <cfquery datasource="whatever" name="listings">
    select ID, SEE
    From yourdb
    </cfquery>
    <cfoutput query="listings">
    <cfif SEE neq "">
    <a href="#URLENCODEDFORMAT(SEE)#">#ID#</a>
    <cfelse>
    #SEE#
    </cfif>
    </cfoutput>

  • PLEASE HELP PROJECT ME GOT EXAM NEXT WEEK

    I dont know how to do the code code comments that are listed
    // ask for fields needed for an account
    // declare local variables and store the information in these
    // ask whether it is a checking or savings. Read in a char datatype named which
    // ask for the monthly fee and read it into a variable
    // ask whether it is a checking or savings. Read in a char datatype named which
    // ask for the interest rate and read it into a variable
    // create an instance of a savings account and add it to the array
    public static void process(Account[] acct, int num)
    // use a for loop to calculate all the new balances
    public static void printAll(Account[] acct, int num)
    // use a for loop to print out all of the accounts
    public static int addAccount(Account[] a, int num, String name)
    // ask for fields needed for an account
    JOptionPane.showInputDialog( "Enter Name" );
    JOptionPane.showInputDialog( "Enter Address" );
    JOptionPane.showInputDialog( "Enter Phone Number" );
    JOptionPane.showInputDialog( "Enter Date of Birth" );
    JOptionPane.showInputDialog( "Enter Social Security Number" );
    JOptionPane.showInputDialog( "Enter Account Number" );
    // declare local variables and store the information in these
    // ask whether it is a checking or savings. Read in a char datatype named which
    JOptionPane.showInputDialog("Enter checking or savings 'C','S'");
    if (which=='C')
    // ask for the monthly fee and read it into a variable
    JOptionPane.showInputDialog("Enter monthly fee");
    // create an instance of a checking account and add it to the array
    else if (which=='S')
    // ask for the interest rate and read it into a variable
    // create an instance of a savings account and add it to the array
    return ++num;
    public static void sortAccount(Account[] a, int num)
    for(int pass = 1; pass < num; pass++)
    for(int pair = 1; pair < num; pair++)
    if(a[pair].compareTo(a[pair - 1]) < 1)
    Account temp = a[pair - 1];
    a[pair - 1] = a[pair];
    a[pair] = temp;
    public static void process(Account[] acct, int num)
    // use a for loop to calculate all the new balances
    public static void printAll(Account[] acct, int num)
    // use a for loop to print out all of the accounts

    ok here is the whole program
    here is where I am having trouble inder the Banking part I have done everythng else and now I am stuck
    // Ask for fields needed for an account
    // declare local variables and store the information in these
    // ask whether it is a checking or savings. Read in a char datatype named which
    // ask for the monthly fee and read it into a variable
    // ask whether it is a checking or savings. Read in a char datatype named which
    // ask for the interest rate and read it into a variable
    // create an instance of a savings account and add it to the array
    public static void process (Account[] acct, int num)
    import java.text.*;
    public abstract class Account implements Comparable{
         * Constructor Account.
         * @param cust
         * @param balance
         * @param acctNum
         public Account(Customer cust, double balance, int acctNum)
         // three protected fields, cust of type Customer
         // balance of type double and acctNum of type int
         protected String cust;
         protected double balance;
         protected int acctNum;
         private NumberFormat fmt = NumberFormat.getCurrencyInstance();
         private String Customer;
         private String acctNumber;
    // empty constructor
    public Account ()
         //full constructor
    public Account (String cust, double balance, int accNum)     
              Customer = cust;
         public abstract void calcBalance();
         public String toString( )
              return cust.toString() + " with account number " + acctNum + " and a balance of " + fmt.format(balance);
         // get method deposit from p228
         public double deposit (double amount)
              if (amount < 0) // deposit value is negative
                   System.out.println ();
                   System.out.println ("Error: Deposit amount is invalid.");
                   System.out.println (acctNumber + " " + fmt.format(amount));
              else
                   balance = balance + amount;
              return balance;
         // get method withdraw from p 228
         public double withdraw (double amount, double fee)
              amount += fee;
              if (amount < 0) // withdraw value is negative
                   System.out.println ();
                   System.out.println ("Error: Withdraw amount is invalid.");
                   System.out.println ("Account: " + acctNumber);
                   System.out.println ("Requested: " + fmt.format(amount));
              else
                   if (amount > balance) // withdraw value exceeds balance
                        System.out.println ();
                        System.out.println ("Error: Insufficient funds.");
                        System.out.println ("Account: " + acctNumber);
                        System.out.println ("Requested: " + fmt.format(amount));
                        System.out.println ("Available: " + fmt.format(balance));
                   else
                        balance = balance - amount;
              return balance;
    public int compareTo(Object o)
         Account a = (Account) o;
         if (acctNum>a.acctNum)
              return 1;
         else
              return -1;     
    // all getters and setters
         * Returns the acctNum.
         * @return int
         public int getAcctNum()
              return acctNum;
         * Returns the acctNumber.
         * @return String
         public String getAcctNumber()
              return acctNumber;
         * Returns the balance.
         * @return double
         public double getBalance()
              return balance;
         * Returns the cust.
         * @return String
         public String getCust()
              return cust;
         * Returns the customer.
         * @return String
         public String getCustomer()
              return Customer;
         * Returns the fmt.
         * @return NumberFormat
         public NumberFormat getFmt()
              return fmt;
         * Sets the acctNum.
         * @param acctNum The acctNum to set
         public void setAcctNum(int acctNum)
              this.acctNum = acctNum;
         * Sets the acctNumber.
         * @param acctNumber The acctNumber to set
         public void setAcctNumber(String acctNumber)
              this.acctNumber = acctNumber;
         * Sets the balance.
         * @param balance The balance to set
         public void setBalance(double balance)
              this.balance = balance;
         * Sets the cust.
         * @param cust The cust to set
         public void setCust(String cust)
              this.cust = cust;
         * Sets the customer.
         * @param customer The customer to set
         public void setCustomer(String customer)
              Customer = customer;
         * Sets the fmt.
         * @param fmt The fmt to set
         public void setFmt(NumberFormat fmt)
              this.fmt = fmt;
    public class Savings extends Account {
         private String monthlyFee;
         public Savings(Customer c, int i, int i1, double d)
         // one extrra private field called intRate of type double
         private double intRate ()
              double RATE = 0;
              balance += (balance * RATE);
              return balance;
         // empty constructor
         public Savings ()
         // full constructor - see Checking class on how to do this
         public Savings(Customer cust, double balance, int acctNum, double monthlyFee)
                   super(cust,balance, acctNum);
                   this.balance=monthlyFee;
         public void calcBalance()
              double intRate = 0;
              balance = balance + balance*intRate/100/12;
         // toString method - see Checking class on how to do this.
         public String toString()
                   return super.toString() + " and a monthly fee of " + monthlyFee;
         // getters and setters for only the new fields
         * Returns the monthlyFee.
         * @return String
         public String getMonthlyFee()
              return monthlyFee;
         * Sets the monthlyFee.
         * @param monthlyFee The monthlyFee to set
         public void setMonthlyFee(String monthlyFee)
              this.monthlyFee = monthlyFee;
    import java.util.MissingResourceException;
    import java.util.ResourceBundle;
    public class Messages
         private static final String BUNDLE_NAME = "p5start.test"; //$NON-NLS-1$
         private static final ResourceBundle RESOURCE_BUNDLE =
              ResourceBundle.getBundle(BUNDLE_NAME);
         private Messages()
         public static String getString(String key)
              try
                   return RESOURCE_BUNDLE.getString(key);
              catch (MissingResourceException e)
                   return '!' + key + '!';
    public class Customer {
         * Constructor Customer.
         * @param string
         * @param string1
         public Customer(String string, String string1)
         private String first;
         private String last;
         // two private fields of type String named first and last
         // an empty and a full constructor
         public Customer ()
         public String toString()
              return first + " " + last ;
         // all getters and setters
         * Returns the first.
         * @return String
         public String getFirst()
              return first;
         * Returns the last.
         * @return String
         public String getLast()
              return last;
         * Sets the first.
         * @param first The first to set
         public void setFirst(String first)
              this.first = first;
         * Sets the last.
         * @param last The last to set
         public void setLast(String last)
              this.last = last;
    }public class Checking extends Account{
         // one private field monthlyFee of type double
         private double monthlyFee;
         // empty constuctor
         public Checking ()
         // this is the full constructor - notice how it is done
         public Checking(Customer cust, double balance, int acctNum, double monthlyFee)
              super(cust,balance, acctNum);
              this.monthlyFee=monthlyFee;
         public void calcBalance()
              balance = balance - monthlyFee;
         // notice how the toString is done
         public String toString()
              return super.toString() + " and a monthly fee of " + monthlyFee;
    // getters and setters for ONLY the new fields
         * Returns the monthlyFee.
         * @return double
         public double getMonthlyFee()
              return monthlyFee;
         * Sets the monthlyFee.
         * @param monthlyFee The monthlyFee to set
         public void setMonthlyFee(double monthlyFee)
              this.monthlyFee = monthlyFee;
    import javax.swing.JOptionPane;
    public class Bank {
         private static char which;
         public static void main(String args[])
         Account[] bankAcct = new Account[30];
         int num = 0;
         Customer c = new Customer("Daffy", "Duck");
         Savings s = new Savings(c, 40000, 1237,3.00);
         Checking ck = new Checking(c, 3500, 1235,2.50);     
         bankAcct[0]=s;
         bankAcct[1]=ck;
         bankAcct[2] = new Checking ( new Customer("Bugs", "Bunny"), 2000,1236,4.00);
         num = 3;
    int ans=0;
    while (ans!=6)
    menu();
    System.out.println("CHOICE:");
    ans = Keyboard.readInt();
    if (ans==1)
    num = addAccount(bankAcct,num);
    if (ans==2)
    sortAccount(bankAcct,num);
    if (ans==3)
    process(bankAcct,num);
    if (ans == 4)
    printAll(bankAcct,num);
    if (ans==5)
         System.out.println("See ya later!!!!");
    System.exit(0);
         * Method addAccount.
         * @param bankAcct
         * @param num
         * @return int
         private static int addAccount(Account[] bankAcct, int num)
              return 0;
    public static void menu()
    System.out.println("1. Add an account");
    System.out.println("2. sort the accounts");
    System.out.println("3. end of month processing");
    System.out.println("4. print all records");
    System.out.println("5. exit");
    public static int addAccount(Account[] a, int num, String name)
         // ask for fields needed for an account
         JOptionPane.showInputDialog( "Enter Name" );
         JOptionPane.showInputDialog( "Enter Address" );
         JOptionPane.showInputDialog( "Enter Phone Number" );
         JOptionPane.showInputDialog( "Enter Date of Birth" );
         JOptionPane.showInputDialog( "Enter Social Security Number" );
         JOptionPane.showInputDialog( "Enter Account Number" );
         // declare local variables and store the information in these
         // ask whether it is a checking or savings. Read in a char datatype named which
         JOptionPane.showInputDialog("Enter checking or savings 'C','S'");
         if (which=='C')
              // ask for the monthly fee and read it into a variable
         JOptionPane.showInputDialog("Enter monthly fee");
              // create an instance of a checking account and add it to the array
         else if (which=='S')
              // ask for the interest rate and read it into a variable
              // create an instance of a savings account and add it to the array
         return ++num;
    public static void sortAccount(Account[] a, int num)
    for(int pass = 1; pass < num; pass++)
    for(int pair = 1; pair < num; pair++)
    if(a[pair].compareTo(a[pair - 1]) < 1)
    Account temp = a[pair - 1];
    a[pair - 1] = a[pair];
    a[pair] = temp;
    public static void process(Account[] acct, int num)
         // use a for loop to calculate all the new balances
    public static void printAll(Account[] acct, int num)
         // use a for loop to print out all of the accounts
         * Returns the which.
         * @return char
         public static char getWhich()
              return which;
         * Sets the which.
         * @param which The which to set
         public static void setWhich(char which)
              Bank.which = which;

  • I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    You have 10.6 on that machine, I suggest you stick with it for performance, third party hardware and software reasons as long as possible.
    Consider 10.8 (not 10.7) when it's released, because 10.7 and 10.8 will require a new investment in software and newer third party hardware as it requires newer drivers the old machines won't have. (forced upgrade because of software, really nice of them)
    http://roaringapps.com/apps:table
    Far as your Safari problem do these things until it's resolved:
    1: Software Update fully under the Apple menu.
    2: Check the status of your plug-ins and update (works for all browsers) also install Firefox and see if your problems continue. You should always have at least two browsers on the machine just in case one fails.
    https://www.mozilla.org/en-US/plugincheck/
    Flash install instructions/problem resolution here if you need it.
    How to install Flash, fix problems
    3: Install Safari again from Apple's web site
    https://www.apple.com/safari/
    4: Run through this list of fixes, stopping with #16 and report back before doing #17
    Step by Step to fix your Mac

  • Need help badly. project file wont open. saying damaged file or may contain outdated elements. please help

    project file wont open. damaged file or contains outdated elements message. i believe its an XML error but i dont know how to fix it. please help

    As a happy user of the Matrox RT.X2 for many years, and later an equally happy user of a Matrox MXO2, I can say from experience that it is highly unlikely that this problem has anything to do with the Matrox hardware!
    Can you open a new blank project, and save it?
    If you cannot import your faulty project into a new project, can you import the sequence from your faulty project?
    Have you tried clearing the Media Cache, clearing your preferences, etc. - all among the techniques used to resurrect a Premiere Pro project that has gone bad???

  • I am working on big project and in accidentally flatten the file and i saved it as PSD in then I exited Photoshop. the next time when i open the file it is merged on one page. please help!

    I am working on big project and in accidentally flatten the file and i saved it as PSD in then I exited Photoshop. the next time when i open the file it is merged on one page. please help!

    Flattening and merging are very similar. The main difference is merging keeps the transparent areas, whereas flattening removes all transparent areas by giving it a white background. A good example of flattening is a jpg image.
    Since you have closed the file by closing photoshop, that means that the history is now gone, no way of undoing.
    So that leaves you with two choices.
    You can either recreate the whole document.
    Or you can make selections of areas you are keeping and moving them one at a time to new layers. Keep each object on a separate layer. Then redo the area behind those objects.

  • Imovie quit and i just lost my project... Please help

    I was working on a trailer and imovie quit unexpectantly and when I reloaded my project was gone? Please help!! This has happened before but my project was always visible when i reloaded. I also noticed a different project i was working on is not showing up either.

    Same thing happen to me. I went to 'Finder' clicked on the folder called 'Movies' and there should be a folder called 'Imovie Projects' my lost project was in that folder and I just clicked on it and it came back up in Imovie

  • Please help!!  No "still image" button option...  There last night - now GONE.  ?!?!

    Hello!
    Thank you in advance for anyone/everyone who answers this questions.  I need your help!
    (The most frustrating thing about this - is that it was working easily and perfectly last night with not even a hiccup.  argh.
    So:
    I am putting two movies in one iDVD project and then I'm going to burn on a DL DVD.
    The first movie is in and all of the Chapter Markers imported beautifully with the titles, etc..., BUT....last night I was able to select the Motion Button - Change it to a STILL IMAGE and then drop in my own Still Image.  It was looking great!
    Today, I can't.
    I select the Motion Button and the only "Button Info" Menu it gives me is one that has Font control, Size control, Label, and Transitions.  NO "Still Image" box to check...no box to click and drag my image into - nothing.  argh again!
    On the map page, if I select the "chapter/scene selection" - all it say is "Loop Movie" and gives me a box to check or uncheck.
    Help!  Help!  Help!
    I feel like I'm losing my mind.  I've gone thru and checked to see if there's anything I could've changed, but can't think of anything.
    Of course, I'm on a tight deadline, so please help.
    Thank you!  Thank you!!
    Jocelyn

    I figured it out!!!
    It seems to be a glitch in the "Center Stage" theme.
    I switched to the Revolution Theme, made all of my adjustments, then switched back to Center Stage and it worked!!
    Hilarious, too, because I've been looking for an answer for a couple of hours and right when I sat down at the computer again to try my "plan" - the NEXT post I opened - confirmed it for me!  Woooohoooo!

  • Albums have vanished from Project! - Please Help

    Hello there...
    Every few months i create a new Project folder and then create albums within.
    My latest Project folder had several albums, one light table and one book (in process).
    The other morning i opened Aperture and all the albums etc.within this Project had vanished!
    I could not believe my eyes. As i'd been editing until very late the previous night i assumed i must have done something silly without realising...
    I created a new album in the same Project and put about 50 images into it.
    Today i opened Aperture to continue work on this Album and AGAIN it has gone!
    I searched in all other projects, nothing.
    So i did a test and created an album in the Project with only one photo in it. Quit Aperture and re-launched and again it's gone, vanished.
    This makes no sense. Yes my hard drive is totally full, running slow etc. and i'm about to transfer a heap of files to an external hard drive, but nevertheless i had no warning dialog box from Aperture (as i would expect). And everything else is ok.
    I did another test and created a New Project with just one photo and made an album and light table with the one photo. Quit and re-launched and it is there... So it seems to be only the one Project which was fine for weeks...
    Can somebody please help me work out/understand what is going on. I've had this version of Aperture (2.1.4) for quite some time with no worries...
    Any ideas or thoughts would be most appreciated
    Many Thanks
    Sam

    Seeing as no one else has any contribution i thought you may like some possible lines of thought.
    How many images in the Project. 1000 works, more and things begin to get less predictable, 5000 is asking for trouble. Did you do a lot of work then close while possibly some background processing is going on. Leave it a while before closing.
    Is it Project specific it sounds like it may be. Is it File specific, do you format the card in the camera frequently.
    Try different options to make the Albums Q field >Album from selection. Drag to Album. Highlight images then Album from selection. etc. Allan

  • PLEASE HELP!! USE TIME MACHINE & RESTORED IMOVIE PROJECT CANNOT BE OPENED

    Please HELP!!!!  Imovie yesterday didnt save any of my project changes so I redid them today. And after I just closed Imovie again it did not save my changes from today. Thats 2 days of editing with no record of the changes
    I use Time machine but I have never needed to restore anything. I have gone into time machine, found the file, hit restore and  saved it on my desktop but I am not finding the file in imovie.
    When I click on the file and select open in imovie it is not opening or if it is, it is not the file with the changes when it diverts me to imovie. So basically I can see the file in Time machine, I am restoring it to my computer but I cannot locate it in imovie with the changes. I can see the file on my desktop but i cant open it to view other than in imovie which ofcourse isnt showing the changes.
    PLEASE HELP!!! IM DEVASTATED!!!!
    I am working from an external hard drive. Yesterday I had the prompt appear that I had no more disk space (on my computer) so today i deleted a bunch of things and didnt get that prompt. And in anycase i am working off an external.
    Please help me!!! I need a saviour!!!

    Have you tried deleting iMovie's preference file?
    Close iMovie and go to your Home folder(YourUserName)/Library/Preferences/com.apple.imovie.plist
    Drag this plist file to the Trash. Don't worrry; iMovie will create a new fresh one when you relaunch it.
    Reopen iMovie and see if it works ok now.
    By the way, if you have more than one iMovie version on your computer, be sure to trash the correct plist.
    iMovie 6 is 'com.apple.imovie.plist' but iMovie 8 is 'com.apple.imovie7.plist' and I expect that iM9 would be 'imovie8.plist' If you find only the one plist and you have only one version of iM, just trash that one.
    Post back if this does not help.

  • I have updated to a new version of firefox and lost all of my 'history' i need it back.. I had so much info there and now its gone.. please help me

    a update version of firefox came up.. tellingme to update to new version of firefox. So I did.. it loaded the current version. I always have my 'history' showing. (in the VIEW title on top of screen I go to SIDEBAR, and have history showing. It is on the lest side of screen at all times. I have so many sites and all my research there.. when I updated in was gone.. I need it back.. PLEASE HELP ME... ANYBODY....

    I'm sorry you're having problems with FF 4! Please see the following thread for information on how to downgrade:
    [http://support.mozilla.com/bs/questions/797708 Thread 797708]
    Hope this helps!

  • Everytime i eject my ipod and reconnect it all my music is gone. and sometimes while i try adding music to it. itunes completely freezes. please help. and sometimes when i plug it back into my PC i have to rename my ipod and such

    Everytime i eject my ipod and reconnect it all my music is gone. and sometimes while i try adding music to it. itunes completely freezes. please help. and sometimes when i plug it back into my PC i have to rename my ipod and such

    Antivirus has a tendency to freeze iTunes sync Operation with iPod Classic, causing a timeout, which corrupt your iPod filesystem, so when iTunes can't read the iPod, it is pointing to this problem. Other causes is when your iPod hardisk is dying, or your battery is dying causing hardisk crashes.
    My suggestion.
    Connect your iPod to the PC and run chkdsk, to fix any iPod diskerror, then disconnect it, after chkdsk complete.
    Disconnect your PC from Internet. (just to make sure no nasties creep into your system while you syncing.
    Stop the Antivirus program
    Connect your Ipod to the PC
    When iTunes Open up, Restore your iPod please, this is for iTunes to map correctly, to fix the corrupted filesystem.
    When Restore complete, eject the iPod and reconnect again.
    Sync your ipod, preferably manually Manage in small batches and disconnect after every batch, to check that all is well, since you got such a huge library.
    When all sync is complete, and iPod disconnected, start back your Antivirus and connect back the Internet.
    If this doesn't resolve your problem, then let me know.
    Good Luck!

  • PLEASE HELP! Itunes library gone but music still on iPod

    I recently have started organising my 'my music' files and deleting folders with more than 3 copies of songs, I have a lot of music 2500 songs and opened up itunes and all music I have imported (not bought) has gone, my music is still on my ipod though but I'm too scared to sync it in case all my music has gone, I still have my original music in 'my music' file but it's not shown up on library as usual PLEASE HELP!

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Is there any way I can recover deleted pictures from Camera Roll and iCloud? Please please help me. All of my precious pictures are gone that I can never EVER get back. I dont have any iCloud or Camera Roll backup; and my PC can't download more software.

    Hi everyone! I'm in need of extreme help. You see, today, two months ago I went out of the country from the United States of America. I took about 1500 pictures ONLY on my iPod touch. When I returned to the United States to my home, I accidentally deleted a little more than 100 pictures. Then, thinking I could get ALL of the pictures back at once, I restored my iPod touch from an iCloud backup I had a couple of days before. Instead of getting all of my pics back, they all got erased. The pictures that I did delete were deleted from Camera Roll AND Photo Stream (iCloud). Then, I was only able to get about 500 pictures back from iCloud. So about 1000 are still gone. When i did the restore, I thought all my pictures would be there, but they weren't and I couldn't possibly figure out why; because a restore from iTunes or iCloud is supposed to restore your device to the settings of the time you backed up your device. All of my other settings were just the way they were supposed tone for the time being, all except my pictures, which contained not one picture in any folder. So EVERYTHING from Cameta Roll was gone, and only about 500 pictures survived. I kept retoring and restoring, hoping they would come back but unfortunately they didn't. Then one time a restored again, I saw all of them back!! But then, within a blink of an eye, they disappeared as soon as I tapped on one picture. Then, I knew they were still in reach, but I just had to find them. Where could those 1000 pictures go? I looked up how to recover deleted photos, but I have to install a software. My computer CANNOT possibly take anymore software on it, my PC is very sensitive and I cannot delete anything off of it. Please please help me. What can I do to get my pictures back? They are memories that I can never EVER EVER get back. Thank you so much.

    Please please help me, if you know how.

  • Can't open Garageband project, please help

    I was using a Mac Mini, 10.7.5, and recorded some vocal tracks on Garageband 11.  I clicked gospel choir vocal effect at first, and it was fine.  When I wanted to try another effect by clicking another one, the application quit.  When I tried to open the project again, the initializing window popped up, and a few seconds after, it said something like "Garageband quit unexpectedly, do you want to reopen to restore the windows".  When I clicked "reopen", it directed me back to Garageband recent project page without opening the project I was working on.  I tried to open other projects I worked on previously, and those could be opened; just not the one that I worked on recently.
    I didn't back up anything with the Time Machine because I never used it before, didn't know how to use it.
    I just saved the project to my USB drive, deleted the one on the Mac Mini, deleted Garageband, updated to iOS10.9 something, reinstalled the newest version of Garageband, tried to open the project from the USB drive, failed again.
    When I open the "show package content", some mp3 files of my recorded vocals are there.  I don't think all of what I recorded are there, but some.
    Please help.
    Thanks!

    Which version of Logic? Which OS? Update your profile so we know what you are running!
    P.S. Welcome!

Maybe you are looking for

  • Toshia 50L1400U HDMI Laptop Freezes and isn't Live

    Hi. I just got a Toshia 50L1400U and i hooked up my laptop to the The HDMI 2 output on the TV and on the tv screen it freezes with my desktop with no live fuctioning (can't see mouse pointer, or program windows don't show up on the tv. its not the HD

  • Profitibility of Sales office wise

    Hi SAP Guru's, I am fico consultant right now i involve in an implementation project, project is now in To be phase. I have problem and problem is discussed below In my client have n no of branch we treat branch as a plantand profit center. Suppose i

  • Cannot purchase item in game

    i succeed buying only first time for item pearls in Spatan War. After that it cannot and show msg contact apple support.

  • Motorized stage library: .dll's and API.

    Hi all, I've built software that follows small worms (1mm in length), sequestered in a petri dish, using a motorized stage to keep them in view of a recording camera. I'd like to extend my software to interface with NI supported stages. My software i

  • How to programmatically sign test data?

    Hello LV fans, I'm looking for some ideas/methods to programmatically apply a digital signature to my test data. Currently I write to Excel, using ActiveX, then print and manually sign each data sheet. I'm open to new ideas to improve this process. t