How to use photo in iOS 7

iOS 7 is so different that I am regretting upgrading my iPad. I lost all my videos. Album/photo/activity/shared work differently from the earlier version. And there is no help button. Frustrating!
Please advise!

Settings > Notification Center.  Select the app and then select how you want its notifications displayed.

Similar Messages

  • Deskjet 6988dt, how to use photo/envelope slot for printing 4x6 photo paper?

    Windows 7 Home Premium 64-bit OS.  Printer has the extra250 sheet paper tray.  Upper and lower tray work fine.  I can of course load photo paper in upper tray and print photos from there, but I was trying to load just one sheet of photo paper in the little slot since I don't want to have photo paper loaded all the time.  Since I have to use the generic Windows driver for this printer as HP doesn't have a driver update for this printer and Windows 7, the only selections I'm seeing in printer properties is "automatic, upper, lower".  I've tried all three of those settings and none take the paper from the little slot where I'm manually feeding the 4x6 photo paper.  What am I doing wrong?  Could it be that this feature just isn't enabled with the generic Windows driver?
    The reference/instruction documentation that came with this printer is very sparse.  I can't find any instruction on how to use the photo/evelope slot.  In fact I'd say overall the documentation is very poor.
    I just checked the HP site, still no Windows 7 64-bit driver available.
    Thanks for any help or ideas.

    Found a .pdf document on line for the Desjet 6980 series printers. Much more comprehensive than what came with the printer.
    http://h10032.www1.hp.com/ctg/Manual/c00591373.pdf
    Follow these steps to use the photo/envelope feeder to print a single photo:
    1. Insert the photo paper into the photo/envelope feeder with the side to be printed on
    facing down.
    2. Gently push the photo paper into the photo/envelope feeder as far as it will
    comfortably go.
    3. Slide the photo/envelope feeder forward as far as it will go.
    4. Print the photo.
    Problem was, although I was inserting the 4x6 photo paper into the feeder, I wasn't pushing the little plastic slide forward.

  • How to use photo booth with skype???

    I can't seem to figure out how to use the photo booth effects with Skype. I would just use iChat but my husband is on a PC and I am on TDY for the military with my MacBook.

    Hi,
    There is a folder called Compositions in the system side of things that booth Apple apps of Photo Booth and iChat can access for the Video Effects (And Backdrops on Intel computers in iChat)
    Third Party apps such as Skype do not access this folder and therefore do not have Effects.
    (there  may be a Skype add-on that has them but I don't use it so I don't know).
    It seems CamTwist does work for Skype.
    iChat should Video to AIM on a PC (free)  (Or Trillian Pro for a small amount).
    Results can vary with AIM  (Post in iChat if you want to know more) but you would then have access to the same effects Photo Booth has.
    <
    10:15 PM      Thursday; June 23, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • How to use photo stream on my mac?

    I keep trying to sign in to icloud on my mac to use photo streaming.  It is turned on on my new iphone5 but everytime I enter my apple ID it says "YOu can't log in at this time, try again later"  I've tried changing my password, that didn't work.  It has been two days and it still giving me this message.  What else can I do to get photo streaming to work?  I know my Apple ID and password are right, I just used it to log in here.

    The login for this site is independent of the iCloud login, go to www.icloud.com and try to login there.

  • HT204022 how to delete photos with ios 6

    Ok so i just updated my Ipod touch 4g to IOS 6 and I didnt know that having iCloud would download all of my photos from my computer to iPod, and there is now 2500+ pictures on the ipod and i have no space for music, apps ext. How do i delete them form my Ipod?!?!

    In itunes, the Photos tab, can't you turn off syncing?  Doing so will remove photos from the device.

  • How to erase Photos on iOS 6?

    Updated to iOS 6 , love it, but now I can not erase pics on devise!
    Trying to free up space urgently!
    Used to erase pics and vids before with older iOS pretty easily .

    I feel your frustration too clementsb.
    I have an iPad3. I synced some photos to it before I left on vacation so I share them in person with someone who lives off the grid. I showed them the pictures.
    I took more pictures with a canon slr and I want to peruse them on my ipad3.
    there is not enough space in my 16gb iPad to hold all the photos because of the synced photos that I no longer need on the iPad. If I could delete the synced photos I could easily view all my new photos on the iPad in one go.
    I thought a post-PC device did not need a iMac to operate. But right now I do. This is frustrating. Even more so because if I want to delete a particular song I can and that is also synced via my iTunes?
    You reading this Mr iTunes and mr iPad and mr ios6?

  • Can/how I use photos to FCEHD3.5?

    How can I bring photos to FCEHD3.5? can I bring the photos from iPhoto and/or Aparture (I have both programs)? How can I bring them to my FCE browser or timeline?
    I though there is a copy-paste option but there ias no any, it seems... Do I need to to anything with photos before getting them into the FCEHD3.5? I want to use the photos in a 4:3 ratio kind of a project, and I want to apply some zoom in/out effects? Can I do it in FCE? and how?
    thank you - I thought, somebody had to do it, right?

    Go to File>Import>Files.
    A window will open and you navigate to wherever the photos are.
    Select the ones you want and click "Choose" (or whatever it is called at the bottom right of the window).
    The selected photos will appear in your Browser.
    Ian.

  • How to sort photos on iOS device with a PC computer?

    I'm a big apple user, other than the computer. i have a pc . ya i know, i'm dumb but oh well.
    so i know if i had a mac i could use iphoto to sort it, but i dont, so is there a pc software that will do the same thing? or perhaphs a real way to change the date/creation or some setting that will allow me to have my photos sorted in my iphone.
    i have noticed that when i make a new folder of photos all from the same batch of photos from my camera. they do stay in that order. but older folders, or if i switch around pics from one folder to another, they get jumbbled.
    i need help please.

    You can use a third-software like Mediamonkey to copy the music and videos onto your new computer. Then, do a backup on iCloud for your other settings, contacts, etc.
    Then sync your phone on the computer.

  • How to use Kerberos in IOS app?

    Hi I am a starter in developing IOS apps. I just completed my app and th eonly part missing i sKERBEROS authentication. I am new and i don know anything about implementing and integrating in my application. I just heard that i need to include GSS.framework that supports Kerberos. So please guide mw to proceed in the successful way pals.

    This is a user-to-user consumer forum. Use the developer forums for your question. People there will be able to help you.
    https://devforums.apple.com/

  • How to use photos from a *shared iphoto library* in iWeb's Photos page

    I have a large library of pictures in iPhoto. I am sharing it with my wife's Mac on our LAN. She would like to use many of these photos on my Mac in an iWeb page. We're both using 10.4.10 with G5s.
    When we try to drag them over from my shared iPhoto library, we get the following error:
    "Some items can't be used because you don't have enough access privileges or because they contain no content or they are corrupted.
    unable to add object
    unable to add object"
    Sometimes it imports only the name of the picture to the iWeb page.
    Is there a way around this? I tried messing with the Get Info "Permissions" section of my iPhoto folder. But nothing seemed to change.

    iPhoto can not merge libraries
    And you must NEVER Import an iPhoto library - it does not work and creates a massive mess
    To merge libraries you must either use Aperture (being phased out this year) or the paid version of iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ - 
    Or continue to have two libraries and switch between them
    LN

  • How to use photos in database?!

    I am using a master/details page setup to display listings
    for someone selling boats. On the details page I need to display
    1-5 thumbnails of the boat along with the other info, and expand to
    full size pictures when the thumbnails are clicked on. How do I set
    this up within the database? Can someone maybe outline the
    steps?

    I would have the image filenames in the database, and the
    images themselves
    in two different locations (one for thumbs and one for
    full-sized).
    I would have the recordset pull the image names for each
    record, and when
    display is needed use the image tag like this -
    <a href="images/fullsize/<?php echo (yourdata-filename)
    ?>"
    onclick="whatever you are using to 'pop' the image';return
    false"><img
    src="images/thumbnails/<?php echo (yourdata-filename)
    ?>"...
    where
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Brandon7777" <[email protected]> wrote in
    message
    news:g04esi$4np$[email protected]..
    >I am using a master/details page setup to display
    listings for someone
    >selling
    > boats. On the details page I need to display 1-5
    thumbnails of the boat
    > along
    > with the other info, and expand to full size pictures
    when the thumbnails
    > are
    > clicked on. How do I set this up within the database?
    Can someone maybe
    > outline the steps?
    >

  • How to use CS4 with iOS 10.10.3

    It seems that I'm unable to connect through iPhoto to photoshop.  will there be an update?

    I doubt it.

  • Every time I try to use Photo Mail in PSE 11 the program shows error and close

    How to use Photo Mail in PSE 11 as it close every time I try to access

    Problem have been solvedThanks for your crystal clear instructionsI do appreciate your help and care so muchGod bless you all
    Date: Wed, 3 Apr 2013 09:58:39 -0700
    From: [email protected]
    To: [email protected]
    Subject: every time I try to use Photo Mail in PSE 11 the program shows error and close
        Re: every time I try to use Photo Mail in PSE 11 the program shows error and close
        created by Andromeda14 in Photoshop Elements - View the full discussion
    Please follow steps as mentioned on blog: http://tinyurl.com/cy9beny ~Andromeda
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5203304#5203304
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5203304#5203304
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5203304#5203304. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • HT204570 How can I see my photos in iOS organized by the faces I've identified on the Mac?  All of my devices are using the iCloud Photo Library.

    I want to be able to view my photos in iOS according to the faces I've identified in them on the Mac, but I can't seem to figure out how.  Any suggestions?

    On iOS, in the Photos app, use the search functionality (the magnifying glass, top right).  Once you click on the magnifying glass - you may need to wait a moment or two - you will see a list of suggested or recent searches.  You can type in a face name instead.  The results from the search will be all pics tagged with that name.
    You may have an issue with not all tagged pictures appearing in the search results, however.  Initially all appeared for me, but they no longer do.  There appears to be some issue with the reindexing of my picture data in the cloud - the search still returns folder names for folders which don't exist anymore.  Hopefully you won't have that to content with.

Maybe you are looking for

  • Error in forms configuration 11g

    Hi, I am trying to configure Oracle Forms server 11g on my machine but I am constantly hitting error which I could not understand at all. The funny thing is there is no error in my Forms Configuration wizard. It just hangs there but I know its not do

  • Maxiumum size of data a MI client can hold

    Hai, Can anybody tell me what is the maximum size of data a MI client can hold, if we are using a file system as its persistence layer. thanks in advance, Sreekanth.S

  • Convert photos

    I scanned some photos into my Iphoto file on my Mac desktop and I'm trying to export them into Shutterfly and they are not in .JPG or .JPEG and will not export.  How do I convert them?

  • I Chat will not start for the first time on my Macbook Pro after Migration

    Hi hope someone can help as this problem has stumped me. I cannot get ICHAT to even start having migrated all applications via Migration Assistant from a Macbook to a Macbook Pro. Everything else seems to work fine except when I run ICHAT and follow

  • Mail 2.1.3 Issue!

    I have suddenly experienced an issue with Mail (2.1.3) after years of problem free use. First, the text of messages from one sender are turning up in other senders' messages. Second, attachments are all showing up as "winmail.dat". And now, when I tr