Status bar covers top of iPhone apps on iPad2/ mini

Since iOS 7 came out I have had several iPhone apps that have the status bar visible and is on top of the app, hiding the top portion of the screen (in games, usually where scores are or number of lives left). Prior to iOS 7 the satus bar was hidden if I had the game in 2x mode, but with iOS 7 I can't even go back to 1x mode. Is their a fix for this or is it a bug that will hopefully get fixed in an update? I kept hoping each update would fix it but no such luck yet. Or is it an app issue?
Most of them are older apps and does this both on my iPad 2 and iPad Mini.

I just want to leave this picture here, showing how annoying the status bar is since the last update.
i made this picture on my ipad mini playing the iphone game Zenonia the status bar hides half of the map (upper left corner) and the backpack button (upper right corner) making it impossible to play the game because that button is really important.
i hope that this gets fixed someday.

Similar Messages

  • Status bar covering iPhone 6 view IOS 8

    have you experience the status bar covering the view specially in Facebook apps when opening a link then closing it. the status bar is blocking the X of the page,

    You can disconnect and re-connect and try again.  You should be selecting the Update button for the new Software.  The update while connected to iTunes should not take all that long from the download, through the Verification and then the Install.  If that down't work, you may have to Restore your iPhone to Factory Settings, insuring first you do have a current Backup available to Restore from Backup at a later time after the Restore as New.
    Sometimes you can Update your iOS software in a WiFi environment even faster,  if you have enough memory available for the process to work.

  • How to show/hide status bar programatically in openGL ES app?

    Ok, I started with an openGL ES app and can draw my window where I want to display it.
    However, even though the xib file says <<no status bar>>, when I run my app, I get a status bar with a white background which overlays the top part of my graphics. In my app. I want to use all 320x480 pixels for the background tableau and have no need for a status bar...
    How can I enable or disable this programmatically?
    Thanks!

    The best way to hide the status bar for the life of your program is in Info.plist:
    1) Expand the Resources folder in the Xcode Group & Files tree and open Info.plist;
    2) If you already have a key named "UIStatusBarHidden", continue with step 5;
    3) Ctrl-click in the last row of the Key column and select Add Row from the floating menu;
    4) Copy and Paste UIStatusBarHidden into the edit cell for the new row and hit Return;
    5) Ctrl-click on UIStatusBarHidden and select Value Type->Boolean from the menu;
    6) A check box should now appear in the Value column; check that box;
    7) If unsure about what you've done, close the Info.plist window, select Don't Save, and start over;
    8) Cmd-S (File->Save from the top Xcode menu) to save Info.plist.
    If you want the status bar to return at some point:
    [[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES];
    If you don't wish to change any of your OpenGL files to .m, just wrap the above in an extern C function (e.g. in main.m).
    - Ray

  • IPad status bar covers up my app's top  UIViews; okay after rotation

    I wrote an iPad app. When it is first started up (in iPhone simulator, or on real iPad) all the UIViews at the top of my window are partially covered-up by the iPads time/battery status bar.
    After I rotate the iPad (simulator or real one) the problem goes away: my UIViews appear shifted down, so they are under (below) the status bar. In other words, after I do the first rotation, the iPad knows to push my window downwards about 20 pixels to make room for the status bar. But before the first rotation (simulator or hardware) the iPad is not shifting my UIViews downward.
    Question: What can I do in software (during the startup logic) to get the iPad to push my window down to make room for the status bar?
    I think the iPad should do it automatically for me, but since it is not, I'm willing to take some action in the software to get it to happen. Any thoughts? NOTE: When I create all my UIViews, I'm using a coordinate of (0,0) for my upper left corner, which is correct, and after the first rotation everything works great. Also: I have auto-rotation enabled, so my app is always rotating to keep its display "up" so users can view it in all 4 rotations.

    Hi David -
    David Restler wrote:
    Question: What can I do in software (during the startup logic) to get the iPad to push my window down to make room for the status bar?
    If you're creating the view in your code, you're explicitly setting the view frame. The controller then assumes you know what you're doing and doesn't make any adjustment for the status bar (or any other bars that may be above or below the content area).
    In other words, when you explicitly set the frame in loadView, you're buying sole responsibility for the starting dimensions. In the case of an iPad with only the status bar, you need to drop the y-origin down 20, and shorten the height by 20:
    - (void)loadView {
    CGRect frame = CGRectMake(0, 20, 768, 1004);
    UIView *v = [[UIView alloc] initWithFrame:frame];
    self.view = v;
    [v release];
    NSLog(@"%s: self.view=%@ self.view.frame=%@",
    _func_, self.view, NSStringFromCGRect(self.view.frame));
    Btw, if you ever open your IB, try adding and subtracting the various simulated bars while watching the dimensions of the view in the Size Inspector. If the view is the main content view (i.e. connected to the 'view' outlet of File's Owner), you should see the y-origin and size adjust for each combination of bars. In fact, those dimensions will probably be grayed out, since IB doesn't trust us with such critical numbers. The point is, that when a view is loaded from a nib built with the correct simulated bars, the adjustment for the bars has already been saved in that file.
    I think the iPad should do it automatically for me
    If you want to see what the controller does by default (i.e. no nib and no frame defined in loadView), try this code:
    // MyAppDelegate.m
    #import "MyAppDelegate.h"
    #import "MyViewController.h"
    @implementation MyAppDelegate
    @synthesize window, viewController;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    MyViewController *vc = [[MyViewController alloc] initWithNibName:nil bundle:nil];
    vc.view.backgroundColor = [UIColor grayColor];
    self.viewController = vc;
    [vc release];
    [window addSubview:viewController.view];
    [window makeKeyAndVisible];
    NSLog(@"%s: viewController.view.frame=%@",
    _func_, NSStringFromCGRect(viewController.view.frame));
    - (void)dealloc {
    [viewController release];
    [window release];
    [super dealloc];
    @end
    // MyViewController.m
    #import "MyViewController.h"
    @implementation MyViewController
    // Implement loadView to create a view hierarchy programmatically, without using a nib.
    - (void)loadView {
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
    [super viewDidLoad];
    @end
    When no nib name is specified, and the view loader can't find a nib that matches the owner's class name, and loadView isn't overridden, the view controller creates a default view (see no. 3 under "The steps that occur during the load cycle are as follows:" in [Understanding the View Management Cycle|http://developer.apple.com/library/ios/featuredarticles/ViewControllerPGf oriPhoneOS/BasicViewControllers/BasicViewControllers.html#//apple_ref/doc/uid/TP 40007457-CH101-SW19] in the View Controller Programming Guide for iOS). If you run the above example code, you should see the frame of the default view takes all bars into account.
    ... I'm using a coordinate of (0,0) for my upper left corner, which is correct
    As explained above, it's not correct if there are any upper bars
    and after the first rotation everything works great.
    Yes, all bets are off after an auto-rotation. The system recalculates the content view frame in that case (though that math doesn't always come out the way you want).
    Hope that helps to unscramble things a little!
    - Ray

  • Flashing red bar on top of iphone screen

    Hi there. I was reading already a bit about the red status bar here in the forum but some of my questions remain unanswered.
    I understand so far - please correct me if I'm wrong - that the red status on the top of the screen is popping up sometimes for some seconds to remind me that there are background applications running.
    My questions:
    - I know that there are background applications running (for example 8mm camera app or hipstamatic camera app), but can I turn that notification off? I want those apps running in the background because I use them very often. Or do they suck energy when they're running in the background? I mean: they are basically just open, doing nothing.
    - every time the red notification bar pops up my itunes stops. it's annoying. how can i turn these notifications off and prevent itunes from stopping playing music?
    Thanks for your help!

    Thanks for the response. But now:
    - why for **'s sake is apple keeping all the applications running in the background anyway. why is there no function in the settings to close certain apps automatically after using them? i really don't want to take a photo or film and swap to another application and then manually have to close the application. that's like 6 wasted seconds of my life by doing unnecessary work and if i multiply that with the amount of photos/films i take (~30 per day) then i'm wasting about 18.5 hours per year just on closing the application after I've done a photo. so i want to keep that app running in the back so it's open all the time.
    - anyhow: i've closed the app (8mm app) and even restarted the iphone. the red bar with "8mm" still pops up. huh!?

  • Top 10 iphone apps

    Just thought I would share my top 10 apps that I think everyone should have. Please comment if there is any app that I should add to my list. The list is sorted by price.
    1. Skype Free http://itunes.apple.com/us/app/skype/id304878510?mt=8
    2. Evernote Free http://itunes.apple.com/us/app/evernote/id281796108?mt=8
    3. Angry Birds $0.99 http://itunes.apple.com/us/app/angry-birds/id343200656?mt=8
    4. Stress Scan $0.99 http://itunes.apple.com/us/app/stress-scan/id411282403?mt=8
    5. 8mm vintage camera $1.99 http://itunes.apple.com/us/app/8mm-vintage-camera/id406541444?mt=8
    6. Star Walk $2.99 http://itunes.apple.com/us/app/star-walk-5-stars-astronomy/id295430577?mt=8
    7. Trism $2.99 http://itunes.apple.com/us/app/trism/id284653044?mt=8
    8. Soundhound $4.99 http://itunes.apple.com/us/app/id284972998?mt=8
    9. Bridge Odyssey $4.99 http://itunes.apple.com/us/app/bridge-odyssey/id344600826?mt=8
    10. Assassin’s Creed II Discovery $5.99 http://itunes.apple.com/us/app/assassins-creed-ii-discovery/id345932575?mt=8

    my most used apps
    1 Facebook
    2 solar walk
    3 star walk
    4 angry birds
    6 swine time
    8 cut the rope
    9 iAssociate
    10 textfree

  • How to prevent "AciveX Control" yellow status bar on top of the page.

    Hi All,
    While i am trying to download the plug-in(.dll) using <OBJECT> or <EMBED> TAG in jsp(Html) page, there is one yellow bar saying{color:#ff6600} "{color}+{color:#ff6600}This site requires the following add-on:.......Please Click here to install".+
    +{color}+1).Is there any code(javascript) to prevent this yellow bar.
    2).How to detect(with help of any code) whether Activex controls are enabled or disabled in the IE browser settings.
    Thanks in advance,
    Prasad.

    No can do, except maybe if you find some exploit in the IE security system. The very point of that bar is to prevent a site from installing add ons and active x controls without letting the user know - which could lead to all kinds of mischief.

  • Red bar on top of iphone 5

    Does anyone know why when I am on google and I get a message when I press it at the top of my iphone5 screen a red appears at the top of the screen.
    I would be really interested to find out. Thank you guys

    Sorry that was meant to say Red Bar

  • Status bar/video while download an app

    Which options is available, some magazines have a little animation or video running while download the app.
    How is that done?

    They programmed it themselves in native iOS language.
    —Johannes

  • How to delete GE Capital web site which is on top of Fox App. in Ipad2

    This morning I opened Fox News App and the GE Capital web site was on top of it, using up 75% of screen.  Can't get rid of it, don't know how.  Thought it would go away but it's still there.  Anyhow else having this problem?

    Have you tried closing the Fox News app completely ? From the home screen (i.e. not with the Fox News app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Fox News app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Where is status bar when running iphone app

    I've updated my iPad Mini to iOS 7 and now when I run iPhone apps I don't see the status bar (time and battery level etc).  It used to show in iOS 6.
    I see the status bar fine when running iPad apps, just not iPhone apps.
    Any ideas?

    I don't know which app your using but you can try deleting it and reinstalling it from the cloud. If it's in iPhone mode, you should see the 2x but when you switch it to 2x yes the option seems to disappear to go back to 1x when you are using IOS 7.
    I lost the 1x on one of my apps but when I removed and reinstalled, it was there again. The time was showing at the top when I reinstalled it again from the cloud.

  • How do I remove the status bar from iPhone apps on the iPad?

    Whenever I go onto an iPhone app on my ipad I have recently had the status bar covering up some of my game. Here is an example: http://i.imgur.com/Q9xnYhT.jpg
    As you can see the score is hidden, I have gone through the settings and can't find anything,please help! It only started doing it when I reset my settings and updated to 7.1.

    Same problem...seems that this is for apps that are for iPhone and/or for both...but not for ones made just for iPad!
    Used to be able to click the 2X and the app would go full screen...not anymore...Apple you need to fix this!!!

  • Enable status bar ONLY on iPhone 5 where there is extra space?

    My app really needs as much screens space as it can get, execpt on iPhone 5 where there is a surplus of dead space. I need the status bar hidden on previous iPhones. Is there a way to make the status bar show on the iPhone 5 but not on others, so that iPhone 5ers can see the time, battery and other stuff?

    Update: I finally figured it out myself. I took a shot in the dark and tried the stage.displayState property. It looked like a desktop specific thing but it actually worked on the iPhone.
    stage.displayState = StageDisplayState.NORMAL
    will show the status bar.
    stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE
    will hide the status bar.

  • There's a huge blank white screen below the status bar, that covers half of the screen in 3.6

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    When I opened Firefox there is a big blank screen below the status bar covering up half of the screen. It only happens on 3.6 version of Firefox
    == This happened
    ==
    Every time Firefox opened
    == Few Days Ago
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.7
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Stylish 1.0.9 true {46551EC9-40F0-4e47-8E18-8E5CF550CFB8}
    Cooliris 1.12.0.36949 true [email protected]
    FoxTab 1.3 true
    WOT 20100503 true
    ImTranslator 3.3.3 true {9AA46F4F-4DC7-4c06-97AF-5035170634FE}
    Are You Watching This?! 2.5 true [email protected]
    SearchPreview 4.6 true
    qtl 14.3 true [email protected]
    DVDVideoSoft Menu 1.0.1 true
    NEW Glasser by SzymekPL 2.2.0.3.7 true [email protected]
    foof 1.2.8 true [email protected]
    Java Console 6.0.20 true
    Full Screen Homestar Runner 2.9 true
    Flash Game Maximizer 1.3.6 true {258735dc-6743-4805-95fc-f95941fffdad}
    MultiMediaWebRecorder 0.397 true [email protected]
    Download Statusbar 0.9.7 true
    Extended Statusbar 1.5.4 true
    NoScript 1.10 false {73a6fe31-595d-460b-a920-fcc0f8843232}
    WebSitePulse Transaction Recorder 1.4 false [email protected]
    Smart Bookmarks Bar 1.4.3 true [email protected]
    Xmarks 3.7.8 true [email protected]
    Gmail Watcher 1.10 true gmailwatcher@sonthakit
    Yahoo! Mail Watcher 1.10 true yahoomailwatcher@sonthakit
    Dr.Web anti-virus link checker 1.0.21 true {6614d11d-d21d-b211-ae23-815234e1ebb5}
    FIFA Online Web Launcher 1.1 false [email protected]
    ReminderFox 1.9.8.2 false
    1-Click YouTube Video Downloader 1.4 true [email protected]
    OurWorld.com Toolbar 2.7.0.14 true {80f6f9bf-9fd1-4f41-9ddf-6dd070f4f62f}
    Yahoo! Toolbar 2.1.1.20091029021655 false {635abd67-4fe9-1b23-4f01-e679fa7484c1}
    Yoono 7.3.6 false
    Form History Control 1.2.6 true [email protected]
    Boost for Facebook 10.0.2 false {47624dda-b77e-4feb-820a-e4f077d5d4ca}
    Fireclam 0.6.5 false
    Viral Threat Level 0.54 false [email protected]
    Ghostery 2.2.1 true [email protected]
    FootieFox 2.1.10 false {9fb7d178-155a-4318-9173-1a8eaaea7fe4}
    Puzzle 0.4.3 true [email protected]
    Tab Mix Plus 0.3.8.4 true
    FastestFox 4.1.5 true [email protected]
    AniWeather 0.7.4 true {4176DFF4-4698-11DE-BEEB-45DA55D89593}
    Get Styles 1.0.22 true {6236BA26-C117-4007-928C-DE0716C7FA80}
    Usage Stat 1.0.2 true {6236BA26-C117-4007-928C-DE0716C7FA96}
    FBFan 1.0.1 true {6236BA26-C117-4007-928C-DE0716C7FA99}
    Better YouTube 0.4.3 true [email protected]
    Show my Password 2.0 true
    LastPass 1.69.1 true [email protected]
    Favicon Picker 3 0.5 true {446c03e0-2c35-11db-a98b-0800200c9a67}
    Glassy Urlbar 0.5.2 true tgrsc@glassyUrlbar
    RSS Ticker 3.2.2 true {1f91cde0-c040-11da-a94d-0800200c9a66}
    iMacros for Firefox 6.7.0.1 true {81BF1D23-5F17-408D-AC6B-BD6DF7CAF670}
    Amplify 3.0.0 true {8f5ce3f8-1735-4680-b15e-108f2f50e8ba}
    Tidy Favorites Online 6.23 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind true
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days.mirror 180
    browser.link.open_newwindow.restriction 0
    browser.places.importBookmarksHTML false
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage http://www.google.com/
    browser.startup.homepage_override.mstone rv:1.9.2.7
    browser.tabs.insertRelatedAfterCurrent false
    browser.tabs.warnOnClose false
    extensions.lastAppVersion 3.6.7
    keyword.URL http://search.conduit.com/ResultsExt.aspx?ctid=CT2383985&q=
    network.cookie.prefsMigrated true
    places.history.expiration.transient_current_max_pages 32166
    places.last_vacuum 1278789082
    privacy.clearOnShutdown.cookies false
    privacy.clearOnShutdown.downloads false
    privacy.clearOnShutdown.sessions false
    privacy.cpd.cookies false
    privacy.cpd.downloads false
    privacy.cpd.extensions-tabmix false
    privacy.cpd.history false
    privacy.cpd.sessions false
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 0
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.7
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.7) Gecko/20100713 Firefox/3.6.7
    == Plugins installed
    ==
    *-Cooliris embedded in a tab
    *Office Plugin for Netscape Navigator
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Provides additional functionality on Facebook. See our web site for details.
    *Game Loader Plugin for Power Challenge Games
    *Unity Player 2.6.1f3
    *BrowserPlus -- Improve your browser! -- http://browserplus.yahoo.com/
    *Pando Web Plugin
    *Shockwave Flash 10.1 r53
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *GEPlugin
    *Yahoo Application State Plugin version 1.0.0.7
    *Google Update
    *Version 0.9.17, copyright 2008-2010 Veetle Inchttp://www.veetle.com/
    *Version 0.9.17, Copyright 2006-2009 Veetle Inchttp://www.veetle.com/
    *Version 0.9.17, copyright 2006-2010 Veetle Inchttp://www.veetle.com/
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    I have v. 3.6.8. It will display blank white pages at some site and not at others. I use safe mode and the access is reversed... what used to open doesn't and what didn't does. . .
    Is anyone trying to fix this problem - or are users just left to chasing their tails on this issue?
    Just curious ... in order to help me decide to wait for help or move on to something else...
    Until that time ... Earl J.

  • Stolen iPhone 4S...any way to track it? other than using the Find My Iphone app

    Hi. So yesterday, my iPhone 4S got stolen while I was in PE class.
    Immediately after I realized that it was gone, I called my dad and he cancelled the service for me (Verizon) so that the person who stole it would not be able to use it.
    I've been checking my phone's status on the Find My iPhone app regularly, but it keeps saying that it's offline.
    So I was wondering, are there any other apps, websites, ANYTHING that I can use to find out where my phone is or turn it on? (so i can track it..)
    also, i didnt have iCloud on that phone.
    (as in i didnt turn it on on the phone itself)
    is there a way to get all my photos that i had on my old phone back?
    for example, if i get a new iphone, would i still be able to transfer the photos that were on my stolen iphone onto my new phone? (without iCloud....just using the same apple id user and pass)
    Thanks.
    O and one more thing..I read on other sites that I shouldn't contact the police because they just file a report and put the case aside.
    Do you recommend that I still report it to the police..just in case?

    Just so you don't hold on to that sinking feeling for not taking out every possible precaution aside from just leaving your phone at home and not using it...  after having your phone stolen or .. lost: 
    I paid the insurance to cover loss or damage for two year... (really dumb of me since the deductible is $200. USD: more than I can buy the exact phone online and more than I could have sold mine if I had sold it online; (iphone 4 -32g).  So don't kick yourself for not having insurance if you didn't. 
    I had all apps turned on: PhotoStream (which would have had to be active on your phone in order to retrieve photos to your pc or your mac now that it is lost).  However, it is only as good as the last internet connection you were on and only if your were on that connection long enough for the photos to upload to photo stream.  I was able to cover photos from Beijing and not the remaining 3/4 of my trip's photos. 
    Any photo app you may have been using most likely has an online access.  Did you download a photo app?  Start there.  Do you have an itunes account?  You can see what apps you have downloaded from there.  If you use a mac you can see the photos in photo stream, (a sunflower icon).
    Even if you had registered and jumped through all the hoops keeping app and updates up to par and a security passcode in place on the phone itself, your i phone tracking is not going to work at all unless the user is able to connect to the internet.  This is not going to happen unless they can access the internet by having your passcode.  So this tracking system, insurance and protection code is in most all cases a false since of security.  It doesn't help you 95% of the time... i am guessing. 
    The except is possible I know.   I found two iphones one time and saw the owners request to call them that was sent from the tracking system.  I called and returned their phones.   The people who have my phone have most likely dismantled it and are using the parts to recreate replications....  i lost it in China, lol.   where I saw massive fake reproduction within buildings that consume 7-15 floors and about 8 city blocks.  So, it isn't always about your information: in this case they wanted the hardware.  Which brings up the next point.
    In the iphone tracking portion of icloud.com there is an option to erase the phone.  I am not sure if this makes it unusable for the new owner of default or if it just clears your crap so they can actually use the phone.   I've left my stuff on the phone thinking it is most likely already in pieces.  (a kinda Frankenstein-ish feeling when I think about it).   If you erase you phone via the icloud it seems you are no longer able to track it.  it cuts all of your ties and abilities to do anything... if you could do something.  ...  hmmm.
    So, do not bother with phone carrier insurance on phones: better to make sure it is covered in a home renter's or owner's policy.  You have to specifically ask this of your agent or it is not a part of your coverage. This will cost you less than the usual cell phone insurance, shouldn't be more than $5. per month.  (i paid $10!!  ....  should be a class action going on somewhere around that in itself).   Phone carrier insurance is a scam from A to Z these days... don't fall for it like I did.  Yes, it was once a useful tool. Just make sure your home owner/renters ins deductible is not the same value as the phone. 
    So, do not fret that you did not have this "service" activated.  Do however, check to see if you can download Photo Stream to any computer and access your last uploaded pictures from the phone.  This application was most likely on your phone.  Although you would have had to tie it to an account on the phone in order to tap into photo in a cloud of sorts. 
    Hope this helps if nothing more but to ease the pain. 
    ferfer

Maybe you are looking for

  • How do I create a collage in iPhoto that is NOT meant for printing?

    I often want to create simple photo collages that I can embed in blog posts, etc. This is a one-click operation in Picasa but the only way I've found to do it in iPhoto so far is to pretend I'm creating a card, then open it in Preview, copy the bit I

  • Closing a PO

    Hi Can anyone explain me what are the different ways in which we can close a PO?. If the POs is closed, how to know that this PO is closed?. Is there any report to see the closed POs and Open POs seperately? Thanks in advance

  • Drag and Drop game with only two targets

    I created a drag and drop activity where their are five boxes that are supposed to go in to two columns in any order. I found a tutorial online that I based this activity off of. The problem is that the tutorial shows you how to make a target for eac

  • IPhone Synce from Mac to PC

    My friend upgraded to the 3G and gave me his original. I have a few questions. First the iPhone was last synced to a Mac and I have a PC. What do I have to do to use it as a Touch? I am a current AT&T user,can I activate from home?

  • Infoset query field changes

    Hi All, I have one issue. I am changing length of one infoobject in DSO from 4 to 7 and also its description. Now, infoset and infoset query existing on this DSO should also change with new length and description. Could anyone please  tell me how i c