Has ANYONE been successful with their IP4 order?

I've been trying since it was available and have had zero luck. I'm about to give up. Anyone get lucky yet?

I was, still waiting for conf email. I woke up @ 4am, finally around 5:15 I was able to reserve, with no eligibility pricing, even though I was eligible. I got worried about that and tried again just after the opps message in the apple store. I got all the way through, but then got stopped for having another reservation. I quickly cancelled that, clicked enter and kept my fingers crossed. It went thru for the $199 and now I'm waiting for conf email. Good luck all it's work time!
Received conf email.
Message was edited by: Jack Pollard

Similar Messages

  • Has anyone been successful with "apk expansion pack" solution through air for android for large apps

    We have a 300 MB application which is very video happen and we need to find a solution that packages the content along an install file that is less than 50 MB for the android market.
    any help would be greatly appreciated.

    In Flash CS6, I built my own downloader for when the app is run the first time. First it creates a list of files to be downloaded then downloads them one at a time. After all files are downloaded I used the ELS to save the download status.
    import flash.net.URLRequestHeader;
    import flash.net.URLLoader;
    import flash.net.URLLoaderDataFormat;
    import flash.net.URLRequest;
    import flash.filesystem.FileStream;
    import flash.filesystem.File;
    import flash.filesystem.FileMode;
    import flash.utils.ByteArray;
    import flash.events.ProgressEvent;
    import flash.display.Loader;
    import VideoInfo;
    import flash.events.IOErrorEvent;
    import flash.net.NetworkInfo;
    import flash.net.NetworkInterface;
    function downloadAllFiles():void {
        //downloads files
        fileIndex = 0;
        downloadNextFile();
    function downloadNextFile():void {
        //downloads one file
        if (fileIndex <= video_list.length-1) {
            //progress bar
            //progress_mc.width = 1;
            //progress_txt.text = "";
            status_txt.text = "Download in progress...";
            var fileURL:String           = video_list[fileIndex].videoURL;
            fileName                         = video_list[fileIndex].videoName;
            fileSize                           = video_list[fileIndex].videoSize;
            var fileMimeType:String = video_list[fileIndex].videoMimeType;
            var header:URLRequestHeader = new URLRequestHeader("Content-Length", "0");
            var header2:URLRequestHeader = new URLRequestHeader("Content-Type", fileMimeType);
            fileRequest = new URLRequest(fileURL);
            fileRequest.method = URLRequestMethod.GET;
            fileRequest.contentType = fileMimeType;
            fileRequest.requestHeaders.push(header);
            fileRequest.requestHeaders.push(header2);
            urlLoader = new URLLoader();
            urlLoader.addEventListener(Event.COMPLETE, onDownloadComplete);
            urlLoader.addEventListener(ProgressEvent.PROGRESS, onDownloadProgress);
            urlLoader.addEventListener(IOErrorEvent.IO_ERROR, onDownloadError);
            urlLoader.dataFormat = URLLoaderDataFormat.BINARY;
            urlLoader.load(fileRequest);
        } else {
            trace("All files have been downloaded.");
            wait_txt.text = "";
            status_txt.text = "All files were downloaded.";
            //show continue button
            btn_box_mc.btnLabel.text = "CONTINUE";
            btn_box_mc.visible = true;
            downResBtn.visible = true;
            downResBtn.addEventListener(MouseEvent.CLICK, onDownloadCompleteFunc);
            //saved download status in the local store
            MovieClip(root).setAssetsDownloadStatus();
    function onDownloadCompleteFunc(evt:MouseEvent):void {
        //downloads complete handler
        //start app
    function onDownloadComplete(evt:Event):void{
        //download complete handler
        status_txt.text = "Downloaded " + fileName + ".";
        //trace(fileName + " downloaded to " + File.applicationStorageDirectory.nativePath);
        var dataD:ByteArray = evt.target.data;
        //save the file
        var fileStream:FileStream = new FileStream();
        var dFile:File = File.applicationStorageDirectory;
        dFile = dFile.resolvePath(fileName);
        fileStream.open(dFile, FileMode.WRITE);
        fileStream.writeBytes(dataD, 0, dataD.length);
        fileStream.addEventListener(Event.COMPLETE, onSaveComplete);
        fileStream.addEventListener(ProgressEvent.PROGRESS, onSaveProgress);
        fileIndex++;
        //accumlated oize
        totalAccumulatedSize += curVideoAccumulatedSize;
        downloadNextFile();
    function onDownloadError(evt:IOErrorEvent):void {
        //download error handler
        trace("Error downloading " + fileName);
        wait_txt.text = "";
        status_txt.text = "Error downloading " + fileName + ".";
        //show exit button
        btn_box_mc.btnLabel.text = "QUIT";
        btn_box_mc.visible = true;
        downResBtn.visible = true;
        downResBtn.addEventListener(MouseEvent.CLICK, exitFunc);
    function exitFunc(evt:MouseEvent):void {
        //exit
        NativeApplication.nativeApplication.exit(0);
    function onDownloadProgress(evt:ProgressEvent):void{
        //download complete handler
        //trace("Progress: " + evt.currentTarget.bytesLoaded + "/" + fileSize);
        //var temp_txt:String = debug_txt.text;
        //debug_txt.text = temp_txt + "\nFile: " + fileName + " (bytes downloaded: " + evt.currentTarget.bytesLoaded + "/" + fileSize + ")";
        curVideoAccumulatedSize = evt.bytesLoaded; //file must reside on a server that doesn't gzip enabled
        var count:Number = fileIndex + 1;
        var perc:Number = Math.round(100*(totalAccumulatedSize + curVideoAccumulatedSize)/totalSize);
        var partialMB:Number = (totalAccumulatedSize + curVideoAccumulatedSize)/1048576;
        progress_txt.text = String(perc) + "% completed (" + String(partialMB.toFixed(1)) + " of " + totalSizeMB.toFixed(1) + " MB)";
        status_txt.text = "Downloading file #" + count + " of " + video_list.length + ":  "  + fileName;
        //progress bar
        progress_mc.width = 480*(partialMB/totalSizeMB);
    function onSaveProgress(evt:ProgressEvent):void{
        //save complete handler
        trace("Saving file... ");
    function onSaveComplete(evt:Event):void{
        //save complete handler
        trace("File saved.");
    function createVideo(fn:String, fs:int, mimetype:String):VideoInfo {
        //returns a video
        var assetsURL:String = "http://mywebsite.com/myvirtualdirectory/";
        var fURL:String = assetsURL + fn;
        var video:VideoInfo = new VideoInfo(fn, fURL, fs, mimetype);
        return video;
    function createVideoList():void {
        //creates the list of videos to download
        //populate video list
        video_list.push(createVideo("building2_1.flv", 1858694, "video/x-flv"));
        video_list.push(createVideo("building2_2.flv", 1905661, "video/x-flv"));
        video_list.push(createVideo("building2_3.flv", 1810634, "video/x-flv"));
        video_list.push(createVideo("building2_4.flv", 1994332, "video/x-flv"));
        video_list.push(createVideo("building3_1.flv", 1828362, "video/x-flv"));
        video_list.push(createVideo("building3_2.flv", 2550128, "video/x-flv"));
        video_list.push(createVideo("building4_1.flv", 2249678, "video/x-flv"));
        video_list.push(createVideo("building4_2.flv", 1301540, "video/x-flv"));
        video_list.push(createVideo("building5_1.flv", 3152689, "video/x-flv"));
        video_list.push(createVideo("building5_2.flv", 4258518, "video/x-flv"));
        video_list.push(createVideo("building5_4.flv", 1741195, "video/x-flv"));
        video_list.push(createVideo("building6_1.flv", 3295741, "video/x-flv"));
        video_list.push(createVideo("building7.flv", 1723062, "video/x-flv"));
        video_list.push(createVideo("district1.mp4", 1876220, "video/mp4"));
        video_list.push(createVideo("district3.mp4", 2087587, "video/mp4"));
        video_list.push(createVideo("district6.mp4", 2011591, "video/mp4"));
        video_list.push(createVideo("district8.mp4", 4870888, "video/mp4"));
         video_list.push(createVideo("global1.mp4", 2007542, "video/mp4"));
        video_list.push(createVideo("global2.mp4", 4148857, "video/mp4"));
        video_list.push(createVideo("global3.mp4",  3563990, "video/mp4"));
        video_list.push(createVideo("global4.mp4", 2452995, "video/mp4"));
        //calculate total size
        for (var p=0; p < video_list.length; p++) {
            totalSize += video_list[p].videoSize;
        totalSizeMB = 0.1*Math.round(10*totalSize/1048576);
        //start download
        downloadAllFiles();
    var fileName:String;
    var fileSize:int;
    var fileRequest:URLRequest;
    var urlLoader:URLLoader;
    var fileIndex:Number = 0;
    var curVideoAccumulatedSize:Number = 0;
    var totalAccumulatedSize:Number = 0;
    var totalSize:Number = 0;
    var totalSizeMB:Number = 0;
    var video_list:Array = new Array();
    //create list of files to be downloaded
    createVideoList();
    VideoInfo.as
    package {
        public class VideoInfo {
            public var videoName:String;
            public var videoURL:String;
            public var videoSize:Number;
            public var videoMimeType:String;
            public function VideoInfo(videoNameP:String, videoURLP:String, videoSizeP:Number, mimetypeP) {
                videoName             = videoNameP;
                videoURL             = videoURLP;
                videoSize            = videoSizeP;
                videoMimeType        = mimetypeP;

  • Has anyone had success with Apple replacing their iPhone 4 [out-of-warranty] concerning the stuck power button?

    Has anyone had success with Apple replacing their iPhone 4 [out-of-warranty] concerning the stuck power button?

    For $149 they will do an out-of-warranty replacement.

  • Has anyone been successful in using a HP scanjet on Windows 7 Professional XP Mode?

    has anyone been successful in using a HP scanjet on Windows 7 Professional XP Mode?

    Hi there,
    Could you provide the community with a little more information to help narrow troubleshooting? Which scanjet are you using?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • HT201272 Has anyone had problems with their apps downloading to their ipods?

    Has anyone had problems with their apps downloading to their ipod? Or know why all apps have been removed from their ipod?

    Possibly, but what problems?  Any errors?
    If you are really running iOS 3.1.2 as your signature suggests, that is likely the issue.  Many apps now require iOS 4.3 or higher.

  • Has anyone had issues with their itunes not coming up?

    Has anyone had issues with their itunes not coming up?  I keep getting error message 13014.  I just bought a new classic ipod and am not sure if this is the problem.

    Hi
    Your new iPod has certain operating system requirements. Does your iMac meet those requirements?
    http://www.apple.com/ipodclassic/specs.html
    3rd Column on the right hand side, about a 3rd of the way down. To find out which version of iTunes you have, launch it and select "About iTunes" from the iTunes menu.
    HTH?
    Tony

  • Has anyone had trouble with their bluetooth headset? (even after pairing)

    Has anyone had trouble with their bluetooth headset? I have a Motorola H700 that pairs with the iphone but takes about 10 seconds after i hit send for the connection between the phone and the headset to be established. I also get allot of static when the headset is more than 3 feet away from the phone. (this headset worked perfectly @ about 40' with a Motorola Razr I had)

    Hi jmsemac,
    I understand you are experiencing some issues with Bluetooth connections. I have linked to an article which provides some troubleshooting steps you may want to explore: 
    iOS: Troubleshooting Bluetooth connections - Apple Support
    Thank you for contributing to Apple Support Communities.
    Take care,
    Bobby_D

  • Has anyone been successful importing h.264 into Encore?

    First, my system and goal:
    A MacPro with 2.66mHz dual core and 12 gigs of RAM.
    Multi Terrabytes of space.
    I shoot on a Panasonic HVX-200, edit in Final Cut Pro and output Quicktime files as the basis for rendering to DVD and Blu-ray. I shot this stuff in 1080i. The camera codec is DVCPROHD and that is what I output to also.
    I am trying to burn Blu-ray discs. I have an external Pioneer BDR-203 Blu-ray burner and it works fine.
    I have done my tests and have decided that for Blu-ray, h.264 is far superior to mpeg2 in look and file size so I am sticking with it.
    Here is the issue (and I have scoured this forum area and found no one discussing or solving this issue to date):
    I have made hundreds of different DVDs with DVDStudioPro and am very familiar with it. Not to get off on a tangent but my beloved Apple has decided to betray me by not supporting Blu-ray (the ONLY way to output HD for us independents) so I studied up on Encore and have been using it to format my latest project to HD. The interface works pretty nice and even has some superiority to DVDSP but you have to have the patience of JOB to see your results. 5 Day (Remember. That's 24 Hour Days) Rendering is my tops so far. (OK. Full Disclosure... the documentary is 3 hours and 15 minutes long BUT DVDStudioPro took the same Quicktime files and crunched them down to mpeg2 for the DVD in about a day) Anyway about 6 days ago I had a 3 day render session that crapped out on me as it was finally recording to disc. For some reason it didn't like the BD-RE disc I had in the machine and just bagged the whole process. When I put in a new disc it just started rendering All Over Again. After that debacle I gave up on that method and now am rendering to BDMV folders which I then burn to disc using Toast. (While I am writing this my fingers are crossed that it will make it to the end - it's been another 3 days...)
    I provide the details above to show why I am more than dismayed that I cannot figure any way to import h.264 files INTO Encore from another renderer. Either Compressor or Encoder render much faster than Encore. So I have tried render my project to a variety of output types from both Apple's Compressor and Adobe's Encoder with no joy any way I try.
    (as a side note I am also dismayed that when I made a change to a MENU, Encore decided to encode The Whole Project Again rather than just the menu part...)
    One of my latest file testing adventures was based on a theory that the problem has to do with DVCPROHD recording to 1280 x 1080 anamorphic rather than 1440 x 1080 (the "expected" frame size for 1080i). I fooled with that a half day but could not get either renderer to generate any test material from my FCP output that Encore would burn without re-rendering. By that I mean I cajoled and tricked Compressor and Encoder to output 1920 x 1080 files; 1440 x 1080 files and 1280 x 1080 files (all h.264) to see if Encore would recognize any of them without re-rendering them. No Luck.
    So. Has anyone had success importing h.264 into CS4Encore from anywhere (but particularly using the same or similar gear I am using)? The Encore literature really doesn't give you much to go oon.
    Lately I am very inclined to think the problem has something to do with this 1280 x 1080 DVCPROHD issue but I can't say for sure. I offer that as a suggestion if anyone else with a similar production stream is having the same problem and maybe it will trip a switch in their mind for a solution.
    I like the Encore interface and design possibilities you have by swinging back and forth from PShop and After Effects but using Encore's renderer is like Chinese Water Torture.
    Thanks for your help.

    Brian,
    I got your test file into Encore and got Encore to show its Blu-ray transcode status as "Don't Transcode".
    Screenshots:
    PrCS4 Export settings:
    EnCS4 Project Panel:
    Since it's hard to make out the En Project panel, I'll attach the same image to another message.
    -Jeff

  • Has anyone had trouble with their computer recognizing your I phone after installing new hard drive and reloading  I tunes?

    Has anyone had a problem with their computer recognizing their I phone ? I had to replace my hard drive And reloaded iTunes but know it doesn't recognize my phone but it will download pictures from it?

    I had my HD replaced under the recall program. I am running 10.6.8 and Safari 5.1.7 on a 2.8GHz iMac.
    I haven't noticed any significantly different behavior of Safari since having my HD replaced and using Time Machine to restore my data. The only thing I've run across in about 2 weeks is that Safari's Preferences panel takes a bit longer to load than I remember.
    One thing you can try is launching Safari from your computer's main Applications folder. If it still crashes, you can also try downloadng a fresh copy here: http://www.apple.com/support/safari/
    Have you ever checked out Firefox? I personally like it better than Safari because it offers more security options, such as greater control over cookies, and supports many useful privacy and security plugins.

  • Has anyone had success with Messaging Server 5.2 under Windows 2000 Server?

    Just to be up front - we MUST use Windows 2000 - they're not giving me a choice to move to Solaris or Sun Hardware. Linux isn't even a choice, nor is WinNT. (I know, it's annoying).
    I've managed to get Directory Server 5.1 to run under windows 2000 without active directory installed. I found that I needed to modify the ims_dssetup.pl script that comes with the Messaging Server 5.2 to reference the full path to my ldapsearch and ldapmodify executables. Apparently, this is a win2k specific problem, and is not necessary on WinNT. This made ims_dssetup.pl work and the install of Messaging Server 5.2 work on a windows 2000 machine.
    However, at reboot, the job controller and dispatcher do not automatically start. When I try to start the services manually, I get "Error 1067: The Service terminiated unexpectedly".
    Any ideas? I'm desperate here - they're gonna make us use exchange if I can't get >>something<< working. Even a 4.x version of messaging server will do.
    Thanks

    Well, I do understand that.
    However, I've installed iMS 5.2 on win2k several times (I admit, w2k pro, not server), and i've never installed AD.
    If you can get it installed and working for your default domain, but not for other domains, then most likely it has nothign to do with AD or AD domains. iMS idea of domains is very different from AD's idea of domains. We need to be very clear about such.
    for iMS, you have to create additional domains through Delegated Admin, as either "Hosted Domains" or as "Vanity Domains". We do not suggest using "Vanity Domains", and support for such is deprecated.
    Once you have created "Hosted Domains" through Delegated Admin, you can add users to those domains, and they should work, just fine.

  • Has ANYONE been successful in accessing their Time Capsule via mobileme???

    I have set my mobileme user name and password on both of my Time Capsules yet I have not been able to see either one from anywhere other than from within my network.
    Perhaps I am missing a simple step but I don't think so.
    Just wondering how others have fared with this.
    I am using a new and updated time capsule that I just purchased and the other was purchased in September. All firmware updates are done as well.
    Thanks in advance to all.

    I up dated my Time capsule with 7.4.1 and I can see my Time Capsule with no problems on my mobileme, I have a problem keeping my network up with the new update. The Time Capsule looses the internet and network after an hour or two after the updated and new to be upluged and pluged back in to get the network back and the internet, when go back to 7.3.2 the system works fine by I am not able to see my Time Capsule on the Mobileme, but it does show on my network and I can access on the network, I am asked to update the Time Capsule because it keep opening the update window.
    Larry King
    PS does anyone else have this problem.

  • Has anyone had issues with their galaxy s4s using alot of data for no reason at all?

    I had my data on both phones and internet peice at home turned off and got 3 overages within 15 mins of each other .  I calle verizon to help with the situation... but no help.  They said that we were using the data?  I work in a wireless center so i know how to turn it off and I KNOW it was off.  Its ridiclous that my husbands new s4 has used 23 gb of data when he isn't using it that much.  Im stuck now paying a 444 bill because this phone is wacko.  Ive been with them over 3 years.  He just upgraded.  Why wont they try to do something to help... all they say is ma'am  you are using that much data.  Um no we aren't.  STUPID.  Im beginning to HATE!!! verizon.  Im out of contract.  Thinking about closing my account and going with someone cheaper, because I cannot afford a 444 bill every month because they won't help fix the situation.

        fallenangelgirl99, we don't want you to go and we're here to help in any way that we can. You have the option of changing your plan during the bill cycle to avoid data overage charges. Did you receive usage alerts via text message? http://vz.to/1hvu4tP Let's make sure that you're on the best plan to fit your usage: http://vz.to/1qhEcv5
    LasinaH_VZW
    Follow us on Twitter @VZWSupport
    LasinaH_VZW
    Follow us on Twitter @VZWSupport

  • Has anyone had issues with their HP Lightscribe CD/DVD after a sofware update?

    After recently installing software updates from HP and Microsoft my laptop no longer shows the drive with the CD/DVD under Computer. I can install a dvd and hit the Quick Play and it plays fine but it's also a lightscribe dvd burner and I can't send videos or photos to the drive because it's not showing up under the listed drives. Neither are my removable disk flash ports showing up. They were there before the most recent HP and Microsoft security updates installed. When I go to Device Management it shows up there but also shows an error message under the Devices Status: "This device cannot start. (Code 10), Click 'Check for solutions' to send data about this device to Microsoft and to see if there is a solution available."  When I click to check for solutions I get the message back that the device is installed and functioning properly. I also checked the device driver and it's telling me it's the correct and most updated driver. i'm at a loss as I'm not at the point where I'm able to replace this laptop which is used for personal and home business use. Does anyone have a solution other than doing a total recovery? I tried taking it back to just before the last update but they're still not showing up. It's like something wiped them out.

    Yes with some docks and car systems but I do not remember the specific devices. Sometimes and iOS update breaks compatibility.
    Try:
    - Go to the dock manufacturers and see what they say. Also see if there is a firmware available for the dock
    - Reset the dock
    - Sometimes this works:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
      - Restore to factory settings/new iOS device.

  • Has anyone had issues with their iphone not being able to play music through ihome or other external units after ios7 update?

    I have not been able to play music or podcasts when my phone is plugged into my iHome. It did so before the iOS update. It does the same thing with my JBL at work.

    Yes with some docks and car systems but I do not remember the specific devices. Sometimes and iOS update breaks compatibility.
    Try:
    - Go to the dock manufacturers and see what they say. Also see if there is a firmware available for the dock
    - Reset the dock
    - Sometimes this works:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
      - Restore to factory settings/new iOS device.

  • Usb unrecognisable message now appears when i plug my old ipod into the usb port on my v70. It used to work so i assume this is a problem caused by updating to the latest software. Has anyone been successful in downgrading to an earlier os using itunes

    I now get an urecognisable usb device message when i plug my ipod classic (ipod colour?) into the usb input in my Volvo V70. The ipod used to work, but since updating the IOs it doesn't. Can anyone tell me where i can find a copy of an old ipsw which does work so that i can downgrade back and acheive compatibility again,
    thanks chris jones

    perhaps someone from apple tech might contribute as the software upgrade has rendered the device useless for my purposes
    Chris Jones

Maybe you are looking for

  • Duplexing not working for LaserJet 5M (maybe just LaserJet 5?)

    Hi, I have a HP LaserJet 5 printer (that's what it says on the front), and at one point, I believe that I bought the memory module that adds PostScript handling, which at the time I think made the printer equivalent to a LaserJet 5M. Anyway, I recent

  • Unable to connect the server, while open the rpt file in server from java.

    Hi, I have written one java class, that class deployed in solaris server. The BO server is avilable in another solaris server. i want to convert the rpt file to pdf format. for that i try to give the file path to the server for opening the rpt file,

  • Embed barcode in pdf file

    I'm not sure this is possible, but maybe someone has a smart idea.  I've got a pdf that users are printing off our website which is used as a registration card.  What I'd like to be able to do is insert a barcode onto that pdf when it's viewed/printe

  • App Store problems again?

    I keep getting the 'Cannot connect to iTunes store' message.. I have a ipad2 wifi only model and have recently updated to the new iOS 6.1 update.. Is there a service outage like on the 25 of October? Any advice people??

  • How open in photoshop 9 RAW image made by Canon T3i?

    Please, advice how open photograph shoot in RAW by Canon T3i. Can it open in Adobe Photoshop Element 9?