Access figures which are not part of iPhoto

Hello,
as a MAC rookie, I have a question which has been potentially asked already many times.
I want to import a picture or a figure into keynote / numbers / pages and the figure is not part of iPhoto.
When I open 'Media' I can only access pictures and figures which are in iPhoto. See screenshot below.
How can I access files which are stored somewhere else?
Thanks!

The Media browser is just one option. It collects all the info stored in iMovie, iTunes, iPhoto and displays it in one place.
From the Insert menu (in Pages), select "Choose..." and navigate to the file. Or, do something really Mac-like and drag the picture from the Finder into the program.

Similar Messages

  • On iPhone IOS6 i have events and photos which are not in my iPhoto 11 event library.

    On iPhone IOS6 i have events and photos which are not in my iPhoto 11 event library.
    I have noticed that on the itunes photo sync some more events and even several event per day are created but these photos are not in my iPhoto standard pictures (more events on iPhone tha.
    Some of these pictures i have trashed them but they still appear in sync on iTunes.
    How can I clean this?
    These pictures are even not in trash bin because i empty it.
    Can anyone help me.

    Many continue to have the problem and today's iPhoto update does not appear to have corrected the issue.  You can see the MANY complaints here
    https://discussions.apple.com/message/20186814?ac_cid=tw123456#20186814

  • Can not access websits that are not part of my favorites, very frustrated

    I can not access any website that was not part of my favorites through firefox. When i type in the url nothing happens it just sits there. I have tried starting firefox in safemode and still same results. I can not add any type of search engine either. i dont know when all of this happened but firefox changed over maybe a week ago and hasnt been working right since.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • A device which is not part of this management group has attempted to access this Health Service.

    Has anyone found an answer to this yet?  I have uninstalled/reinstalled the agents both manually and through the push. Rebooted the client, rebooted the  sce server. Forced the group policy to reapply, forced the health agent to /reportnow and I still get the error. The client shows up under the agent managed section but under the health state column it shows not monitored. The clients can ping the SCE server by FQDN and RDP to it as well so name resolution is working fine.
    On the the SCE server I get this in the log
    Event Type: Information
    Event Source: OpsMgr Connector
    Event Category: None
    Event ID: 20000
    Date:  6/25/2009
    Time:  10:09:40 AM
    User:  N/A
    Computer: *******
    Description:
    A device which is not part of this management group has attempted to access this Health Service.
    Requesting Device Name : *****
    And this
    Event Type:            Information
    Event Source:           OpsMgr Connector
    Event Category:       None
    Event ID: 21042
    Date:                        6/25/2009
    Time:                       10:25:14 AM
    User:                        N/A
    Computer:                ***********
    Description:
    Operations Manager has discarded 1 items in management group Servername_MG, which came from $$ROOT$$.  These items have been discarded because no valid route exists at this time.  This can happen when new devices are added to the topology but the complete topology has not been distributed yet.  The discarded items will be regenerated.
    On the client I get
    Event Type: Error
    Event Source: OpsMgr Connector
    Event Category: None
    Event ID: 20070
    Date:  06/25/2009
    Time:  10:06:13 AM
    User:  N/A
    Computer: ******
    Description:
    The OpsMgr Connector connected to ****** but the connection was closed immediately after authentication occured.  The most likely cause of this error is that the agent is not authorized to communicate with the server, or the server has not received configuration.  Check the event log on the server for the presence of 20000 events, indicating that agents which are not approved are attempting to connect.
    And this as well
    Event Type:            Error
    Event Source:           OpsMgr Connector
    Event Category:       None
    Event ID: 21016
    Date:                        06/25/2009
    Time:                       10:06:18 AM
    User:                        N/A
    Computer:                ******
    Description:
    OpsMgr was unable to set up a communications channel to **** and there are no failover hosts.  Communication will resume when ******* is both available and allows communication from this computer.
    And this
    OpsMgr has no configuration for management group Servername_MG and is requesting new configuration from the Configuration Service.

    Hey Nathan,
    Yea I have sent the script to eveyone that has aked for it. I dont know if its helped anybody else as none has given me any feedback either way.
    I guess I can post it here for everyone to use.
    Please keep in mind that if you use this script from MS its at your own risk, If your DB blows up, massive catastrophic failure ensues and so forth ITS YOUR OWN FAULT. MAKE SURE YOU HAVE GOOD BACKUPS
    Step 1) Run this against your SCE 2007 DB
    DECLARE @BaseManagedEntityInternalId int
    DECLARE @BaseManagedEntityId uniqueidentifier
    DECLARE @ViewName sysname
    DECLARE @Statement nvarchar(max)
    SET @BaseManagedEntityInternalId = 0
    WHILE EXISTS (SELECT * FROM BaseManagedEntity WHERE (BaseManagedEntityInternalId >
    @BaseManagedEntityInternalId))
    BEGIN
    SELECT TOP 1
    @BaseManagedEntityInternalId = bme.BaseManagedEntityInternalId
    ,@BaseManagedEntityId = bme.BaseManagedEntityId
    ,@ViewName = met.ManagedTypeViewName
    FROM BaseManagedEntity bme
    JOIN ManagedType met ON (bme.BaseManagedTypeId = met.ManagedTypeId)
    WHERE (bme.BaseManagedEntityInternalId > @BaseManagedEntityInternalId)
    AND (bme.IsDeleted = 0)
    ORDER BY BaseManagedEntityInternalId
    SELECT @Statement = 'IF NOT EXISTS (SELECT * FROM ' + QUOTENAME(@ViewName) + '
    WHERE BaseManagedEntityId = ''' + CAST(@BaseManagedEntityId AS varchar(50)) + ''')
    PRINT ''' + CAST(@BaseManagedEntityId AS varchar(50)) + ' ' + @ViewName + ''''
    EXECUTE(@Statement)
    END
    STEP 2) 
    If your problem was the same a mine you should get some GUID’s returned.  (For example 93790c0B-09C4-3A4D-CE72-F4E3Dd917D78 MTV_DeploymentSettings)
    Using the GUID that we got in the output file
    Execute the below given query:
    ==========================
    select fullname
    from basemanagedentity
    where basemanagedentityid = ‘<GUID>’
    ==========================
    Verify that the device or the object mentioned in the above output is not displayed in Operations console.
    Only in case if the object is not displayed then use the below given query to delete it from database.
    ==========================
    update basemanagedentity
    set isdeleted = 1
    where basemanagedentityid = ‘<GUID>’
    ==========================
    Before executing the above query please ensure that you have the backup of the database. Also note that you need to run the above said query only incase if you do not see the object in the Operations console.
    After executing this query, run this stored procedure:
    ==========================
    exec p_Detectandfixinstancespaceinconsistencies
    ==========================
    Once it is done:
    > Stop all the three OpsMgr services: health, Config and SDK on Management Server
    > Cleared the health service state folder.
    > Start all the three OpsMgr services: SDK, Config, and health on Management Server.
    > Wait for 30 minutes and see if the agents start getting monitored.
    I hope this helps everyone

  • Identify tables which are not used in any access seq.

    Hi
    Need to identify those tables (A500 - A999) which are NOT used in any access sequence (table T682I).
    Not sure how to do this.
    Thanks for the help

    Hi Karen,
    if you don't want to use SE11 and see it on one glance, you could use the following coding:
    DATA: it_t682i TYPE TABLE OF t682i,
          wa_t682i TYPE t682i,
          it_missing TYPE TABLE OF t682i,
          wa_count TYPE kotabnr VALUE 499.
    SELECT * FROM t682i INTO TABLE it_t682i
                  WHERE kvewe = 'A'
                  AND  kotabnr BETWEEN 500 AND 999.
    DO.
      ADD 1 TO wa_count.
      READ TABLE it_t682i INTO wa_t682i
                 WITH KEY kotabnr = wa_count.
      IF sy-subrc <> 0.
        CLEAR wa_t682i.
        MOVE wa_count TO wa_t682i-kotabnr.
        APPEND wa_t682i TO it_missing.
      ENDIF.
      IF wa_count = 999.
        EXIT.
      ENDIF.
    ENDDO.
    BREAK 'your user'.
    The table it_missing is just a quicky solution, you could use a table with just one field or use write to print the result.
    Hope that helps!
    Regards
    Nicola

  • "one or more of the items in your selection contains Aperture albums that are not supported in iphoto".

    I have some folders in iPhoto called 'Recovered Folder'. When I try to delete them I get this message: "one or more of the items in your selection contains Aperture albums that are not supported in iphoto".
    I don't use Aperture (did install it to try it out), and have deleted Aperture App from my Mac.
    How can I get rid of these fodlers?

    i finally figured this out:
    fyi, iphoto and aperture can now share (i.e., access) the same library. apple details it here:
    http://support.apple.com/kb/HT5260?viewlocale=en_US&locale=en_US
    i use both iphoto and aperture, and i suspect something went amiss, at some point, while aperture was accessing my iphoto library.
    this is how i fixed the problem:
    i launched aperture, then (per the instructions linked above) switched to (i.e., accessed) my iphoto library. i was then able to delete the "recovered folder" and the album it contained. i then quit aperture and relaunched iphoto.
    NOTE: at that time, although i expected the "recovered folder" to be gone, it was still present. but this time, i was able to delete the folder from within iphoto without the "contains aperture items" error message.
    (Sparky030405, i realize you've since deleted aperture. while i can't say my method is the *only* way to solve this problem, it's the way i was able to solve it. so, you might consider reinstalling aperture in order to delete the folder, then uninstalling aperture, once again.)

  • How to delete images from folder which are not in the database

    I am created windows form
    i wont to delete images from the folder where i have stored images but i only want to delete those images which are not in the data base.
    i don't know how it is possible . i have written some code
    private void button1_Click(object sender, EventArgs e)
    string connectionString = "Data Source";
    conn = new SqlConnection(connectionString);
    DataTable dt = new DataTable();
    cmd.Connection = conn;
    cmd.CommandText = "select * from tbl_pro";
    conn.Open();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    da.Fill(dt);
    int count = Convert.ToInt32( dt.Rows.Count);
    string[] image1 = new string[count];
    for (int i = 0; i < count; i++)
    image1[i] = dt.Rows[i]["Image1"].ToString();
    string[] image2 = new string[count];
    for (int i = 0; i < count; i++)
    image2[i] = dt.Rows[i]["Image2"].ToString();
    var arr = image1.Union(image2).ToArray();
    string[] arrays;
    String dirPath = "G:\\Proj\\";
    arrays = Directory.GetFiles(dirPath, "*", SearchOption.AllDirectories).Select(x => Path.GetFileName(x)).ToArray();
    int b= arrays.Count();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    var del = arrays[j].ToString();
    else
    foreach (var value in del) // ERROR DEL IS NOT IN THE CURRENT CONTEXT
    string filePath = "G:\\Projects\\Images\\"+value;
    File.Delete(filePath);
    here error coming "DEL IS NOT IN THE CURRENT CONTEXT"
    I have to change anything .Will It work alright?
    pls help me
    Sms

    Hi Fresherss,
    Your del is Local Variable, it can't be accessed out of the if statement. you need to declare it as global variable like below. And if you want to collect the string, you could use the List to collect, not a string.  the string will be split to chars
    one by one.
    List<string> del=new List<string>();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    del.Add(arrays[j].ToString());
    else
    foreach (var value in del)
    string filePath = "G:\\Projects\\Images\\" + value;
    File.Delete(filePath);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I detect workbooks which are not longer in use?

    Hello togehter,
    I am looking for a way to detect BEX Workbooks which are not longer in use. Is there something in the BC which I can use for that?
    Best would be some query with the information of when and by whom a workbook gets called up last time.
    Thanks!
    Andreas

    Hi Edward,
    there is no key figure providing this information.
    First of all you got convert the 0CALDAY from Date to Number, therefore you got to configure a new variable (by replacement path) and put it into a formula.
    Use the result of this formula as a column and create a new TOP 1 condition on it.
    Now you will only get one row per Workbook/Query (or whatever you have chosen) with the date of the last use of it.
    Regards,
    Andreas

  • Photos shown in the Package Contents are not visible in iPhoto.

    I am using iPhoto '08 (7.1.5 (378)) and have suddenly found that the last 3 years worth of photos are not displayed in iPhoto while they are still visible in the Package Contents (using Finder).  The folders (with event and image content) for 2012 through part 2009 are in Originals, Modified and Data but do not get picked up by the iPhoto application.  I have backups upto April 2011 i.e. no backups for a considerable number of photos since April 2011.
    I have searched previous discussions whereupon I have tried using the re-build option in iPhoto Library Manager (it re-builds with the photos missing) and all the re-build options available when launching iPhoto with the Option+Command keys pressed (with seemingly very little activity).
    Has anyone had this problem? Have I missed a relevant discussion?  Does anyone know how I can re-instate my missing photos and events in iPhoto?
    Thank you in anticipation.
    Martin

    When you repaired the libary did you check the option ot recover orphane3d photos in the iPhoto Library folder along with rebuilding the database file and repairing file permissions and?
    If that doesn't help the try the following:
    Starting over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1. Open the library package like this.
    2. Launch iPhoto with the Option key held down and, when asked, select the option to create a new library.
    3. Drag the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from the open iPhoto Library package into the open iPhoto window.
    This will create a new library with the same Events (but not necessarily the same Event names) as the original library but will not keep the metadata, albums, books slideshows and other projects.
    Note:  your current library will be left untouched for further attempts at a fix if so desired.
    OT

  • DB Tool List Table: How to access tables which are in different SQL database ?

    Hi, All,
    I'm working on a database application (SQL server) and is evaluating the NI DB Tool kit for this project.
    One of the requirement is that I need to access tables which are in two different database
    (say Table A in DB 1 and Table B in DB 2).
    Our IT guys has linked Table A in DB1 to DB 2 and I verfied this when I use the SQL server managment studio.
    When DB 2 tables are populated, Table A from DB1 is also there. I can also do the same thing using MS Access.
    Table A in DB1 is avalaible to me enven though I only connect to DB 2.
    Here comes the problem.
    When I use DB Tool List Table.vi to access DB2, it does NOT list Table A in DB1. It only list the tables in
    the database (DB2) which I make connection to (using DB Tool Open Connection.vi with a file DSN)
    So my work around right now is to open two seperate connection to DB1 and DB2. However, this approach
    obviously creates a problem when I have to access seperate database constantly in my application.
    What would be a solution to this ? I've search the forum but only see one post that's somewhat related to
    my question. (And it was posted on 2004) Perhaps I need to alter the code in the orignial VI (DB Tool List Table.vi)??
    My IT guy told me he has not encountered this scenario since he writes codes in other enviroment such as
    VB and others, and he's always been successful by linking tables to different database. 
    I hope my question is sound and clear since I really don't know much about database terminology.
    Any comment/suggestion is much appreciated !!!
    Thanks
    Chad
    Solved!
    Go to Solution.

    To josborne:
    To answer your question:
    - Are the two databases contained on the same SQL Server instance? 
    Or are the databases on separate instances?  I assume they are on
    separate servers, otherwise this wouldn't really be an issue.  But its
    good to know because it will affect how you build your SQL statements.
    Yes they are on separate instances. 
    - Ask your IT people specifically how they "linked Table A in DB1 to
    DB 2".  I assume they used "linked servers". 
    Maybe I used the wrong terminology "linked." They created a "View of Table A (DB1)" in DB2 using the management studio.
    Here is a screen shot of that. As you can see, dbo.VISUAL_WORK_ORDER is seen under LABVIEW database in the management studio.
    I also see the same table when I make connection to database using MS Access.
    Could you elaborate on "configure your SQL statement correctly" =) ? The purpose of using LabView's took kit is so that I can do
    minimum SQL statements. Are you talking about modifying LabView's native VI (DB Tool List Table.vi) ?
    Thanks for the information. SQL is just something new to me.

  • I want to identify those photos which are not included in events so I can process them

    I want to identify those photos which are not included in the Events folder so I can begin to process these photo which remain

    Sorry but your post makes no sense
    Please identify the versions of iPhoto and of the OS that yu have and exactly what yoru problem is
    There are no photos in iPhoto that are not in an event - iPhoto works on a library basis and every photo in the iPhoto library is visible in an event and in photos view - there are no photos that are not in both
    If you are seing something different then either you are looking in the incorrect place or you have a corrupted database - but to help you you need to provide details and symptons
    Your example is simply not possible
    Lets say I have 100 pictures in my iPhoto program but only two Events.  In one Event, I have 20 pictures.  In the other Event, I have 30 pictures.
    All 100 photos are in an event and all 100 photos will show in photos view
    LN

  • CC showing updates for CC apps that are NOT part of my subscription

    Ok,
    Aside from the massive annoyance with the duplicate versions (why didn't they just include both plugin system for a couple of versions?), I've got "updates" for apps that are NOT part of my CC subscription showing up.  I have a full suite of CS6 installed, but only the Photographers bundle for CC.  Yet I'm showing Illustrator and InDesign CC (2014) as available.  It also shows TWO lightroom 5's - one up to date, and one that needs an update.
    What gives?

    That still doesn't explain why I'm seeing two different lightroom installations in the CC list - one up to date, and one that's available.  I've previously installed/updated Lightroom through CC by the way.  But when I do run Lightroom it also prompts me to upgrade (which I haven't done either).  Something looks badly broken in the LR update process.
    And it doesn't address the available updates for applications (InDesign and Illustrator CS6) that aren't part of my CC subscription.  Since I'm now at the mercy of the CC licensing servers, I'm rather hesitant to risk corrupting my entitlements by doing anything until I understand why my entitlements are incorrect.
    Can you help me understand why they are incorrect?

  • TS1717 This article is vague and unhelpful. My iTunes needs help from a pro. I have over 120,000 songs -- NO movies, TV, radio, or books... I have other programs which efficiently run things which are not audio-based. So why can I not get iTunes working w

    This article is vague and unhelpful. My iTunes needs help from a pro.
    I have over 120,000 songs -- NO movies, TV, radio, or books...
    I have other programs which efficiently run things which are not audio-based.
    So why can I not get iTunes working well?? It now takes at least 10 secs for any operation to be completed!
    That is just plain evil. But I am sure I could do something to help.
    All the music is on an 2T external drive.

    TS1717 as noted in the thread title...
    Brigancook, is the library database on the external or just the media? iTunes reevaluates smart playlists and rewrites its database after every action on the library. I've found this can make a library half that size, with a lot of smart playlists, quite sluggish. That said I'm aware part of my problem is aging hardware. Having the database on the internal drive may improve performance if it is currently on the external.
    I'd expect to see an exponential relationship between size and response time which may explain what you see. Cutting down on the number of smart playlists might help. If we're really lucky the long awaited iTunes 11 might have streamlined some of the background processes as well as cleaning up the front end.
    tt2

  • Unit Tests VS 2013 - Manifest references file 'vstest.executionengine.appcontainer.exe' which is not part of the payload

    I am working on a Windows 8.1 Store App and I created Unit Tests. Last week everything worked out fine, but since a few days I am not able to build my Unit-Test-Projects.
    Every Unit-Test-Project has the following two errors:
    Manifest references file 'vstest.executionengine.appcontainer.exe' which is not part of the payload. [PathToTest].Logic.Tests\Package.appxmanifest
    Manifest references file 'vstest.executionengine.appcontainer.x86.exe' which is not part of the payload. [PathToTest].Logic.Tests\Package.appxmanifest
    I already tried to re-install VS 2013 with no success.
    Any ideas?

    Hi benschi1010,
    I am glad that you have solved the problem and thanks for your share us the solution here, so it would be helpful for other members who get the same issue.
    Best Regards, 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Some futures in bpel which are not possible with ESB and vice versa

    Can anyone please tell me some futures in bpel which are not possible with ESB and For some features available in ESB that are absence in BPEL?

    I think you've mistaken the meaning of both technologies. ESB actually works as a part of BPEL, for instance you can create partner link from any esb service.
    ESB service can only expose data or retrieve and process (transform) them from another service. BPEL is using services like ESB as a source and adds decision making functionality which is not present in ESB.

Maybe you are looking for