Invalid property get operation; subform doesn't have property 'rawValue'

Hello,
I have a form where on the Submit button I'm putting JavaScript that checks each field and radio button set to ensure the user has filled something in. I have used this script before successfully, but this time it is not working and for the life of me I can't see what wrong. Also, I've not encountered this particular error message before. Here is the text I am seeing on clicking the Submit button:
Acrobat JavaScript Debugger Functions Version 11.0
Acrobat EScript Built-in Functions Version 11.0
Acrobat SOAP 11.0
Exception in line 5 of function top_level, script XFA:form1[0]:page2[0]:buttons[0]:Button1[0]:click
GeneralError: Operation failed.
XFAObject.rawValue:5:XFA:form1[0]:page2[0]:buttons[0]:Button1[0]:click
Invalid property get operation; subform doesn't have property 'rawValue'
I'm glad to share my script if that's helpful as well.
Thanks in advance for your help,
MDawn.

Here's the script:
var v1 = page1.firstPage.positioned.firstLine.reqType.rawValue;
var v2 = page1.firstPage.positioned.firstLine.orderQuote.rawValue;
var v3 = page1.firstPage.positioned.description.rawValue;
var v4 = page1.firstPage.positioned.rentExempt.rawValue;
var v5 = page1.firstPage.positioned.header.posSub.storeNbr.rawValue;
var v6 = page1.firstPage.positioned.header.posSub.storeName.rawValue;
var v7 = page1.firstPage.positioned.header.posSub.RadioButtonList.rawValue;
var v8 = page1.firstPage.positioned.header.posSub.storeContact.rawValue;
var v9 = page1.firstPage.positioned.header.posSub.email.rawValue;
var v10 = page1.firstPage.positioned.header.posSub.contactsPhone.rawValue;
var v11 = page1.firstPage.positioned.header.posSub.custName.rawValue;
var v12 = page1.firstPage.positioned.header.posSub.custPhone.rawValue;
var v13 = page1.firstPage.positioned.header.posSub.custEmail.rawValue;
var v14 = page1.firstPage.positioned.dateNeeded.RadioButtonList.rawValue;
var v15 = page1.firstPage.positioned.dateNeeded.addlInfo.DateTimeField2.rawValue;
var v16 = page1.firstPage.positioned.dateNeeded.addlInfo.rushFees.rawValue;
var v17 = page1.firstPage.positioned.dateNeeded.rushProcessingFees.rushFeePrices.rawValue;
var v18 = page1.firstPage.positioned.dateNeeded.rushProcessingFees.RadioButtonList.rawValue;
var v19 = page1.firstPage.positioned.chairsArtInfo.RadioButtonList.rawValue;
var v20 = page2.personalization.header.RadioButtonList.rawValue;
var v21 = page2.shipping.shipTo.RadioButtonList.rawValue;
var v22 = page2.shipping.customerAddress.rawValue;
var v23 = page2.shipping.rushOrders.RadioButtonList.rawValue;
//REQUEST
if ((v1 == "") || (v1 == null))
   xfa.host.messageBox( "Please select the type of request" );
   xfa.host.setFocus("page1.firstPage.positioned.firstLine.reqType");
