How do you keep iPhone charged while connected to carplay

How do you keep iPhone charged in the car while it is connected to the cable for CARPLAY?

The next time you connect your iPad to your laptop, click on your iPad under Devices and then click on the Apps tab on top. Once it opens and lists all your apps in iTunes on the left (both iPad and iPhone ), simply uncheck the boxes next to the iPhone apps you wish to leave off from future syncs. They will still be in iTunes and available for your iPhone, but won't be synced to your iPad. Click on Apply.

Similar Messages

  • How do you get iPhone 5 to connect to iMac through bluetooth?

    How do you get iPhone 5 to connect to iMac through bluetooth?
    I know the basic steps, but all I get is pairing unsuccessful. I'm using an older bluetooth, would that make a difference? I got connected once with a Motorola bluetooth, but can't reconnect. TIA!

    Try the Bluetooth Troubleshooting steps here:
    http://support.apple.com/kb/TS2756
    Note that you need to have Personal Hotspot set up with your carrier and on your iPhone before you can connect the computer.
    Regards.

  • How can you keep iphone from connecting to unknown networks and stop asking about them?

    When i have WiFi on, but "ask to join" is turned off, i've found that my iphone connects to open unsecured networks on its own whenever it can.  These are not networks it has previously been connected to.  I want it to behave like every other WiFi device out there where i have a list of known networks that it accesses when in range and i don't want it to ask me or connect to anything else when not in range.  I understand i can turn WiFi off but this is a pretty big pain to have to manually do this every time i go in and out of range of networks i want to be connected to.
    It also would be nice if anyone knows of a way to edit my know networks list as a list instead of having to be in range of the network and then one by one go through every visible network to figure out which ones it considers known.  Especially when it has automatically added networks without my knowledge when the ask to join was turned off.

    Let me give you an example. I'm at a United lounge at O'Hare Airport right now. They have WiFi here but it requires that you log on in order to connect to the internet. I connect to WiFi from my laptop. All good. Then, immediately, my iPhone connects to the same network. But because I haven't logged on from my iPhone, I can't get online. This kills the internet on my iPhone because I'm connected to a network with no internet access. If on my iPhone I "Forget this Network" and then come back next week, I'll find that it connects to the exact same network.
    I travel a lot and almost all of the networks I use on a daily basis require a login of some sort.
    I could turn off WiFi but then I have to remember to turn it on when I actually do want to connect to a network, like when I'm at home.
    Any idea how to prevent the mirroring of WiFi connections? Or at a minimum make sure the "Forget this Network" option actually works?

  • How do you keep the same URL connection connected continuously?

    I am trying to extract information from a web page, but it puts a cust_id in the middle of the URL. It generates the cust_id randomly everytime you use the site. I connect to the initial URL to find the cust_id, I substring that to the new URL and then make a new connection to extract the information, but the web page gives me an error saying that it doesn't recognise the cust_id. As if it was a new connection with the wrong cust_id.
    How can I keep the first connection open and with the same cust_id information and then jump to another web page but using the initial connection. Using IE6 I can just cut and paste the second URL and get to the page, but with my java application it doesn?t work. Please have a look at my code and let me know if I am doing anything wrong.
    URL inputURL;
         String inputLine;
         URLConnection connection;
         String page = "";
         int x;
         String cust_id1 = "";
         String cust_id2 = "";
         String site;
         File outputFile = new File("web.txt");
         FileWriter out = new FileWriter(outputFile);
       try
         inputURL = new URL("http://www-ets.woolworths.com.au/ets/owa/login?topage=search");
         connection = inputURL.openConnection();
         BufferedReader inputStream = new BufferedReader(new InputStreamReader(connection.getInputStream()));
         while ((inputLine = inputStream.readLine()) != null)
              page = page + inputLine;
              System.out.println(inputLine);
              x = inputLine.indexOf("cust_id=");
              if (x != -1)
              cust_id1 = inputLine.substring(x, x + 14);
              PrintWriter file = new PrintWriter(new FileOutputStream("web.txt"));
              out.write(page);
              out.close();
              System.out.println("1st time successful");
              System.out.println(cust_id1);
              //inputStream.close();
              //extracted the customer id, now able to search for the product
              //test for milk
         site = "http://www-ets.woolworths.com.au/ets/owa/items?search_pattern=milk&";
         site = site + cust_id1;
         site = site + "&imode=search&search_option=";
         System.out.println(site);     
         inputURL = new URL(site);
         BufferedReader inagain = new BufferedReader(new InputStreamReader(inputURL.openStream()));
         //tried the connection way
         //connection = inputURL.openConnection();          
         //BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
         while ((inputLine = inagain.readLine()) != null)
              //System.out.println(inputLine);          
              x = inputLine.indexOf("cust_id=");
              if (x != -1)
              cust_id2 = inputLine.substring(x, x + 14);
              System.out.println(cust_id1);
              System.out.println(cust_id2);
              System.out.println("2nd time completed");
              inputStream.close();
       catch(ArrayIndexOutOfBoundsException obe)
                System.out.println("Usage: FetchURL url");
       catch(IOException ioe)
                System.out.println("IO Exception");

    Please have a quick look at my code and see if I am doing anything wrong. I havent been able to set the correct cookies and the output html page comes up with an error saying that it could not retrieve my request. This time there is no mention of invalid cust_id.
              try
                   URL inputURL = new URL("http://www-ets.woolworths.com.au/ets/owa/login?topage=search");
                   connection = inputURL.openConnection();
                   System.out.println("filename = " + inputURL.getFile());
                   BufferedReader inputStream = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                   while ((inputLine = inputStream.readLine()) != null)
                        //System.out.println(inputLine);
                        page = page + inputLine;     
                        x = inputLine.indexOf("cust_id=");
                        if (x != -1)
                             cust_id = inputLine.substring(x + 8, x + 14);
                   out.write(page);
                   out.close();
                   System.out.println("extracted cust_id: " + cust_id);
                   for (int i = 1; i <= 30; ++i)
                        System.out.println("    Header " + i + ":  " + connection.getHeaderFieldKey(i) + ": " + connection.getHeaderField(i));
                        header = header + connection.getHeaderFieldKey(i);
                        header = header + ": ";
                        header = header + connection.getHeaderField(i);
                   outcookie.write(header);
                   outcookie.close();           
                   inputStream.close();          
                   //extracted the customer id, now able to search for the product
                   //test for milk
                   String url2 = "http://www-ets.woolworths.com.au/ets/owa/items";
                   //String url2 = "http://www-ets.woolworths.com.au/ets/owa/login?topage=search";
                   inputURL = new URL(url2);     
                   connection = inputURL.openConnection();     
                   connection.setDoOutput(true);
                   //connection.setUseCaches(false);
                   System.out.println("filename = " + inputURL.getFile());
                   String date = "; expires=Mon, 28 Jan 2002 02:53:17GMT; path/;";     
                   String date1 = "expires=Sun, 31 Dec 1989 14:00:00 GMT; path/;";
                   connection.setRequestProperty("cookie", "qwc=" + cust_id + date);
                   connection.setRequestProperty("cookie", "cust_id=" + cust_id + "; path=/;");
                   connection.setRequestProperty("cookie", "cd=2%40142%40%40%40%40N%40; path=/;");
                   connection.setRequestProperty("cookie", "state=NSW; path=/;");
                   connection.setRequestProperty("cookie", "dsd=1; path=/;");
                   connection.setRequestProperty("cookie", "sb1=0%2A%2D645746%2D0%2A; path=/;");
                   connection.setRequestProperty("cookie", "sb2=0; " + date1);
                   connection.setRequestProperty("cookie", "sb3=0; " + date1);
                   connection.setRequestProperty("cookie", "sb4=0; " + date1);
                   connection.setRequestProperty("cookie", "sb5=0; " + date1);
                   connection.setRequestProperty("cookie", "sb6=0; " + date1);
                   connection.setRequestProperty("cookie", "sb7=0; " + date1);
                   connection.setRequestProperty("cookie", "sb8=0; " + date1);
                   connection.setRequestProperty("cookie", "sb9=0; " + date1);
                   connection.setRequestProperty("cookie", "sb10=0; " + date1);
                   connection.setRequestProperty("cookie", "sbn=; path=/");
                   connection.setRequestProperty("cookie", "search=milk; " + date1);               
                   //connection.setRequestProperty("Content-type", "application/octet-stram");
                   //connection.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
                   //String parms = "?search_pattern=" + URLEncoder.encode("milk") + "&cust_id=";
                   //parms = parms + URLEncoder.encode(cust_id);
                   //parms = parms + "&imode=" + URLEncoder.encode("search") + "&search_option=";
                   //System.out.println("parms : " + parms);
                   String parms = "?search_pattern=milk&cust_id=";
                   parms = parms + cust_id;
                   parms = parms + "&imode=search&search_option=";
                   System.out.println("parms : " + parms);
                   PrintWriter outStream = new PrintWriter(connection.getOutputStream());
                   outStream.println("parms");
                   outStream.close();               
                   BufferedReader inputStream1 = new BufferedReader(new InputStreamReader(connection.getInputStream()));     
                   //BufferedReader inagain = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                   while ((inputLine = inputStream1.readLine()) != null)
                        //System.out.println(inputLine);
                        page2 = page2 + inputLine;
                        x = inputLine.indexOf("cust_id=");
                        if (x != -1)
                             cust_id2 = inputLine.substring(x + 8, x + 14);
                   out2.write(page2);
                   out2.close();
                   System.out.println("2nd attempt cust_id" + cust_id2);
                   for (int i = 1; i <= 30; ++i)
                        System.out.println("    Header " + i + ":  " + connection.getHeaderFieldKey(i) + ": " + connection.getHeaderField(i));
                        header2 = header2 + connection.getHeaderFieldKey(i);
                        header2 = header2 + ": ";
                        header2 = header2 + connection.getHeaderField(i);
                   outcookie2.write(header2);
                   outcookie2.close();      
                   inputStream.close();
              }The original web page to get the cookie is
    http://www-ets.woolworths.com.au/ets/owa/login?topage=search
    Enter a search product eg milk and that is the second page I am trying to extract.
    You will notice in the middle of the url is cust_id.
    Am I going about this 2 pages completely wrong?

  • How can you keep your iPhone 4 (using it as my car's iPod) staying on the Audible app?  When I leave the car and return to continue hearing a book, it has switched to iTunes.

    How can you keep your iPhone 4 (using it as my car's iPod) staying on the Audible app?  When I leave the car and return to continue hearing a book, it has switched to iTunes.

    The first time an iPhone is connected to iTunes that is used to sync with another iPhone or iOS device, you are prompted to transfer the backup for the other iPhone or iOS device or to set up the iPhone as a new iPhone.
    The former does as provided - it transfers the backup for the other iPhone or iOS device to the iPhone replacing all data on the iPhone that is included with the backup being transferred. The latter does nothing allowing you to make your various selections for the iPhone sync preferences with iTunes.
    This is designed to be done right away with a new iPhone.
    If you don't have a backup for the iPhone with iTunes on your computer and don't have an iCloud backup that hasn't been updated since choosing to transfer the backup for your iPod Touch to the iPhone, the data that was on the iPhone is gone.

  • TA48312 My iphone wont charge while connected to computer

    My iphone wont charge while connected to computer

    zakkariarogers wrote:
    really it says its a 3g ?
    Your signature say iOS4.3.1.
    If you have a 3G, you cannot be running 4.3.1
    iOS4.3.x and higher requires a 3GS. 
    While this has no bearing on your current issue... it could cause confusion if you need assistance in the future with other iOS related issues.
    Make sure you know which device you have.  Identify iPhone models.

  • How do I find all the purchased items on my iPhone? When I try to update the iPhone iOS while connected to my MacBook it says there are purchased items on the phone that have not been transferred to my iTunes library and that I should transfer them.

    How do I find all the purchased items on my iPhone? When I try to update the iPhone iOS while connected to my MacBook it says there are purchased items on the phone that have not been transferred to my iTunes library and that I should transfer them before updating.

    Thanks. This seems to have worked easily.

  • HT4236 How do you keep photos in the same sequence on the iPhone that they are on the PC folder?

    How do you keep photos in the same sequence in the iPhone as they are in the folder on the PC??

    When I sync my photos they are listed alphabetically (by folder) and within the folders, listed alphabetically again by the name assigned to the photo. The only way I can think of to keep the order that you have in your computer would be to assign a letter as a prefix to each photo. If you have more than 26 photos in a folder, you can double the letters, etc. I think that will keep the photos in the order you want.

  • How can you keep the highest iphone 4s Video quality the same when exporting it from iMovie.

    How can you keep the highest iphone 4s Video quality the same when exporting it from iMovie.

    InDesign's PDF export engine does not transcode your videos, they are embedded exactly as they were in the original file. The Flash Player runtime which displays video inside PDF files may not show a perfect match to Quicktime etc. because most video playback tools aren't designed for a color-calibrated workflow, but they should be close.
    The playback quality (blocking and aliasing) will be affected if the clip is not playing at 100% (screen pixels != video pixels) and in PDFs with the standard video player widget, that will only ever happen when you use 'floating window' mode. PDF pages have physical dimensions, so viewing them at "100%" does not make them match screen pixels.
    If you don't mind the video clip being smaller than the media annotation in which it's playing, then use my free upgrade to the Acrobat playback widget - VideoPlayerX - which maintains 1:1 pixel scale until the page is zoomed out too far for it to fit. You can install the widget into InDesign so it's used by default when exporting.

  • How do you keep a VI running while waiting for user input?

    I have a VI that:
    1.  The user enters set points.
    2.  The user starts the VI and the VI sends the set points to an external process via a serial interface.
    3.  The VI  stops running.
    4   The user waits for the external process to complete.
    5.  Repeat sequence. Go to Step 1.
    This works well except for one small problem.  Starting the VI in step 2 causes an external micro controller to reset.  During the reset it will ignore set point commands.  To get around this problem a delay has been added between when the VI opens the serial port and when the VI sends the set points to the external process   Is it possible to keep a VI running continuously in this type of application, thereby eliminating the start up and shut down of the serial interface?
    If yes, how do you keep a VI running while waiting for user input?
    Howard

    The ones for the event structure specifically. I'm posting from my phone. Look at the basic ones for user input. even a simple while loop with a boolean and a case statement would work.

  • How do you surf the web while you are on the iphone?

    How do you search the web while you are having a phone conversation? do you have to put the phone on speaker?

    You dont have to, but it is hard to listen and look at the screen at the same time.  You can also use a bluetooth headset or ear phone that came with the phone.  Remember you can not do both at the ame time on Verizon.

  • My ipad says it isn't charging while connected to my computer. What's wrong?

    For some reason my ipad doesn't charge while connected to any of my computers. It isn't the cord because it charges through the wall by itself as well as on my keyboard dock. Any ideas?

    http://www.apple.com/batteries/ipad.html
    Charging Tips
    The quickest way to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter. When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge, but only when it's in sleep mode. Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.

  • How do you keep your VPN clients up to date?

    Hi, how do you keep your Cisco VPN clients up to date? Our users connect to a Cisco 3015 Concentrator. It needs to be as automatic as possible.
    Thanks

    Check this link,
    http://www.cisco.com/en/US/docs/security/vpn_client/cisco_vpn_client/vpn_cli
    ent46/administration/guide/vcAch3.html
    Example:
    Steps to perform an automatic update for VPN client :
    ===================================================
    1. Download update-4.8.00.0440-major-K9 file on your PC from the link below and unzip it.
    http://www.cisco.com/cgi-bin/tablebuild.pl/vpnclient-3des
    It will have the following files::
    - binary_config.ini
    - sig.dat
    - vpnclient-win-is-8.00.0440-k9.exe
    - vpnclient-win-msi-8.00.0440-k9.exe
    2. Create a webserver with a folder and move all the above files to this folder on webserver.
    3. Now on your vpn client create a new profile. This profile file will appear in the profiles folder of the vpn client. Copy this file to your desktop and zip it. Name the
    zipped file as profiles.zip. Delete the profile from the client.
    4. Make a copy of your binary_config.ini on your desktop. Rename it to new_update_config.ini. This is just to make sure its not saved as a txt file.
    Open the above file and write the following on it:
    [Autoupdate]
    Required=1
    5. Now move the new_update_config.ini and profiles.zip to the webserver. Once we browse to the webserver it should look like --
    http://webserver/~razshah/vpn_profile_update462/
    Index of /~razshah/vpn_profile_update462
    Name Last modified Size Description
    Parent Directory 09-Mar-2005 13:24 -
    binary_config.ini 09-Mar-2005 13:26 1k
    new_update_config.ini 11-Mar-2005 11:35 1k
    profiles.zip 09-Mar-2005 13:26 1k
    sig.dat 09-Mar-2005 13:26 2k
    vpnclient-win-is-4.6..> 09-Mar-2005 13:26 7.6M
    vpnclient-win-msi-4...> 09-Mar-2005 13:26 10.3M
    6. The concentrator is configured as follows:
    Client Type is Windows
    URL http://webserver/~razshah/vpn_profile_update462
    Revisions 4.6
    7. On your PC go to the VPN Client > updates folder. Delete the update_config file if its already there. This folder should have only autoinstall (this file will be added if update works) autoupdate header files.
    The update does take about 5 mins. To see the new file we have to close and reopen the client. Once connected make sure you are able to browse to the webserver and see all the files.
    1- Auto update runs only on Windows 2000 and Windows XP, all other client types update manually. Windows NT users get notified and can get an update manually from the update server.
    2- Remote users must have the VPN Client for Windows 4.6 or greater installed on their PCs to use the automatic update feature.
    Regards,
    ~JG

  • How to use the iphone 5 s connect the computer?I want copy photo from computer.

    how to use the iphone 5 s connect the computer?I want copy photo from computer.Who can teach me~thank^^

    You can move a photo from the computer to the phone using any of the following:
    iTunes sync: http://support.apple.com/kb/HT4236
    Photo Stream: http://support.apple.com/kb/HT4486
    3rd party apps such as: http://www.photosync-app.com

  • How do you restore iphone 4S if you have been locked out?

    How do you restore iphone 4S if you have been locked out?

    I am totally stupid here, can anyone speak plain english???  It is not accepting the ONE PASSCODE that i created.  This all happened after i upgraded to the fricken latest whatever they say we need to do. This is the first time in over a year of having this phone that this has happened.
    I tried to follow posts and connected to my computer with i tunes.  The computer did it's thing and i am still locked out.  Other than throwing this fricken phone and getting an android, what do i do and please, i am not up to all your jargon so you have to really spell it out for me.
    Thank you
    Very frustrated and aggravated since i upgraded to that ios stuff, the phone was just fine before that.

Maybe you are looking for

  • Computer not responding to Graphics Card/Freezes up in Games

    Hello All.     Recently I've updated my Drivers, and almost everygame I've played has just been freezing after 10 Mins of gameplay. It stay's on the screen for about 2 Mins, then closes off along with the app it was running on (Steam). Before i had u

  • Can not view photos

    "Pictures &Videos" functions no longer working. I can send a picture as an attachment on a tex message but can not view any taken pictures. WHAT HAPPENED?

  • Game Center friend request problems

    I've tried to add my friend through Game Center and I sent the friend request fine via email, but when I asked her if she got the request, she said that she did and that on her friends list it said that I was added to her list and that she could see

  • Radeon HD 3870 + Catalyst 9.8 & fglrx drivers = Black Screen. (arch64)

    I've installed Arch on my Alienware M17. First off, ATI and RadeonHD drivers do work. I have KDE 4.3 installed, etc., etc. I do know how bad ATI support is. I used to use Ubuntu 8.10, and upgrading to 9.04 had borked my video bad. However, like the t

  • Need sample application in dotnet to understand the concept of dataMining

    Hi, I am new to data mining and I know the genralize concept of Data Mining. I want to implement the application with Data Mining using c#.net or vb.net but don't know how to start. So any body know any sample application for data mining using c#.net