I got some kind of error message and I don't know what to do with it.

html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en' xmlns:fb='http://www.facebook.com/2008/fbml' >
<HEAD>
<TITLE>Congratulations!</TITLE>
<STYLE TYPE="text/css">
.friendly
display: none;
.original
display: block;
</STYLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<CENTER>
<BR>
<TABLE BGCOLOR=#FFCC00 BORDER=0 CELLPADDING=1 CELLSPACING=0>
<TR>
<TD>
<TABLE BORDER=0 CELLPADDING=4 CELLSPACING=0 WIDTH=100%>
<TR BGCOLOR=#CC0000>
<TD ALIGN=center>
<FONT COLOR=FFFFFF FACE=verdana,sans-serif SIZE=+3><B>You're almost done!</B></FONT>
</TD>
</TR>
<TR BGCOLOR=#FFFFFF>
<TD ALIGN=center>
<BR>
<FONT FACE=verdana,sans-serif SIZE=-1><B>
Please take a few moments to respond to our Special Survey below. You Must Keep Going To Qualify For Your Gift!<P><B>Tip</B>: Check "Yes" to get great FREE STUFF & Special Deals - As Many as You Wish!<P></FONT>
<BR><BR>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
<TABLE BORDER=0 WIDTH=580>
<TR>
<TD ALIGN=center>
<FONT FACE=verdana,sans-serif SIZE=-2>
You must be 13 years or older.
<P>
<A HREF="info.htm?tp=privacy&SID=e7dj34i4uuq5p5rkjpefnu6g26" TARGET=_blank onClick="make_x_win=0;">Privacy Policy</A> | <A HREF="info.htm?tp=tos&SID=e7dj34i4uuq5p5rkjpefnu6g26#gift" TARGET=_blank onClick="make_x_win=0;">Terms & Conditions</A>
<BR>
Copyright © 2005 Clipngocoupons. All rights reserved.
</FONT>
</TD>
</TR>
</TABLE>
</CENTER>
<!-- - - -->
<SCRIPT>
if(document.getElementById('processing')) { document.getElementById('processing').style.display = 'none'; }
if(document.getElementById('submit')) { document.getElementById('submit').style.display = 'none'; }
</SCRIPT><IMG BORDER=0 HEIGHT=1 WIDTH=1 SRC="http://www.theuseful.com/setcookie.htm?user_pin_id=207945910&pin_key=216256&email=[email protected]&email_key=e24a56a59cd7525fcf0c4b9ad62d71dc"> </BODY>
</HTML>

I'm guessing you did not buy the iPad from Apple. If you did not buy it from Apple, it may very well have an older software version. Only iOS 5 or later is PC independent. If you have an earlier version, a computer with iTunes loaded is required.
 Merry Christmas