//ORDER_QUOTE
} else {
if ((v2 == "") || (v2 == null))
    xfa.host.messageBox( "Please indicate whether this is an order or quote" );
  xfa.host.setFocus ("page1.firstPage.positioned.firstLine.orderQuote");
//DESCRIPTION
} else {
  if (((v1 == "3")) && ((v3 == "" || v3 == null)))
  xfa.host.messageBox( "Please enter a description" );
  xfa.host.setFocus("page1.firstPage.positioned.description");
//RENT EXEMPT
} else {
  if (((v1 == "2")) && ((v4 == "" || v4 == null)))
  xfa.host.messageBox( "Please indicate if the order is rent exempt or royalty exempt" );
  xfa.host.setFocus("page1.firstPage.positioned.rentExempt");
//STORE NUMBER
} else {
  if ((v5 == "" || v5 == null))
     xfa.host.messageBox( "Please enter the store number" );
     xfa.host.setFocus("page1.firstPage.positioned.header.posSub.storeNbr");
//SCHOOL'S NAME
} else {
  if ((v6 == "" || v6 == null))
     xfa.host.messageBox( "Please enter the school's name" ); 
  xfa.host.setFocus ("page1.firstPage.positioned.header.posSub.storeName");
//COUNTRY
} else {
if ((v7 == "") || (v7 == null))
  xfa.host.messageBox( "Please enter the store's country" );
  xfa.host.setFocus("page1.firstPage.positioned.header.posSub.RadioButtonList");
//STORE CONTACT
} else {
if ((v8 == "") || (v8 == null))
  xfa.host.messageBox( "Please enter the name of the store's contact person" );
  xfa.host.setFocus("page1.firstPage.positioned.header.posSub.storeContact");
//CONTACT'S EMAIL
} else {
  if ((v9 == "" || v9 == null))
     xfa.host.messageBox( "Please enter the store contact's email address" );
     xfa.host.setFocus("page1.firstPage.positioned.header.posSub.email");
//CONTACT'S PHONE
} else {
if ((v10 == "") || (v10 == null))
  xfa.host.messageBox( "Please enter the customer's telephone number" );
  xfa.host.setFocus("page1.firstPage.positioned.header.posSub.contactsPhone");
//CUSTOMER NAME
} else {
if ((v11 == "") || (v11 == null))
  xfa.host.messageBox( "Please enter the customer's name" );
  xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custName");
//CUSTOMER PHONE
} else {
  if ((v12 == "" || v12 == null))
     xfa.host.messageBox( "Please enter the customer's telephone number" );
     xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custPhone");
//CUSTOMER EMAIL
} else {
if ((v13 == "") || (v13 == null))
  xfa.host.messageBox( "Please the customer's email address" );
  xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custEmail");
//DATE NEEDED
} else {
if ((v15 == "") || (v15 == null))
  xfa.host.messageBox( "Please whether the order is needed by a specific date" );
  xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.RadioButtonList");
//SPECIFIC DATE
} else {
  if ((v16 == "" || v16 == null))
     xfa.host.messageBox( "Please enter date the order is needed" );
     xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.addlInfo.DateTimeField2");
//RUSH FEES
} else {
  if ((v17 == "" || v17 == null))
     xfa.host.messageBox( "Please indicate if rush fees are applicable" );
     xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.addlInfo.rushFees");
//RUSH PROCESSING FEES
} else {
  if ((v18 == "" || v18 == null))
     xfa.host.messageBox( "Please select the rush processing fee that is wanted" );
     xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.rushProcessingFees.RadioButtonLi st");
//CHAIR ART INFORMATION
} else {
  if ((v19 == "" || v1 == null))
     xfa.host.messageBox( "Please identify the format of the art for the chair" );
     xfa.host.setFocus("page1.firstPage.positioned.chairsArtInfo.RadioButtonList");
//PERSONALIZATION
} else {
  if ((v20 == "" || v20 == null))
     xfa.host.messageBox( "Please identify whether personalization is needed for this order" );
     xfa.host.setFocus("page2.personalization.header.RadioButtonList");
//SHIPPING INFO
} else {
  if ((v21 == "" || v21 == null))
     xfa.host.messageBox( "Please identify where the order will be shipped" );
  xfa.host.setFocus("page2.shipping.shipTo.RadioButtonList");
//CUSTOMER'S ADDRESS
} else {
  if ((v22 == "" || v22 == null))
     xfa.host.messageBox( "Please provide the customer's address" );
     xfa.host.setFocus("page2.shipping.customerAddress");
//RUSH FEE
} else {
  if ((v23 == "" || v23 == null))
     xfa.host.messageBox( "Please select the rush fee that the customer wants" );
     xfa.host.setFocus("page2.shipping.rushOrders.RadioButtonList");
} else {
  Button2.execEvent("click");

Similar Messages

  • Rawvalue reference Error: Invalid property get operation; dataGroup doesn't have property

    When I reference a rawvalue of an object that does not exist I get an error.  If the object does not exist i want to hid the form field. Any help with the javascript to do this

    Hi,
    This seems a little strange, a dataGroup sounds like you are referencing an object in your data connection, not a form object.  A dataGroup object represents a group element, such as a complex type in an XML Schema definition and it does not have a rawValue (with uppercase "V") property.  If you are referencing this object via a resolveNode call then you will get a null result if it does not exist.
    Regards
    Bruce

  • Hi, I'd like to buy a 13 inch macbook air. My biggest concern is to get one that doesn't have high EMFs to it and that has low heat. Which one would you suggest? The older 2010, or the 2011 with the i5 chip or the newest with the i7 chip?

    Hi, I would like to buy my first laptop computer, the 13 inch macbook air.
    My biggest concerns are:
    1. Which has the least amount of EMFs? I'm sensitive to that and have enjoyed my iPad (original) that has no EMF fields.
    2. Which runs the coolest?
    I want the 128 gig one. Which would fit my requirments, the 2010 with the 2 Core Duo, the 2011 I believe it is with the i5 chip, or the newest one with the i7 chip? From the reviews I have read, it sounds like the one with the i7 chip runs the hottest.
    I'm sure I am missing a whole lot of information, please fill me in!
    Thanks,
    Martha

    Changing the 13 inch screen resolution will unfortunately result in a less sharp display, simply because all these type of displays have an 'native' resolution which gives optimal results, leaving other settings less crisp. The 13 inch MBA panel has a native resolution of 1440x900, which is remarkable for a screen of that size (I have 17 inch widescreen monitors at work with that same resolution) but it can certainly be set at a lower figure.
    The one area where the trackpad has benefits over a mouse is that you can use multi-touch gestures, just as on the iPad. That's a feature I really like, particularly being able to zoom in and out and scroll up and down, though of course other gestures are supported too. As such then it does indeed work much like the touch screen capaibilities of an iPad.
    If you have a Mighty Mouse the one with the tiny scroll-ball on the top-front, then they are notorious for scrolling issues due to getting clogged up. They're not hard to clean, but the Mighty Mouse is notably inferior to the later Magic Mouse, which doesn't have a scroll-ball or wheel, but uses the whole top panel for scrolling using gestures in much the same way as a trackpad. I've found a Magic Mouse a good investment for any Bluetooth-capable Mac (which of course includes all MBA models).
    [ON EDIT]: The MBA doesn't come with Flash, but it is a free download from Adobe, and is very simple to install. Just make sure you get the installer from Adobe.com and not any other location since there is some malware which masquerades as a Flash installer but is not safe to install! Beware though that Flash is very processor intensive, and if anything will run the MBA fans up to speed, and heat the system up, it is that.
    Good luck with the readings!!

  • Want to get broadband, house doesn't have a main s...

    Hi,
    Am desperate to get broadband so I can get my games console online and not have to suffer from using my Netbook with a mobile broadband dongle.  However, my mum's house phone wiring is so ancient that we don't have a main phone socket.  We seem to have an old (52a?) junction box by the front door in the hallway and one in the living room (no phone in there, just an ancient 1960's/70's phone in the kitchen where you have to put your finger in a hole and move the dial thing around!).
    We have a cheap upstairs bedroom phone which has a phone socket, but know this is not a main socket as it was installed over 20 years ago when my mum was giving a phone as a present and there was already wiring into the bedroom already from the previous occupant).
    So, to get broadband will we need a main phone socket fitted downstairs? 
    Or will this secondary/extension socket be okay? (guessing it won't be from what I have tried to learn online)
    I called BT last week but just got a confusing sales patter.  They were advising purchasing infinity and the lady said that this would include installation of a main socket if required.  Is this right?  Is so it sounds like a good deal?
    If they do install this how would it effect the existing phones and wiring in the house?  Would they have to be ripped up and replaced?  How big a job would this be?
    Sorry for the length and amount of questions.  My mother is very scared of any sort of change so I need to convince her of the need to get broadband while reassure her it won't be a huge hassle!
    Help and advice would be much appreciated...

    Thanks sjtp,
    Sorry for being cluless, it is a minefield.
    The main reason for broadband is getting my XBox 360 online (and PS4 when it comes out hopefully).  I wouldn't be playing games online on a huge basis, it would mainly be for authenticating purchases online (I missed out on the Catwoman content on Batman: Arkham City and missions on Mass Effect 2 by not being online), downloading arcade titles and DLC missions for games I have bought on disc.  Gaming seems to be going very online-centric, even if you only want to play single player games! 
    It would also be used for basic Internet use on my Netbook, I'm not interested in downloading or watching movies or TV online.
    I have deduced that the microfilters with the BT HomeHub would fit the upstairs phone socket, but my concern is that this is not the main line and the seemingly main phone point is an ancient junction box it can't be connected to any filter.
    Do you think the normal BT broadband package would work as things stand, with just connecting the HomeHub to the upstairs socket?  Last thing I want is to go ahead and find out it doesn't work with the existing phone infrastructure aand that an engineer is required after all. 
    Sorry I have explained it so poorly!

  • Just recently getting error message when downloading podcasts.  Says "The iTunes Library file cannot be save.  You do not have enough access privileges for this operation."  Doesn't happen every time.  Using Windows 7.  What can I do?

    Just recently getting error message when downloading podcasts.  Says "The iTunes Library file cannot be save.  You do not have enough access privileges for this operation."  Doesn't happen every time.  Using Windows 7.  What can I do?  The files seem to be there but I don't know if they are being backed up to cloud.

    Hi, DickmoAZ.  
    Thank you for visiting Apple Support Communities.
    This sounds like a permission issue most likely with the iTunes Media folder.  Here is an article that will help you troubleshoot this issue.
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/ts1277
    Cheers,
    Jason H.

  • FTP get operation doesn't work. However put and syncRead works.

    Hello SOA Gurus,
    Here is the another strange challenge I faced today with FTP adapter.
    I have a JNDI which is commonly used to access an FTP server. Initially, I created one BPEL process that uses "put" operation to write a file into the FTP directory. It worked successfully.
    But when I used "get" operation with the same JNDI, it doesn't work there. However, I am consistently getting the below error messages in the server log:
    <Nov 28, 2014 4:20:48 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:20:48 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    <Nov 28, 2014 4:21:18 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:21:18 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    <Nov 28, 2014 4:21:48 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:21:48 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    <Nov 28, 2014 4:22:18 AM EST> <Notice> <Stdout> <BEA-000000> <<Nov 28, 2014 4:22:18 AM EST> <Warning> <oracle.soa.adapter> <BEA-000000> <FTP Adapter MercentPollerPOC Th
    e connection variable is null in postCall. This could be because of a call postCall w/o a preceeding call to preCall.>>
    Any help would be appreciated. Thanks in advance.

    Hello!
    Can you check if this oracle metalink note 754029.1 is applicable?
    Though it talks of very old version of SOA but the changes are advised to make on FTP server.
    Hope it helps!
    Thanks

  • In 2008 R2, I get Object doesn't support property or method PollResizeImages

    This is when I run a report from a reportviewer control to reporting services.  
    Another symptom is that images get cropped but if I refresh page cropping doesn't occur
    I have this version of SQL server 2008 R2
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor) 
    I am using the ReportViewer control to display this report
    I get this error  Line: 1  Error: Object doesn't support property or method 'PollResizeImages'
    It appears to be from this method
    function anonymous()
    this.PollResizeImages(oReportDiv,oReportDiv)
    Another environment with same sql server version doesn't get this error for same report

    Hi DenisLang,
    As far as I know, it is a known issue in SSRS. Please try to install the latest version of the Report Viewer Runtime to fix the issue.
    If the issue is persist, I recommend you that submit this suggestion at
    https://connect.microsoft.com/SQLServer/ . If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the
    level of service provided.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • I have to use an application for work that isn't supported in Mt. Lion and my 2008 Macbook doesn't have enough ram for Lion. Should I update ram or get a new computer?

    So, it would be a stretch to buy a new computer, but I could if I needed to. The fan on this computer gets a little loud and the computer will sometimes get hot, but it works fine. I don't want to invest in a computer that doesn't have long to live, but I also don't want to buy a new computer when I have a perfectly good one... Suggestions?
    The application is Sookasa.

    A loud fan could indicate a hardware issue which could only get worse when tampering with the RAM.
    Backup your data.
    What is the application, and version of application?  Perhaps we can find something that works with your operating system?   Go to Apple menu -> About This Mac to tell us your existing operating system.

  • Getting "Invalid event sync operation"

    Getting the following error when sync'ing with Treo 600 on PC:
    Oracle Date Book Conduit - Unable to synchronize this event: ''
    Oracle Date Book Conduit - <0010-00-00-00000016>Invalid event sync operation
    (000C-07-00-0000000E) (14)
    Calendar Sync Date Book Conduit synchronization failed
    No event was sync'ed over. This user's calendar was restored last week. She didn't have problem sync'ing before the restore. She had wiped away her datebook before she tried synch'ing.

    That is not easy. Oracle will support PDA's with the latest Palm OS or Pocket PC when they release the new collab suite version after this summer. You could also try Syncml which was recommended by Oracle Metalink:
    Did you already tried SyncML?. Works fine with my Dell AXIM X 50 and a Qtec phone/agenda PDA (both pocket PC 2003).
    SyncML requires:
    1. A SyncML client. For Palm / Pocket PC, you can use the Synthesis SyncML client from http://www.synthesis.ch. Som
    e mobile phones come with native SyncML clients.
    2. Data to be synced. In that case, this is Contacts, Tasks, Meetings from the Calendar Server.
    3. An HTTP connection: this can be via the craddle, via bluetooth, via GPRS, ...
    SyncML is not a Wireless protocol. It's a Sync protocol over IP.
    Important URLs:
    a. Synthesis Client:
    Direct URL: http://www.synthesis.ch/
    b. OTN setup page:
    Direct URL: http://www.oracle.com/technology/products/cs/user_info/ocalendar/html/sync_serv
    er_get_started.html
    c. Resource Kit:
    Oracle® Calendar Resource Kit,
    Release 2 (9.0.4.2)
    Part No. B10894-05
    Chapter 5 Oracle Sync Server
    Direct URL: http://download-west.oracle.com/docs/html/B10894_05/sync_server.htm#sthref96

  • How do I get messages to go back to an AIM account? It's only seeing the iPad's Facetime email address and not seeing the old AIM account name that is on my desktop. I am using my iMac using iChat to talk to a newer iMac that doesn't have iChat.

    How do I get messages to go back to an AIM account? It's only seeing the iPad's Facetime email address and not seeing the old AIM account name that is on my desktop. I am using my iMac using iChat to talk to a newer iMac that doesn't have iChat. We had this working using Messages and Facetime (on the new machine) talking to my existing iChat account. One day last week, when Facetime rang, my kids answered on the iPad. Dang! Now it's all fouled up! The new iMac won't see my AIM account name and shows that I'm offline, because the iPad is off. We were able to call using "most recent call" in Facetime, but now I can't go and control that new iMac remotely to help with some email concerns the user is having. I'm trying to not personalize this too much, but it's grandkids talking to Grandma and Mom and Dad trying to solve new machine hiccups. Normally, I could just go in via iChat and control the other machine and troubleshoot, but I can't do it with Facetime only. My buddy list doesn't see  the other computer even though we are connected on Facetime right now. My name is not highlighted for the other computer. What could have gone so wrong?
    Any help would be appreciated.

    How do I get messages to go back to an AIM account? It's only seeing the iPad's Facetime email address and not seeing the old AIM account name that is on my desktop. I am using my iMac using iChat to talk to a newer iMac that doesn't have iChat. We had this working using Messages and Facetime (on the new machine) talking to my existing iChat account. One day last week, when Facetime rang, my kids answered on the iPad. Dang! Now it's all fouled up! The new iMac won't see my AIM account name and shows that I'm offline, because the iPad is off. We were able to call using "most recent call" in Facetime, but now I can't go and control that new iMac remotely to help with some email concerns the user is having. I'm trying to not personalize this too much, but it's grandkids talking to Grandma and Mom and Dad trying to solve new machine hiccups. Normally, I could just go in via iChat and control the other machine and troubleshoot, but I can't do it with Facetime only. My buddy list doesn't see  the other computer even though we are connected on Facetime right now. My name is not highlighted for the other computer. What could have gone so wrong?
    Any help would be appreciated.

  • I have a Verizon IPhone 4 and i can't figure out how to get my ringtones from an app to my iTunes account, it doesn't have a tab for Ringtones! I have tried unplugging it and checking if would show up but it didn't, how do you enable the ringtone folder?

    I have a verizon IPhone and i can't figure out how to get my ringtones from the app to iTunes, my account doesn't have a ringtone section in the liRingtone Folder?brary, how do you enable the ringtone folder?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?

    I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?

    Hi Chris.
    It's asking you for my apple id password. not going to give that out, sorry.
    However I did try this projector on my mother in laws iphone 4 and on my old iphone 3. ipico software isn't needed. plug and play any video through standard movie player or camera saved video.
    I tried on my girls iphone 5 with the adapter. The ipico software and projector doesn't work on this phone.
    Hope this helped you. Better to buy a used iphone 3 or 4 and use it for video storage.
    I also found that the battery on these projectors are a joke (30-60mins max). I rigged a longer lasting battery on the outside and keep it plugged in while using. This doesn't charge the phone though so I replaced the battery in the old iphone 3 and now get at least a full length movie from it. Great in bed projected onto the ceiling.
    William
          From: Apple Support Communities Updates <[email protected]>
    To: blackyam <********@yahoo.com>
    Sent: Tuesday, January 13, 2015 4:36 AM
    Subject: https://discussions.apple.com/iPhone Accessories - I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one? https://discussions.apple.com/f9xu1m-7t1g5-gcrif
    Apple Support Communities updates#yiv9918778479 a, #yiv9918778479 a.yiv9918778479aapl-link, #yiv9918778479 a.yiv9918778479aapl-link:link {text-decoration:none;color:#08c;}#yiv9918778479 p #yiv9918778479 a.yiv9918778479aapl-link:hover {text-decoration:underline;}#yiv9918778479 body  _filtered #yiv9918778479 {}#yiv9918778479 _filtered #yiv9918778479 {}#yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 #yiv9918778479 _filtered #yiv9918778479 {}#yiv9918778479 td .filtered99999 {padding-left:20px!important;padding-right:20px!important;}#yiv9918778479 table #yiv9918778479 table .filtered99999 , #yiv9918778479 table .filtered99999 tbody, #yiv9918778479 table .filtered99999 tr, #yiv9918778479 table .filtered99999 td #yiv9918778479 td img {max-width:100%!important;height:auto!important;}#yiv9918778479 td .filtered99999 {}#yiv9918778479 a.yiv9918778479button #yiv9918778479
    |
    |
    |
      |
    |
    |
    Apple Support Communities
      |
    |
    |
    Chris  has posted in the iPhone Accessories community.
      |
    |
    |
    |
    I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?
    blackyam...thank you for the ipico software.  When I try to authorize my computer for it it says that I need to fill in the password for *******@yahoo.com.  I can't seem to get it to work with my email and password.  Do you know anything about this or do you know *******@yahoo.com's password?thx, Chris
      |
    |
    |
    To post a reply, go to the discussion in Apple Support Communities.
    |
    |
    You are receiving this email from Apple Support Communities. You can change your email preferences in your Apple Support Communities Profile.
    TM and copyright © 2014 Apple Inc. 1 Infinite Loop, MS 96-DM. Cupertino, CA 95014.
    All Rights Reserved
    Privacy Policy
    Terms of Use
    Apple Support
    <Email Edited by Host>

  • Hi... I've had my IPhone 4S since January 13, and it doesn't have the option to use it as a wifi hotspot? When all my friends iphones do. Is there a way to install in onto my phone? Or what do I need to do to get it??

    Hi... I've had my IPhone 4S since January 13, and it doesn't have the option to use it as a wifi hotspot? When all my friends iphones do. Is there a way to install in onto my phone? Or what do I need to do to get it??
    Thanks

    Whether you can use your phone in this way is entirely the responsibility of your phone company/carrier.  You need to contact them to see if you can add tethering to your phone plan.  Be warned though that it could get rather expensive, so if you don't really need it, then do without, but in any instance, you need to contact your phone carrier.

  • HT201365 Just dowloaded the new ios 7, and i can't seem to get any apps to download in the app store. It doesn't have the meter bar anymore and all it does is have a Blue circle spin and spin for over 5 or 10 min. without nothing happening! Help !!!

    Just downloaded the new ios 7, and I can't seem to get any apps to download in the app store. It doesn't have the meter bar anymore and all it does is have a blue circle spin and spin for over 5 min. without nothing happening! Help!!!

    Hi,
    This is how App Store app shows now when an app is downloading. If you cannot download anything, go to Settings > iTunes & App Store, remove your Apple ID, and set it again. That should work.
    Hope that helps.

  • I purchased my iPhone from UK which is unlocked but Now I am back to My Origin i.e INDIA and unfortunately my iPhone Display get damaged and Now I have to Repair it but..... The Problem is "iSTORE in India Doesn't Helping me in this issue"

    I purchased my iPhone from UK which is unlocked.
    But Now I am back to My Origin Place i.e INDIA.
    And unfortunately my iPhone Display get damaged..  and Now I have to Repair it but.....
    The Problem is "iSTORE in India Doesn't Helping me in this issue".
    I would request APPLE please get this FIX as I am also your customer and now it is globalization.
    SO please find any way to get this fixed...
    Apple Customer care Please send me any Services note That I can show to iStore in India i.e (In Korum mall Thane, Mumbai, Maharashtra, India )
    So I can get my dispaly fixed in INDIA itself.
    Requested to please help me out of this issue..
    Thanks
    APPLE user
    sonu.mas007

    They can provide some kind of way towards this solutions...
    eg:
    1) Accept my UK iPhone in India courier it to Purchased Place (Repaired it)
    2) Accept my UK iPhone in India Take some difference assign me India iPhone.
    3) Accept my UK iPhone in India give me any option to ugreade to iPhone 5 (Indian).
    4) Accept my UK iPhone in India give me some Receipt (Courier me My new iPhone from UK).
    5) Approve my VISA for going to UK again as it not easy for INDIAN to go there with some kind of this Reason.
    6) Give the Postal Address where we can send our APPLE to get only Service and they can send it back to us if it got reparied.
    As no one would like to go UK only to Purchase APPLE..
    There are some personal reason they have to go to Other countries for ... and If some one is FAN of APPLE like me would do the same mistake that I have done..
    7) If the APPLE wanted to serve their customer they would have get to the solutions with their excellent mind.
         As far as I am concern I am just the USER of my FAV APPLE but.. .. I guess this policy would not keep me as the SAME FAN of APPLE as I am now...
    If this is not going to get solved I guess I have to start with other BRAND Like SAMSUNG S4 where I can get everything in my STATE..
    But YEH it not a right was to have this BAD policy.
    I just dont know why they are not coming ip with great solution for this issue in this tecnology world.
    Any help to find other BEST Brand who has awesome services..

