Apps help needed

I am in the middle of upgrading from IPhone3 to IPhone4 and I ahve noticed several questions along the same subject. But I am still confused. I have managed to transfer most of my stuff over - messages, contacts, photos etc. But my Apps haven't transfered. The answers on this forum suggest going into ITunes library and transfering them from there. But in the iTunes library there is only music. I get so frustrated as everything is in Gen Y language and assumes that I already have a background knowledge in this. Can someone please tell me in simple (non Gen Y) language what to do. I am also too scared to transfer music over (never did on my old phoen either) because I don't want to pay any extra for the music I already have on my computer.
Please help

HI there,
Whatever u got from Nokia app and games. the best thing is that u try to install it from ur 128mb MMC and later from the mass storage mode u take all the app's backup.
or if u want to install in ur new 2.gig MMC then format ur 2.gig MMC and take the back from 128mb MMC and insert ur 2gig MMC properly and from there try to install app's or games.
hope it'll work for u.

Similar Messages

  • "Call to method "setTextFormat" cannot be defined" in Air App (help needed)

    Hello,
    I'm following a tutorial to begin with ActionScript 3 and Adobe Flash. I'm willing to create an Air app, but I stumbled upon an issue. The tutorial is for Flash Player, so I wonder if it also work for Air apps (sorry, I don't quite grasp the differences yet).
    So here is a screenshot of the issue :
    The error reads : Call to method "setTextFormat" cannot be defined, via reference of type static fl.controls:TextArea
    (sorry if it's badly translated :/)
    What I have below is a TextArea (taken from the User Interface Components) and a button (same). I noted their instance name that you can find back in the AS block.
    So since it's the exact same code as in the tutorial (in which it work), why do I get this error ? I tried lot of things to get rid of it, but I'm out of options now, so I ask you for help.
    Regards.

    Thank you very much for you answer Ned. It's clearer now. I just would like to create the textField WYSIWYGly, but I can't find it inside the component Library. Only TextArea's and TextInput's are there. Do you have any idea where I could find this component to add it visually to my project ? Or must I create it with AS?
    I use Flash CS5.5 by the way.
    EDIT: striked out non relevant portion. I finally found out. Sorry it's been a while, but it was so obvious ^^

  • Radio app help needed

    Hi, I'm trying to develop a radio station app for both the iphone and ipad. I have more of a graphic side of things experience and this would be my first app. I am not making this app for mass use it's just for personal use. I currently host a radio station that streams on shoutcast in a variety of formats..I was following a tutorial on how to make a simple radio station app but it uses an old version of xcode which quick frankly has been changed so much that I can't even find half the functions in the latest xcode.
    Basically what I want is a one page app..just the radio station logo and either an auto playing stream or something with controls like play and pause (pretty basic) that will stream the music within the app without launching quick time separately. While I have pretty much the majority of the app done with the exception of the stream functions that's where i'm stuck. Trying to figure out how to get the stream to work within the app. Below is some of the code provided by the tutorial. Any direction would certainly help me.
    http://75.125.106.155:8000/listen.pls
    using the open URL method. Generally it uses the QT player in the safari to stream audio, the advantage of calling out with safari is that it could be run in background, though u press the Home button it is still streaming unless you kill the app by pressing the QT stop button on safari or shut off the safari page, another advantage is that it is so easy & straight forward to use open URL (or UIWebView if you want).
    Here’s example of creating a simple app:
    - Launch Xcode
    - New Project> name it “radio”
    - Click on radioViewController.h and put on (in bold):
    @interface radioViewController : UIViewController {
    -(IBAction) PushButton:(id)sender;
    @end
    - Press CMD + S to save the header file.
    - Next, double click radioView.xib
    - Interface builder loads up.
    - Drag a UIButton to your view, name it ‘Play’.
    - Click on file’s owner, click on connection tab.
    - Link the ‘PushButton’ to the UIButton, select ‘touch up inside’
    - Save the file and quit interface builder.
    - in your radioViewController.m put in the following:
    -(IBAction) PushButton:(id)sender {
    NSURL *url = [NSURL URLWithString:@"http://75.125.106.155:8000/listen.pls"];
    NSURLRequest *req = [NSURLRequest requestWithURL:url];
    [webView loadRequest:req];
    Note: this basically is an action to be called once button is tabbed.
    - CMD + S to save the implementation file.
    - CMD + B to build & run.
    - As simple as that, iPhone Simulator turns out and once you tap the ‘Play’ button, Safari loads up follow by QT player streaming the audio /radio data.

    I finally managed to make it work using the AVPlayer class. So you should definitely use this. Read this doc carefuly, it helped me a lot http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFo undationPG/Articles/02_Playback.html

  • Iphone hp app help- need to enable webscan or a recommend on a hp app that could help.

    Hello All, I am using my iphone hotspot as my primary internet connection. I have an HP 3052A-J611 printer.Does anyone know if I  scan documents wirelessly?I have the HP eprint app but I  can't figure out how to enable webscan, Any tips on if this is possible would be greatly appreciated! Also, would I be better off with a different HP app? I am not that knowledgeable in these areas so any advice/recommendations are greatly appreciated! Thanks

    Hi,
    The HP ePrint app provide print capabilities.
    To scan from iOS devices you may use the HP Printer Control.
    You may find more informtion about using the app in the document below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02486319&cc=us&dlc=en&lc=en&product=5061073&tmp...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • LabVIEW built DLL's in a multi-threaded C++ app, Help Needed!

    I'm working on a software application that is being developed
    primarily in C++. There is a component of this larger application,
    however, that is being developed in LabVIEW (for several reasons that
    I won't dive into here). This LabVIEW code is therefore executed
    within a C++ wrapper class that calls a LabVIEW built DLL.
    All this was fine and dandy, untill we decided to multi-thread our C++
    application. As a result, the LabVIEW DLL now gets called from
    multiple threads simultaneously. From all of my testing, it appears
    that resource locking is occuring such that only one thread has access
    to the .dll at a time. If I make the .vi used to define the dll
    function prototype as non-reentrant then this is what we see. As an
    example, say we have 3 threads all calling the same .dll method call.
    Thread 1, 2, and 3 all call the .dll within a few milliseconds of each
    other. Thread 1 completes the .dll call after X milliseconds. Thread 2
    completes the .dll call after 2X milliseconds, and thread 3 completes
    after 3x milliseconds.
    Now, changing the vi to reentrant, and running the same test, we see
    Thread 1, 2, and 3 all complete the .dll call in 3x milliseconds.
    While the fact that they now take the same amount of time to complete
    would lead you to believe they are happening in parallel, the fact
    that it takes 3x milliseconds as opposed to X milliseconds means they
    are not.
    Has anyone ever dealt with these issues before? Is it possible that
    messing with the "execution system" for the vi will have an affect?
    What if different .dll methods but still attached to the same .dll are
    called from different threads? Same behavior? Is it a lost cause? Is
    there no way to make code within a single LabVIEW built .dll run in
    two different threads at the same? From what I understand this is
    easily doable with a normal (non-LV built) .dll.
    Please, if anyone has any advice in this area, let me know!!!
    Much appreciated,
    Jesse Hurdus

    Duplicate post.

  • My nook app continues to state "Please be sure you have internet connectivity, then try again."  I am currently connected to wifi and it seems that all my other apps that need to be connect to the internet are properly working.  Help!

    My nook app keeps telling me "Please be sure you have internet connectivity, then try again."  I am currently connected to wifi and it seems that all my other apps that need to be connect to the internet are properly working.  I have turn off my phone, signed off my wifi, installed a new app, but nothing is working.  My friend is having similar issues.  My phone is up to date.  I even tried taking off the wifi in hopes that it could just connect to the 3g but nothing.  Not sure if anyone else is experiencieng this issue or knows what I can do.  I think that it may be an app problem that needs fixed, but not sure. Help!

    Maybe its a Viber problem. As that is not an Apple product, why don't you try and contact the developer?

  • I can't update my iPad to iOS7.  It keeps saying that my updates are complete at iOS 5.1. HELP.  I want to download iBooks and other apps that need iOS7.

    I can't update my iPad to iOS7 .  It keeps saying My updates are complete at iOS5 .1 .  HELP!!  I want to download iBooks and other apps that need the newer iOS7 .

    The original iPad can't be updated past 5.1.1; you may be able to get compatible application versions by downloading them to a computer and then going to the Purchased screen on the device.
    (100498)

  • HT1338 Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help neede

    Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help needed !

    Hello:
    I would trot back into the Apple store and have them fix the problem (or call Applecare with a warranty issue).  There is no sense in you wasting your time trying to troubleshoot things on a new computer.
    Barry

  • I need help please. I have 6 apps updates shown on on the upper right corner of the app store icon. When i tried to open the apps store and go to updates, the apps that need to be updated were not appearing therefore i have no idea what those apps

    I need help please. I have 6 apps updates shown on on the upper right corner of the app store icon. When i tried to open the apps store and go to updates, the apps that need to be updated were not appearing therefore i have no idea what those apps are so that i can update them. Please give some solutions please

    isthisonetaken wrote:
    I'm having this problem. It started yesterday. I have 2 updates, but when I open the App Store, they won't appear.
    Do you have apps purchased with a differnt AppleID?
    For example, mine shows 12 updates but only 2 show up as being available.
    The others are on my daughters account.
    I log out of my iTunes account and log in with hers and those updates show up.

  • Guys i need to get m itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    guys i need to get my itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    If you've tried to buy something and your've been charged for it (and it's not a temporary store holding charge) but haven't received it then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I have apps that needs to be updated that shows my old account. How do I delete this info without losing my purchases? The old account was hacked and I do not want to update anything using that account! Help. Wonderer

    I have apps that needs to be updated that shows my old account. How do I delete this info without losing my purchases?

    iTunes purchases cannot be transferred between accounts. If you no longer wish to use the old account at all, you should delete those apps and repurchase them with the new account.
    On the other hand, you could also (and should have before creating a new account - contact iTunes support to deal with account security: https://getsupport.apple.com/Issues.action

  • HT4623 i have a third gen 32 gb touch ipod and want to download robo.me app and need ios6   help

    i have a third gen 32 gb ipod touch  and want to download robo.me app but need to upgrade to ios 6  and need to do through itunes 
    can anyone walk me through this?

    Sorry... The 3rd Gen can only go to 5.1.1

  • Help needed I have a canon 40D. I am thinking of buying a canon 6D.But not sure that my len

    Hi all help needed I have a canon 40D. I am thinking of buying a canon 6D.
    But not sure that my lenses will work.
    I have a 170mm/ 500mm APO Sigma.
    A 10/20 ex  Sigma   HSM  IF.
    And a 180 APO Sigma Macro or do I have to scrap them and buy others.
    ALL Help will be greatly received. Yours  BRODIE

    In short, I love it. I was going to buy the 5DMark III. After playing with it for a while at my local Fry's store where they put 5DMII, 5DMIII and 6D next to each other, using the same 24-105L lens, I decided to get the 6D and pocket the different for lens later.
    I'm upgrading from the 30D. So I think you'll love it. It's a great camera. I have used 5DMII extensively before (borrowing from a close friend).
    Funny thing is at first I don't really care about the GPS and Wifi much. I thought they're just marketing-gimmick. But once you have it, it is actually really fun and helpful. For example, I can place the 6D on a long "monopod", then use the app on the phone to control the camera to get some unique perspective on some scenes. It's fun and great. GPS is also nice for travel guy like me.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • Help needed on installation of Oracle 9i on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Help needed on installation of Oracle 9i EE on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

Maybe you are looking for