Import photos that don't exist...

When I import pictures into iPhoto from an external hard drive, there are mystery pictures that are showing up. These are pictures that used to exist on the HD but that I deleted from there.
I deleted my entire iPhoto library and emptied the trash within iPhoto. I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
I tried to re-import the pictures from the external HD to iPhoto, but AGAIN, the mystery pictures are there. I've checked the folder in the HD that they are showing up in. But, they are not there. I've even done a search on my computer, and the files don't exist.
Please help me figure out why this is happening. I just don't know how to get rid of these pictures. I want them gone...completely!!!
Thank you!!!

I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
Never make changes to the structure or content of the iPhoto library using the finder
make sure you have the photos you want safe and drag the baad iPhoto library to the trash and empty it and then depress the option key and launch iPhoto and create anew library - now start using this correctly set up library
LN

Similar Messages

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • IPhone 5 shows data in Photos that doesn't exist.

    iPhone 5 shows data in Photos that doesn't exist.
    iPhone 5, 16GB running iOS 8.1.2.  Service through Verizon. iCloud Photo Library (Beta) is off. My Photo Stream is off. iCloud photo sharing is off.
    Under "About" in settings it says there are 32 Videos and 429 Photos on the device with a capacity of 12.6GB and 7.0GB available.
    Normally, I used to import photos and videos from Preview and manually delete them on the phone, until I realized this could also be done in Image Capture with the ability to delete all of them with one click, which is what I did this time (I have done it through Image Capture at least once before).
    I've tried in this order:  Creating an empty folder and syncing to it through iTunes.  That didn't work, so I created a backup on iTunes, completed the "Erase All Content and Settings" option on the phone and then I restored from that backup.  Still no luck but I'm wondering if I just saved the issue in the backup and restored back to it.  I really don't want to do a complete erase and start over, but if there are no other options I will try it.
    Ideas? Thanks in advance.
    EDIT: Photo shows iPhone in iTunes after restore.

    I tried this and it did work for me! It was on a separate posting.
    Good luck!
    scabthepoetMar 15, 2015 2:00 PM Re: My iPhone 5 camera roll is empty, but under usage says 3.1GB - how can I delete?
    Re: My iPhone 5 camera roll is empty, but under usage says 3.1GB - how can I delete?in response to armccoyHelpful
    I've been searching for an answer to this very problem for a solid day. Here is what I did that worked for me. No reset. No need to upgrade to more Cloud storage or anything else. I had already deleted out every picture from my phone, including "Messages" and the "recently deleted" album, etc. There really are phantom pictures in there, but the only way to see them and delete them is to:
    Go to Settings
    Date & Time
    Untoggle "Set Automatically"
    Manually change the date back. For example, if today is March 15, 2015, choose August 1, 2014. (You can change it back once we're done)
    Close out of that
    Open "Photos"
    Select "Albums"
    If, like me, you had already cleared out everything from the Camera Roll and "Recently Deleted" folder, you'll smile to see that your "Recently Deleted" folder now has thousands of images back. Those are your phantom photos
    Open it, "Select" and start deleting
    Now, go back into Settings - General - Usage - Storage - Manage Storage - and you'll notice your Photo & Camera is empty if you deleted everything
    I hope this works for everyone and that I saved you all the time I wasted searching for an answer myself -- only to never find one. Now you have the answer.
    I went from barely having any room left on my phone to almost brand new again.
    Take care.

  • What about photos that *don't* belong to an event?

    i love the new "events," but what about photos that are not part of an event?
    for example, one day in 2001, i imported a bunch of photos from around the net to use as desktop pictures. but those photos don't exactly comprise an "event." that same day, my sister sent me one photo of her newborn baby. now, iphoto's calling all of that day's photos an event. although i love the concept of events, it bugs me to call certain groupings "events," when that's not what they are.
    i can't seem to find a way to delete an event. is it mandatory that each photo belong to an event? if events have truly replaced "rolls," i imagine every photo must therefore belong to one.
    i already have albums entitled "family" and "desktop pictures," so those photos are already organized elsewhere. but how are you guys handling random photos that don't exactly qualify to be called "events"? as i type, it occurs to me to create an event called "non-events." but i'd still love to hear how others are dealing with this.

    An Event looks to be just another name for a Roll. And in all previous versions of iPhoto all photos had to belong to a Roll, whether you liked it or not, either named by your convention or by iPhoto's default.
    I guess with the metaphor of film rolls fading quickly as digital cameras advance, a new moniker for the base catalog entry was necessary. Suits me fine as long as the equivalent functionality is preserved with new features a bonus worth the price of "upgrading".
    I have not tried the switch to the new iLife iPhoto version yet (iMovie 8 is a HUGE step backwards so my caution meter is on FULL alert), as I have the same reservations. I have scrupulously kept Rolls organized by import date and require all that existing metadata be transferred perfectly.

  • How do I show a count for rows that don't exist?

    Hi, I'm trying to count the number of records grouped by rank(B,C,R),month,and year. Basically, anytime a part fails testing a record is entered which records the failure Rank and occurrence date. A record is only inserted if a part failed for specific rank. So not all 3 ranks will have entries. I'm able to count all ranks by month,year that do exist. But how do I get values of 0 for the ranks that don't exist? I just created a table qa_rank that has just one column rank with 3 records(b,c,r). but its not being used as of now. rank is just a column in qa_occ record.Here is my query.
    select to_char(occdate,'YY') as yr, to_char(occdate,'MM') as mn,
    rank, count(occdate)
    from qa_occ
    where q.occdate between '1-Apr-2005'and '31-Mar-2006'
    and q.supplier = '11107'
    group by to_char(q.occdate,'YY'),to_char(q.occdate,'MM'),q.rank
    order by to_char(q.occdate,'YY'),to_char(q.occdate,'MM')
    which returns this
    YY MM RANK COUNT(OCCDATE)
    05 09 C 2
    05 10 C 2
    05 11 C 1
    05 11 R 1
    06 01 C 3
    06 02 C 1
    06 03 B 1
    06 03 C 2
    I need it to return C,B,R for everymonth. If no records exist then the count for the month,rank should be 0. Any ideas? Thanks.

    something like:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select * from qa_occ;
    OCCDATE   PART            R INDEXPOINTS
    15-SEP-05 B3661-RYPX-A000 C           4
    25-SEP-05 B3661-RYP-A000  C           4
    11-OCT-05                 C           7
    20-OCT-05 B3661-RYP-A000  C           4
    11-NOV-05                 C           4
    18-NOV-05 B3661-RYPX-A000 R           0
    11-JAN-06 B3661-RYP-A000  C           4
    25-JAN-06 3511-RNA0-0111  C           4
    27-JAN-06 3511-RNA0-0111  C           4
    15-FEB-06 3511-RNA0-0111  C           4
    07-MAR-06 B3661-RYP-A000  C           4
    14-MAR-06 B3661-RYP-A000  C           4
    15-MAR-06 3511-RNA0-0111  B          13
    13 rows selected.
    assuming that there are only three ranks available B, C,and R we considered this as a lookup values. now in the query below we incorporate an inline view for the lookup values:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select qa.yr, qa.mn,
    28         decode(qa.rank,lk.rank,qa.rank,lk.rank) rank,
    29         sum(decode(qa.rank,lk.rank,qa.cnt,0)) cnt
    30    from (select to_char(qo.occdate,'YY') as yr,
    31                 to_char(qo.occdate,'MM') as mn,
    32                 qo.rank,
    33                 count(qo.occdate) cnt
    34            from qa_occ qo
    35          group by to_char(qo.occdate,'YY'),
    36                   to_char(qo.occdate,'MM'),
    37                   qo.rank) qa,
    38         (select 'B' rank from dual
    39          union all
    40          select 'C' rank from dual
    41          union all
    42          select 'R' rank from dual) lk
    43  group by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank)
    44  order by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank);
    YR MN R        CNT
    05 09 B          0
    05 09 C          2
    05 09 R          0
    05 10 B          0
    05 10 C          2
    05 10 R          0
    05 11 B          0
    05 11 C          1
    05 11 R          1
    06 01 B          0
    06 01 C          3
    06 01 R          0
    06 02 B          0
    06 02 C          1
    06 02 R          0
    06 03 B          1
    06 03 C          2
    06 03 R          0
    18 rows selected.
    SQL>

  • I've just imported photos that are misdated and appear out of order in my events. How can I correct the dates on these events so they appear properly?

    I've just imported photos that are misdated and appear out of order in my events. How can I correct the dates on these events so they appear properly?

    The one iin the Photos ➙ Adjust Date and Time menu option:
    checkbox below:

  • Movies that don't exist

    front row looks in the movies folder and lists the contents, right?
    well it's showing titles in that are not in and have never been
    in my movies folder.
    nothing happens when selecting these (probably because they don't exist).
    of course i can't delete since they do not appear in the finder or
    spotlight search.
    i tried deleting everything in the movies folder, of course all
    that's left in front row are the movies that don't exist.
    any suggestions?
    Message was edited by: avinbc

    Are your movies, even though they're gone from the hard drive, listed in iTunes somewhere? That would make them appear in Front Row even under the Videos section.
    The Front Row preference file does not remember anything except which module was the last one you used.
    -Doug

  • Get rowns that don't exist in any of the tables.

    Hi,
    I need to implement some views to compare systems.
    This views will compare tables with the same structure and I want to extract the rows that don’t exist in any of the sides.
    I need to implement some views to compare only two tables, others to compare 3 tables and one to compare 5 tables and another to compare 10 tables!
    Each table can contains from a few rows up to 10 million rows (that was the biggest count I found for this tables).
    My test scenario:
    CREATE TABLE TEST_TABLE
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE2
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE3
    (COL1 NUMBER ,
    COL2 CHAR(25));
    insert into TEST_TABLE (COL1,COL2) values (1,'2');
    insert into TEST_TABLE (COL1,COL2) values (11,'t1');
    insert into TEST_TABLE2 (COL1,COL2)  values (1,'2');
    insert into TEST_TABLE2 (COL1,COL2) values (22,'t2');
    insert into TEST_TABLE3 (COL1,COL2) values (1,'2');
    insert into TEST_TABLE3 (COL1,COL2) values (33,'t3');To find the differences between two tables I implemented the following:
    select * from
    (select * from TEST_TABLE
    minus
    select * from TEST_TABLE2
    union all
    (select * from TEST_TABLE2
    minus
    select * from TEST_TABLE
    Result:
    COL1 COL2
    11     t1                      
    22     t2                       For the 3 tables comparison The result should be:
    Result:
    COL1 COL2
    11     t1                      
    22     t2                      
    33     t3                       For the other ones I can implement the same way, but for sure this is not the prettiest and most performing solution!
    How can I achieve the result I intent with the most performance?
    Thanks,
    Ricardo Tomás

    You didn't say if you allow duplicates in your tables, so i assumed you didn't.
    If a single table could have multiple occurrences of a given col1, col2 combination you would need to distinct the col1,col2 list from each table before doing the union all.
    ME_XE?  select
      2     col1, col2
      3  from
      4  (
      5     select col1, col2       from test_table
      6             union all
      7     select col1, col2       from test_table2
      8             union all
      9     select col1, col2       from test_table3
    10  )
    11  group by
    12     col1, col2
    13  having count(*) = 1;
                  COL1 COL2
                    33 t3
                    22 t2
                    11 t1
    3 rows selected.
    Elapsed: 00:00:00.01
    ME_XE?

  • Deauthorizing computers that don't exist

    How am I supposed to deauthorize computers that don't exist? Every time I've had to reinstall Windows, iTunes eats up another "authorization". Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?

    Every time I've had to reinstall Windows, iTunes eats up another "authorization".
    Your supposed to deathorize BEFORE a re-install. Not after. iTunes makes it very easy to do that.
    Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?
    Apple makes it easy enough to de-authorize your computer. You can even do a de-authorize all once a year. Log on your account and you should be able to not only view your authorizations, but have an option to de-authorize all of them.

  • I have event folders in photo that no longer exist that I cannot unsync. Suggestions please?

    I have discovered that I have event folders in photo that no longer exist on my imac so they are not listed in the itunes list, therefore I have no way to uncheck them in order to unsync them. Any suggestions?

    I have already tried your suggestion. When I unsync all photo's I am left with event folders that no longer exist in my iphoto program that are still on the ipad (Oddly, they are folders that were condensed into one larger event). So when I go into itunes there are no folder options to check that would allow me to unsync them. Very frustrating.

  • Why don't my last batch of imported photos, that show up in "Last Import" show up in my Library? Not in Events or Photos....

    I have never had a problem importing photos into iPhoto. Just this last time, I can't see my last imported photos in my library. Not in Events or Photos. When I try to import them again I get the message that they have alreadly been imported. And they show up under Recent and "Last Import" I even flagged them from Last Import and shared them. But I can't see them in the library. Weird. This has never happened before.
    Help.

    If they are in Last Import then they are in the library.
    Right click on one in Last Import and select 'Show Event'
    The usual explanation is the date on the camera is off, or the Event sorting is not what you expect.
    Regards
    TD

  • IMovie 11 how do I import photos that ARE NOT in iPhoto

    If I don't use iPhoto, how can I import photos into an iMovie 2011 project?
    As far as I can see, you have to put your photos into iPhoto first. I don;t use iPhoto, I use Lightroom and it would be a pain if the only way that I could get photos into an iMovie project was to have to load them into iPhoto.
    thanks

    I finally figured it out myself. You can drag photos from Finder into the project timeline.
    I couldn't find this docuemented anywhere and every tutorial only talks about using iphoto.

  • Is there a method for suggesting apps that don't exist yet?

    As a frequent user of call forwarding, it would be great if when I input a phone number it displays as one of my Contacts. This would help avoid mistakes, such as mistyping my home phone number; I might miss that I inputted one wrong digit, but if Home didn't come up I'd see that immediately.
    Is there anywhere ideas like this can be posted?
    thanks.

    Smart album with face is none (I believe - check the available options)
    Unfortunately since iPhoto does not know that faces exist exist in photos that it has not found a face you will only get faces that you have not named - to see all photos with potential faces that iPhoto has not found you need to go through all photos and look - I used to add a keyword "face checked" after I went through a photo but fell behind and haven't gotten back to it - with that you can use keyword is not face checked to clean out ones you have done
    LN

  • How do I re-import photos that Lightroom says it "cannot find."

    I have gone to a half-day workshop on Lightroom 5.  I have purchased and started reading Scott Kelby's Lightroom 5 for Digital Photographers, but find it rather cumbersome and unhelpful.  And all I am trying to do is ORGANIZE and import photos (I am only now on Chapter 1).  I have used Photoshop Elements for years, and found it very user friendly. Not so with Lightroom, for me!!!
    I was trying to organize my photos in my external hard drive. 
    1.  I noticed that some photos I thought I had imported from my SanDisk 16 gb "chip" to the external drive don't seem to be available in Lightroom, because I get a message like "Cannot find files."
    2. I tried to re-import these photos, but Lightroom seems to think they are somewhere, and won't let me import from my SanDisk again.
    3. Trying ot solve this problem I clicked "Merge" on the photos in my external hard drive, but that only put all my photos in one folder, now not according to date. I want to revert to saving them by DATE, not "merged" into one file
    4. I checked in Scott Kelby's index under "merge" it does not refer to a problem with managing photos.
    5. Help me learn the following:
    A. How to correct the "merge" which put all the photos in one folder, not by date, so that they are again organized by date.
    B. How to find the photos that Lightroom says it cannot find, or download them again, or whatever to solve the missing photo problem

    1. I noticed that some photos I thought I had imported from my SanDisk 16 gb "chip" to the external drive don't seem to be available in Lightroom, because I get a message like "Cannot find files."
    Could you please give us the EXACT error message?
    Then I clicked on IMPORT. Was this the correct way of downloading, because when I do that, in the top LEFT corner of the Lightroom screen, it indicates that it is “downloading photos,” but nothing seems to download.
    This sounds to me like a hardware problem ... either the card reader or the card itself is not responding.
    With regards to the bulk of the rest of your problems, it might make sense to start over. Remove the files from your hard disk using your operating system (assuming they are still on your camera card), create a new empty catalog in Lightroom (File->New Catalog), and import them again from your camera cards. Perhaps instead of following Kelby's advice, follow other advice on importing and organizing, such as:
    http://tv.adobe.com/watch/learn-lightroom-5/importing-photos-from-a-cf-card/
    http://tv.adobe.com/watch/getting-started-with-adobe-photoshop-lightroom-5/lightroom-5-imp orting-your-images
    http://tv.adobe.com/watch/getting-started-with-adobe-photoshop-lightroom-5/lightroom-5-org anizing-your-images/
    It is also my opinion that if you read Scott Kelby's books and start where he discusses how to edit photos, you will probably find the book to be useful; however if you read Scott Kelby's books where he discusses importing and organizing, it is my opinion that his advice is off-the-mark and not helpful. If you want to read a good book on organizing, try http://thedambook.com/

  • IPhoto : how to recover imported photos that are now "*.ipmeta" files

    Yesterday I imported photos from my Nikon camera in iPhoto. I imported them in an album. Then I deleted all photos from the camera and empty the trash (mac book).
    Today I open iPhoto and I don't find the photos any more : neither in iPhoto nor in My Pictures.
    Using the Finder (search on Yesterday), I found is a list of files such as "photo.002723.ipmeta". It looks like these files may correspond to the photos, but I cannot open them with iPhoto.
    How can I recover my photos ?
    I understand my mistake was to import the photos in iPhoto without first moving them to My Pictures.

    Welcome to the Apple Discussions.
    I understand my mistake was to import the photos in iPhoto without first moving them to My Pictures.
    It wasn’t, unless you’re running a Referenced Library. Are you?
    Then I deleted all photos from the camera
    You can probably recover the photos from your camera card with an app like MediaRecover.
    Today I open iPhoto and I don't find the photos any more : neither in iPhoto nor in My Pictures.
    Are you sure you don’t have a damaged database file?
    Option 1
    Back Up and try rebuild the library: hold down the apple and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    photo.002723.ipmeta
    These are database files of about 4kb each. They are not your photos and your pics cannot be recovered from them.
    Regards
    TD

Maybe you are looking for

  • Ibook G4 late 2004 model charging intermittently-flashes amber then green

    Hi there, i have an ibook G4 14 inch late 2004 with mac os x 10.4.11. my previous 45w power cord needed to be jiggled in order to power the laptop (it was pretty damaged). yesterday, it stopped working completely, so i went to the apple store and bou

  • Is it a bug about element's depth?

    I have two elements in one frame and if I use: alert(fl.getDocumentDOM().getTimeline().layers[1].frames[2].elements[0].depth); alert(fl.getDocumentDOM().getTimeline().layers[1].frames[2].elements[1].depth); It shows me 0 and 1, It is all right! But i

  • Command prompt showing 2 users

    well... i have been using OS X for quite a while now. Recently i thought of learning UNIX commands in command prompt... so while learning, I came acroos a commant that shows all the users logged in - " who | wc -l " when i typed this command in the p

  • Can I use apple tv with Hughesnet?

    Can I use apple tv with Hughesnet?

  • Songs in acc need to be mp3/

    Hes the deal.. My brother has an ipod and i'm getting a zen touch for my birthday... also i have a little over 500 songs on itunes... Hes where the problem comes up. since the zen touch doesnt support the ACC format..so I need to find some way of cha