Similar Messages

  • I am not able to open your answer for some reason my computer is not opening it in Explorer, it's not responding and I keep getting error messages and I don't know how to open it in another browser when Explorer experiencing issues. Heather

    I am not able to open your answer for some reason my computer is not opening it in Explorer, it’s not responding and I keep getting error messages and I don’t know how to open it in another browser when Explorer experiencing issues.
    Heather

    If you  have IE version 10 go to TOOLS and change the option to use Compatibility View

  • My macbook pro will not boot. It gets the grey screen with the apple until the bar is half way across and then shuts down. The only screen I can get to is in safe mode and I don't know what to do with that

    my macbook pro will not boot. It gets the grey screen with the apple until the bar is half way across and then shuts down. The only screen I can get to is in safe mode and I don't know what to do with that

    Mac OS X: Gray screen appears during startup - Apple Support

  • I tried to download the Firefox Add on Web Developer and I got an error message and I don't know how to proceed.

    Hi
    I have Firefox 3.0.1 and then it also says Mozilla 5.0. So first I don't even know if this is the right product but I didn't know what else to do.
    I'm trying to I tried to download the Firefox Add on Web Developer and I got an error message of: Firefox could not install the file at http://releases.mozilla.org/pub/mozilla.org/addons/60/web_developer-1.1.9-fx+sm.xpi because: Unexpected installation error Review the Error Console log for more details. -203
    I've tried it like 3-4 times. I don't know what I'm doing wrong.
    Any suggestions???
    THANK YOU :-)
    Erin

    You should update to the latest Firefox 3.6.x version:
    *http://www.mozilla.com/firefox/all.html
    *http://www.mozilla.com/firefox/all-older.html
    See:
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox

  • Error   1009 and I don't know what to do exactly, plz help me

    hi
    I wish that you could help me
    I am a beginner in actionscript 3.0, and I have a main swf file, with a menu and several buttons, when I click on each button, a new swf should be loaded, and the menu is resized and goes to the top left of the page, and if I click on the menu, it should come back..
    the problem is that when I click on the first button, everything works well, but when I click on another button, I get this error:
    TypeError: Error #1009: Il est impossible d'accéder à la propriété ou à la méthode d'une référence d'objet nul.
        at s_fla::MainTimeline/s_fla::__setProp___id0__Scene1_texte_2()
        at s_fla::MainTimeline/s_fla::frame2()
    I understood that the problem is due to the file which is displayed before it has been loaded.
    I also found that I have to use the function Event.ADDED_TO_STAGE, but I don't know where to put it??
    could you help me please?
    here is my code:
    function size(e:MouseEvent):void{
        menu_mc.gotoAndPlay(2);
        menu_mc.buttonMode = true;
        menui_mc.addEventListener(MouseEvent.CLICK, showmenu);
        menu_mc.button01_btn.removeEventListener(MouseEvent.CLICK, size);
        menu_mc.button02_btn.removeEventListener(MouseEvent.CLICK, size);
       menu_mc.button03_btn.removeEventListener(MouseEvent.CLICK, size);
    addChild (cliploader);
    function size(e:MouseEvent):void{
        menu_anatomie_mc.gotoAndPlay(13);
        menu_mc.removeEventListener(MouseEvent.CLICK, showmenu);
        menu_mc.button01_btn.addEventListener(MouseEvent.CLICK, size);
        menu_mc.button02_btn.addEventListener(MouseEvent.CLICK, size);
        menu_mc.button03_btn.addEventListener(MouseEvent.CLICK, size);
        removeChild (cliploader);
    menu_mc.button01_btn.addEventListener(MouseEvent.CLICK, loadpage);
    menu_mc.button02_btn.addEventListener(MouseEvent.CLICK, loadpage);
    menu_mc.button03_btn.addEventListener(MouseEvent.CLICK, loadpage);
    menu_mc.button01_btn.page = "file01.swf";
    menu_mc.button02_btn.page = "file02.swf";
    menu_mc.button03_btn.page = "file03.swf";
    function loadpage(e:MouseEvent):void{
        cliploader.myldr.source = e.currentTarget.page;
    please tell me what to do exactly
    P.S: cliploader is a UI loader which is present on the scene
    in my swf files, I have flvplayback which loads a flv files, and I think this is the source of the problem, because I have tried the same thing with a simple swf file which maybe loads quickly, and I didn't get this error
    thank you in advance

    thanks
    I think that the error is in the file that I want to load, in this file I have a flvplayback that I named myplayer, which is in the third frame, and because the video doesn't stop even if I move to another frame, I had to add this code in the third frame
    next_btn.visible = true;
    prev_btn.visible = true;
    myplayer.addEventListener(Event.REMOVED_FROM_STAGE, stopPlay);
    function stopPlay(e:Event)
    myplayer.stop();
    myplayer.stop(); this is line 7 on frame 3
    when I publish this file, it works
    but when I try to play it from the menu in the main swf file I get the error, how can I fix it please?
    can I make this manually, or I'll have the same problem?
    as I said, I tried to load different swf files from the main menu and I didn't have this problem (because there were no video players), so I think the problem is caused by the video player?
    thank you

  • HELP!  My Webpage started giving me an error message and I don't know why!

    Hi! I'm brand new to using Mac's and iWeb and I'm trying to set up a website for my business. I had completed a welcome page and published earlier today. A friend of mine was able to go to the URL I gave her and view my page without any problems. Now, though, she and I get the following message . . .
    "We're sorry but we can't find the iWeb page you've requested. It's possible that:
    · The address was entered incorrectly. Check your spelling and try again.
    · The .Mac member of this name has either created a page and removed it or has never published an iWeb site.
    · There is no .Mac member of this name. If you'd like this member name for yourself, sign up for a .Mac account right now and have your own iWeb site in minutes."
    When I log in to my .mac account, it shows a welcome page as being present, but when I click on that I get this same message. Does anyone have any idea of what is going on???? If so, would you mind helping me out with this? Please keep in mind I'm new to this software when you explain things and don't be afraid to talk to me like I've got no clue what I'm doing. Thanks a bunch!
    Soulhorse Equine
    Mac Book   Mac OS X (10.4.6)  
    Mac Book   Mac OS X (10.4.6)  

    Anyway,
    we're typing in the URL correctly,
    That's what they all say:-)
    Seriously, it happens all the time that people think they are doing that right when they are not. Just as people come here all the time complaining that their site is not updating when in fact it is just that they need to clear their browser cache.
    Here are some different url's you could try, making sure each time that they are exactly correct, including capitalization.
    http://web.mac.com/username
    http://web.mac.com/username/iWeb
    http://web.mac.com/username/iWeb/sitename
    where sitename is the exact name of the site inside the iWeb app.
    http://web.mac.com/username/iWeb/sitename/pagename.html
    where pagename is the exact name of the topmost page inside the iWeb app.

  • I get this message and I don't know what to do about it

    This computer's local hostname " Ians- iMac -226.local is already in use on this network.The name has been changed to "Ians-iMac-309.local"
    To change the local hostname,open System Preferences and click Sharing,then click "Edit" and type the name in the LocalHostname field.
    I've done this about a dozen times only the numbers change every time the window pops up!
    please help

    There are several possible causes for this behavior.
    1. Two (or more) computers on the local network have the same Bonjour name, such as "X's-MacBook-Pro.local". Resolve the name conflict by renaming one or more of them in the Sharing preference pane.
    2. You have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. If applicable, disconnect the Ethernet cable or turn off Wi-Fi.
    3. A Mac wakes from sleep due to network traffic. This is a bug in OS X that may only affect some models.
    4. A device that gets its network address from the router wakes from sleep, and the address it was using before has been assigned to another device.
    5. A third-party wireless router has incompatible settings or firmware. In that case, refer to the manufacturer or ISP for support. Restarting the router may help, temporarily.
    6. See also this support article.

  • I have a unwrapped copy of Mac OSX Tiger and i don't know what to do with it

    Hey everyone,
    So i don't have a Macpowerbook and i have a copy of mac osx tiger. It was originally my mom's dad's. How ever he has passed away and my mom's mom wants us to sell the osx tiger. What should i do?

    If it is a grey colored disc then it is machine specific and only useful to somebody who has the machine model for which it was made.  If it is black then it is a retail install disc.
    2 years ago you could have sold a retail disc at a premium price.  Now I am not so sure.  Tiger is now 4th generation behind Lion, Snow Leopard and Leopard.  Apple stopped supporting Tiger years ago and fewer and fewer other software packages are being issued that still run on Tiger.  Firefox stopped supporting Tiger, Flash (used on just about every web site out there) is no longer being updated, etc.  I think the writing is on the wall.  One of my favorite web sites that uses Flash stopped working for me yesterday.
    A machine specific disc is really handy for somebody who has that machine and completely useless to anybody who doesn't.
    The best thing to do is go on e-bay and see what is actually being paid (not asked) for Tiger, remembering to make sure it matches the copy you have.  If you do decide to sell it, make sure you tell the purchaser exactly which model disc it is.  We've seen many people on here who bought a disc only to find it wouldn't install on their computer.

  • I subscribed to Creative Cloud and i don't know what to do with it?

    How do I start creating a website and does adobe offer any technical support?

    If you wish to learn any particular product, I would suggest you to refer below link
    Creative Cloud tutorials | How to get started with Creative Cloud Apps

  • Okay Im thinking I made a mistake, I purchased and ipad 2 and now don't know what to do with it. I turned it on and it won't do anything but show the plug and itune symbol?  Can someone tell me what to do?

    I don't know what to do with my ipad2?

    I'm guessing you did not buy the iPad from Apple. If you did not buy it from Apple, it may very well have an older software version. Only iOS 5 or later is PC independent. If you have an earlier version, a computer with iTunes loaded is required.
     Merry Christmas

  • Some kind of error message...not sure what to do!

    So my 20GB iPod is showing some kind of error message when I either try to turn it on or charge it. The error is a picture of a little iPod who has an unhappy looking face and there is an exclamation point next to it. I have no idea whats going on with the iPod but I have had it for like 2 years so I'm not sure if it's the battery going bad or what.

    See these troubleshooting articles.
    My iPod is sad.
    iPod displays a "sad iPod" icon.
    What does this picture on my iPod mean?
    Also, there is a pretty comprehensive post written by another forum member which is about the sad iPod icon or the folder and ! icon. Be aware that it's quite involved and contains some info that will almost certainly void the warranty. If your iPod is still within the warranty period, you should use that option first.
    The Sad iPod/folder and ! icon.
    You can arrange online service here.
    Service request.

  • I am having an installation failure issue with my itunes 11 software.  File is corrupted and i don't know what to do.  I've un-install and re-installed the software three times and continue to get the same error message.  It states that "This copy of ITun

    I am having an installation failure issue with my itunes 11 software.  File is corrupted and i don't know what to do.  I've un-install and re-installed the software three times and continue to get the same error message.  It states that "This copy of ITunes is corrupted or is not installed correctly.  Please reinstall Itunes"
    iMac, iOS 6

    HI,
    If your old version of iTunes is still working - then I sugest you stick with that.
    iTunes 11 is a lousy update - It will not retain your playlists, you can't find and delete duplicates... and a whole arry of oyher issues. (have a look around this forum to see how many issues IT11 gives people)
    Just a friendly advise and warning :-)

  • I can't sync my iPad to the iTunes it's give me an unknown error  message 0xe8000012 I don't know how to fix it and where is the problem could be need format or the problem is in the charging port please can any one help me

    I can't sync my iPad to the iTunes it's give me an unknown error  message 0xe8000012 I don't know how to fix it and where is the problem could be need format or the problem is in the charging port please can any one help me

    Unknown Error containing "0xE" when restoring
    To resolve this issue, follow the steps in iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting. If you have a Windows computer with an Intel® 5 series/3400 series chipset, you may need updates for your chipset drivers. See iTunes for Windows: Issues syncing iOS devices with P55 and related Intel Chipsets for more information.
    From Here  >  http://support.apple.com/kb/TS3694

  • Disteller error 5 and i don't know how to fix.  can anyone provide guidance?

    disteller error 5 and i don't know how to fix.  can anyone provide guidance?

    What version of Distiller Server do you run? Or is this the regular Distiller, on a server? What triggers the error?

  • I'm downloading from Itunes and have come across error = 404 and 403. Anyone know what this is? Corrupted file maybe?

    I'm downloading from Itunes and have come across error = 404 and 403. Anyone know what this is? Corrupted file maybe?

    It means that iTunes looked for something on the iTunes Store servers and either it wasn't there(404) or the iTunes Store servers denied access to it(403). These can't be resolved at your end.
    (62039)

Maybe you are looking for

  • Creative Cloud desktop app won't sync or recognise apps

    While running OSX 10.6.8 I installed CC apps. But CC desktop app needed newer OS. So I upgraded to 10.8.4 and installed CC desktop app. It prompts me to update my CS6 software (and I can't make these prompts go away) and tells me I have no apps insta

  • Bought a game and won't work

    I just purchased a game from iTunes. I have a 30 gig video ipod with iTunes 7. when I go to the Games tab to Sync games, it says " a software update is required for iPod to support games etc. Then I go to my summary tab and it says " Your iPod is up

  • My i-mac keeps dropping wi-fi signal

    My i-mac keeps dropping wi-fi signal.

  • Safari Download Message

    I recently switched to Firefox as my default Browswer. However, each time I turn my Mac on, I get a message from Safari, saying "Safari has downloaded this application (Firefox) do you want to open it?" How do I get rid of this message, so the Mac wi

  • New iMac owner, but a few questions!

    Hey all, just got a Brand New iMac yesterday, first Mac computer owned and loving it so far, but I have a few questions. iChat: I have my AIM name on there, but whenever someone sends me a message, a very small box pops up asking if I want to accept