Maybe you are looking for

  • Acrobat 9 Pro Crashes in Comments List View?

    Acrobat Pro (9.3.2) on Snow Leopard (10.6.3).  Often the PDFs I view were created by me and returned to me with comments from clients, typically on a PC.  I view and check-off their comments using Comments > Comment View > Show Comments List. After I

  • Networked HP 2575 Photosmart not printing. Vista PC with SP1: ANS=SP2 upgrade.

    About a week ago my Vista PC could no longer send print to my networked 2575 - "error - printing", whilst another Vista PC on the network remained able to print. I am configured for auto updates from M/soft. After trying the gamut of printer problem

  • Insufficient privilege when run SQL in PL/SQL Developer

    Hi, My developer had strange behavior when run below SQL from PL/SQL Developer. It will come out with "*Insufficient Privileges*" message. SELECT Fiscal FROM pmaps_fiscalweekonly WHERE intend >= trunc(sysdate) AND rownum < 5 ORDER BY intend ASC; Same

  • Cluster database to standalone database

    Hi, I want to do cluster database(oracle9i) to standalone database(oracle9i) kindly provide me the steps for the same. Thanx, amit [email protected]

  • To design webdynpro application

    How to design a complete solution? should I create different projects hirarchy, having different .ear files deployed on server? or having only one .ear file.. with multiple webdynpro applications inside it?