I cannot get this code to work...

This code is annoying me to no end. I cannot seem to get it
to work. I can get it to work, but all of my buttons disappear,
along with everything else. EXCEPT, it keeps my home button, and
makes two of them.... Now,I have no idea why, but help would be
VERY appreciated.
<SCRIPT language=JavaScript>
dCol='404040';//date colour.
fCol='0000FF';//face colour.
sCol='FF0000';//seconds colour.
mCol='000000';//minutes colour.
hCol='000000';//hours colour.
ClockHeight=30;
ClockWidth=30;
ClockFromMouseY=100;
ClockFromMouseX=200;
//Alter nothing below! Alignments will be lost!
d=new
Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY");
m=new
Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTO BER","NOVEMBER","DECEMBER");
date=new Date();
day=date.getDate();
year=date.getYear();
if (year < 2000) year=year+1900;
TodaysDate=" "+d[date.getDay()]+" "+day+"
"+m[date.getMonth()]+" "+year;
D=TodaysDate.split('');
H='...';
H=H.split('');
M='....';
M=M.split('');
S='.....';
S=S.split('');
Face='1 2 3 4 5 6 7 8 9 10 11 12';
font='Arial';
size=1;
speed=0.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font face="+font+" size="+size+"
color="+fCol+"><B>";
props2="<font face="+font+" size="+size+"
color="+dCol+"><B>";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
currStep=0;
y=new Array();x=new Array();Y=new Array();X=new Array();
for (i=0; i < n; i++){y
=0;x=0;Y
=0;X=0}
Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();
for (i=0; i < D.length; i++){Dy
=0;Dx=0;DY
=0;DX=0}
if (ns){
for (i=0; i < D.length; i++)
document.write('<layer name="nsDate'+i+'" top=0 left=0
height='+a+' width='+a+'><center>'+props2+D
+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer name="nsFace'+i+'" top=0 left=0
height='+a+'
width='+a+'><center>'+props+Face+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer name=nsSeconds'+i+' top=0 left=0
width=15 height=15><font face=Arial size=3
color='+sCol+'><center><b>'+S
+'</b></center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer name=nsMinutes'+i+' top=0 left=0
width=15 height=15><font face=Arial size=3
color='+mCol+'><center><b>'+M+'</b></center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer name=nsHours'+i+' top=0 left=0
width=15 height=15><font face=Arial size=3
color='+hCol+'><center><b>'+H
+'</b></center></font></layer>');
if (ie){
document.write('<div id="Od"
style="position:absolute;top:0px;left:0px"><div
style="position:relative">');
for (i=0; i < D.length; i++)
document.write('<div id="ieDate"
style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+pro ps2+D+'</B></font></div>');
document.write('</div></div>');
document.write('<div id="Of"
style="position:absolute;top:0px;left:0px"><div
style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="ieFace"
style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+pro ps+Face
+'</B></font></div>');
document.write('</div></div>');
document.write('<div id="Oh"
style="position:absolute;top:0px;left:0px"><div
style="position:relative">');
for (i=0; i < H.length; i++)
document.write('<div id="ieHours"
style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+ hCol+';text-align:center;font-weight:bold">'+H+'</div>');
document.write('</div></div>');
document.write('<div id="Om"
style="position:absolute;top:0px;left:0px"><div
style="position:relative">');
for (i=0; i < M.length; i++)
document.write('<div id="ieMinutes"
style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+ mCol+';text-align:center;font-weight:bold">'+M
+'</div>');
document.write('</div></div>')
document.write('<div id="Os"
style="position:absolute;top:0px;left:0px"><div
style="position:relative">');
for (i=0; i < S.length; i++)
document.write('<div id="ieSeconds"
style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+ sCol+';text-align:center;font-weight:bold">'+S+'</div>');
document.write('</div></div>')
(ns)?window.captureEvents(Event.MOUSEMOVE):0;
function Mouse(evnt){
ymouse =
(ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;
xmouse =
(ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
function ClockAndAssign(){
time = new Date ();
secs = time.getSeconds();
sec = -1.57 + Math.PI * secs/30;
mins = time.getMinutes();
min = -1.57 + Math.PI * mins/30;
hr = time.getHours();
hrs = -1.575 + Math.PI *
hr/6+Math.PI*parseInt(time.getMinutes())/360;
if (ie){
Od.style.top=window.document.body.scrollTop;
Of.style.top=window.document.body.scrollTop;
Oh.style.top=window.document.body.scrollTop;
Om.style.top=window.document.body.scrollTop;
Os.style.top=window.document.body.scrollTop;
for (i=0; i < n; i++){
var F=(ns)?document.layers['nsFace'+i]:ieFace
.style;
F.top=y + ClockHeight*Math.sin(-1.0471 +
i*Split*Math.PI/180)+scrll;
F.left=x
+ ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180);
for (i=0; i < H.length; i++){
var HL=(ns)?document.layers['nsHours'+i]:ieHours.style;
HL.top=y
+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;
HL.left=x+HandX+(i*HandWidth)*Math.cos(hrs);
for (i=0; i < M.length; i++){
var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes
.style;
ML.top=y+HandY+(i*HandHeight)*Math.sin(min)+scrll;
ML.left=x
+HandX+(i*HandWidth)*Math.cos(min);
for (i=0; i < S.length; i++){
var
SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds.style;
SL.top=y
+HandY+(i*HandHeight)*Math.sin(sec)+scrll;
SL.left=x+HandX+(i*HandWidth)*Math.cos(sec);
for (i=0; i < D.length; i++){
var DL=(ns)?document.layers['nsDate'+i]:ieDate
.style;
DL.top=Dy +
ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;
DL.left=Dx
+ ClockWidth*1.5*Math.cos(currStep+i*Dsplit*Math.PI/180);
currStep-=step;
function Delay(){
scrll=(ns)?window.pageYOffset:0;
Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);
Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);
for (i=1; i < D.length; i++){
Dy=Math.round(DY
+=(Dy[i-1]-DY)*speed);
Dx
=Math.round(DX+=(Dx[i-1]-DX
)*speed);
y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
for (i=1; i < n; i++){
y=Math.round(Y
+=(y[i-1]-Y)*speed);
x
=Math.round(X+=(x[i-1]-X
)*speed);
ClockAndAssign();
setTimeout('Delay()',50);
if (ns||ie)window.onload=Delay;
</SCRIPT>

That is a problem with the Speed Dial extension.
See [[Troubleshooting extensions and themes]]

Similar Messages

  • Need help getting this code to work

    I am trying to get this code to work using "if else statment" but it will only do the first part and not do the second part in the else statement. Can anyone help me out? Here is the code:
    var R1 = this.getField("Registration Fees1");
    var R2 = this.getField("Registration Fees2");
    var R3 = this.getField("Registration Fees3");
    var R4 = this.getField("Registration Fees4");
    var R0 = 0
    if (R0 == 0)
      event.value = Math.floor(R1.value);
    else
      event.value = Math.floor(R2.value + R3.value + R4.value);
    I did notice that if I fiddled around this this part:
    if (R0 == 0)
    sometimes I can get the second part to work but not the first. I need it to do either or and this is getting frustrating.
    I might also not even need "var R0 = 0". I put that there for the condition part. If that is what is causing the problem, I can take it out. But then what would the condition be? For this form, the default is 0 and then the calculation follows by user clicking on different prices. The first part is if they want to pay for the full conference and the second part is if they want to pay for either Monday, Tuesday or Wednesday or 2 of the 3 days. Is it possible to get this to work with both parts together? I am still stuck on getting just one or the other working. Any help would be greatly appreciated. Thanks in advance.

    I have posted this on another message board and a user by the name of gkaiseril offered this solution but it hasn't worked either.
    // all four days
    var R1 = this.getField("Registration Fees1").value;
    // Monday
    var R2 = this.getField("Registration Fees2").value;
    // Tuesday
    var R3 = this.getField("Registration Fees3").value;
    // Wednesday
    var R4 = this.getField("Registration Fees4").value;
    var Fee = 0
    event.value = ''; // default value
    if (R1 != 'Off') {
      Fee = Number(R1) + Fee;
    } else {
      if(R2 != 'Off') {
         Fee = Number(Fee) + R2;
      if(R3 != 'Off') {
         Fee += Number(R3);
      if(R4 != 'Off') {
         Fee = Number(R4) + Fee;
    event.value = Fee;

  • I am having problems getting this code to work.

    public class Polar {
         public static void main(String[] args) {
              int angle;
              int distance;
              int x1;
              int y1;
         public Polar (int angle, int distance, int x1, int y1) {
              this.angle = angle;
              this.distance = distance;
              this.x1 = x1;
              this.y1 = y1;
         public void printIt() {
              System.out.println(" Angle " + this.angle);
         //int new x1() {
         //     return 1;
    this part below, the instructor couldn't get to work and he was going to try to figure out what was wrong.
         /*public int newX(int angle; int distance; int x1; int y1) {
              return (int) (distance * Math.cos(toRadians(angle)));
         public int newY(int angle; int distance; int x1; int y1) {
              return (int) (distance * Math.cos(toRadians(angle)));
    I'm getting the error messages that it can't find the symbol variable for angle, distance, x1 and y1 on lines 13 thru 19. I also have to figure out a loop to make it do points 10 times.
    Can anyone help me figure out what I'm doing wrong?
    TIA

    amerintconcepts wrote:
    Whoa! When I added that other coma and went back and compiled I got this:
    --------------------Configuration: PolarTest - JDK version 1.5.0_06 <Default> - <Default>--------------------
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:13: cannot find symbol
    symbol : variable angle
    location: class Polar
    this.angle = angle;
    ^
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:14: cannot find symbol
    symbol : variable distance
    location: class Polar
    this.distance = distance;
    ^
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:15: cannot find symbol
    symbol : variable x1
    location: class Polar
    this.x1 = x1;
    ^
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:16: cannot find symbol
    symbol : variable y1
    location: class Polar
    this.y1 = y1;
    ^
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:19: cannot find symbol
    symbol : variable angle
    location: class Polar
    System.out.println(" Angle " + this.angle);
    ^
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:28: cannot find symbol
    symbol : method toRadians(int)
    location: class Polar
    return (int) (distance * Math.cos(toRadians(angle)));
    ^
    C:\Documents and Settings\Vicki\Desktop\Student Files\PolarTest\src\Polar.java:33: cannot find symbol
    symbol : method toRadians(int)
    location: class Polar
    return (int) (distance * Math.cos(toRadians(angle)));Oh, that's because you've put all those variables in your main method, rather than as fields of the class, which is what you meant to do. Compilers never lie!

  • Adobe PSE 8 + Epson Stylus Photo PX710W - Cannot Get This Combo to Work

    Hi All
    Apologies for length of posting but I am really at the end of my tether with this. I should say that prints from this printer have not impressed me even from when I first received it about a month ago when I was printing from Epson Easyprint software. They looked washed out and not at all vibrant and I was using Epson inks and papers. However things got a whole lot worse when I started to use PSE8 which gave prints that were far darker than those on screen. Interestingly the best prints so far came from me simply inserting my SD card directly into the printer this morning but obviously that gives little-to-no control over manipulation.
    So, if somebody could help me I would really appreciate it. Here are my latest settings:
    Snow Leopard 10.6.4
    Macbook Pro 2.66 GHz Intel Core Duo
    Epson Stylus Photo PX710W
    Adobe PSE 8 (Mac)
    Note that I spent the whole of yesterday working on this to the stage where I uninstalled and reinstalled all of the Epson stuff. I also consulted the following link (and related links) and downloaded the latest Mac Updater from the Epson US site.
    http://discussions.apple.com/message.jspa?messageID=10609503
    My latest print driver from the Epson CD is showing as version 6.61
    I also loaded Epson ICC profiles
    I have calibrated my monitor using the Eye-One display 2.
    When I print in PSE I am choosing:
    Colour Settings: Always Optimise Colour for Computer Screens (I chose this because my photo file is showing as sRGB)
    Colour Management:
    Colour Handling: Photoshop Handles Colour (I disabled Printer Colour Management in another menu)
    Image Space: sRGB IEC61966-2.1
    Printer Profile: SPPXTX 810 710 Epson Glossy
    Rendering Intent: Relative Colorimetric
    I truly hope this is a case of user error on my part so all advice welcome. Or just let me know if oyu know of a better printer:)
    Many thanks
    L

    I also had enough with Epson Stylus Photo PX710W... I am buying a new printer. I have tried everything to make it print from photoshop nice vivid colors, if you consider i am using a very well calibrated monitor special for video editing. i used also Dekke settings for Colors and are not even close to the original when printed and i can't seem to figure out whats the problem. I disabled printer color management and let photoshop handle it. I tried Adobe RGB, i tried Epson Standar bla bla bla... I searched the subject very deeply as to inform everybody before posting anything that i have no problem with my videos whatsoever. I have tried numerous settings (almost all photoshop could offer) and have consumed a lot of ink and printed thousands the same picture to compare the settings and wrote with a marker on it each times the combination of settings that i did. Not even close... I realized only one thing just to also let others know and get them out of trouble... Epson Stylus Photo PX710W + Mac = Disaster! Good for windows yes, but buying a Epson Stylus Photo PX710W for your Mac? FORGET IT! I'm throwing it to the waste bin or i will just give it away to someone for free.

  • :( I Just can't get this code to work (Help plzzzz)

    I was assigned a final exam project, but most of the stuff we never actually saw in class, so I just have to figure it out for myself.
    The part I'm stucked in (among other stuff) is:
    room = new JLabel[4];
    selec = new JRadioButton[4];
    roomg= new ButtonGroup();
             for(int i = 0; i < 4; i++) {
                  room[i] = new JLabel(arean);
              selec[i] = new JRadioButton();
              selec[i].addActionListener(this);
              areap.add(room[i]);
              areap.add(selec[i]);
              roomg.add(selec[i]);
              areap.setBorder(new TitledBorder(""+arean[i]));
    This part of the code successfully created a group of JRadioButtons each with the names previously established in arean[ ]. However, I'm supposed to make it so that whenever I press any of the RadioButtons, the border of the JPanel changes as well. As it is, Java will put only the last name, and won't change it as I click the different JRadioButtons.
    I'm not sure if I made myself clear, so if anyone is interested in helping me and needs further information, plz let me know.
    Thanks in advance.
    Message was edited by:
    SmaSh_

    If it's an array of Strings of area names, then the
    append to an empty string in this line of code:
                  areap.setBorder(new TitledBorder(""+arean)); is extraneous (as
    well as being a nasty idiom anyway, IMHO). I see
    that you removed it in your example...
    I agree that the empty string is a nasty idiom (hence my removal of it).  I figured arean had to be an array of Strings, if it is passed to the JLabel constructor (because toString on an Icon would probably be usely).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Where can I find the plugin to open camera raw files for Nikon D810 for Photoshop CS5.1? I've looked around the site but cannot get this to work.. Thank you.

    Where can I find the plugin to open camera raw files for Nikon D810 for Photoshop CS5.1? I've looked around the site but cannot get this to work.. Thank you.

    See for yourself which version of ACR is needed for that camera’s RAW files
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    then check your version (Photoshop > About Plug-In > Camera Raw).
    Your version of Photoshop does not support that version of ACR.
    You could use the free DNG Converter.

  • I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    Here's a good troubleshooting article about imessage "waiting for activation".
    http://support.apple.com/kb/TS4268

  • Does anyone know if iCloud is offline? I cannot get my mail to work this AM

    Does anyone know if iCloud is offline? I cannot get my mail to work this AM

    Have latest version of iTunes installed and running. Also make sure you have internet access working and can access Apple websites. Also, make sure you don't have any entries in your hosts file referring to gs.apple.com....If your not sure about how to do that, go ahead and do the rest first. You can come back to that later.....Plug in phone. Put phone in DFU mode.(google put iphone in DFU mode for instructions) Then restore the phone in iTunes by highliting your device in the left column and click on the Restore button. The latest iOS version is 4.3.3. That's what iTunes will restore it to. When it's done restoring, iTunes will ask if you want to restore from a backup or setup as a new phone. I would use the Setup as a New Phone option. Once it's done, you should have a clean install of the iOS and an operating phone, as long as there are no hardware issues with it.

  • My iPhone has been badly damaged and I cannot get the screen to work. I want to do a backup to transfer to my new phone but the backup will not work because the phone is locked. Can I input my lock code to the phone via the computer to allow a backup?

    My iPhone has been badly damaged and I cannot get the screen to work. I want to do a backup to transfer to my new phone but the backup will not work because the phone is locked. Can I input my lock code to the phone via the computer to allow a backup?

    Sorry, no.

  • I have installed Mountain Lion 10.8.2 but still cannot get email from my work exchange account. I'd appreciate any help.  Thank you.

    I have installed Mountain Lion 10.8.2 but still cannot get email from my work exchange account. I'd appreciate any help.  Thank you.

    You can go to the Apple online store and purcahse a copy of Mountain Lion.  This will give you a redemption code, which you can use to download Mountain Lion from the App Store.  Unfortuantely, I'm not aware of any other way to legally purchase it.  I have never seen Apple release Muontain Lion on DVD.
    In terms of Apple Service, they just need the serial number of the machine to check the purcahse date.  It is usually correct, to within a few weeks.  A quick Google search should give you the correct number to dial.
    I hope this helps.

  • Cannot get exception-type to work

              WLS 60 SP1 (#101616)
              Cannot get <exception-type> to work. WLS shows standard &#8220;Internal error
              500&#8221; page instead of a custom error page. The custom error page is shown
              if <error-code> is used instead of <exception-type>.
              Any ideas? Thanks
              

    Hi @utopian,
    Welcome to the HP Forums!
    I understand that you cannot scan with your HP Officejet Pro 8500 on Windows 7 using a wireless network. I am happy to look into this issue for you!
    Please take a look through this scanning guide, A 'Connection Error' or 'No Computer Detected' Error Message Displays during Scanning for HP Officej....
    Hope this guide helps!  
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • I cannot get GPS Only to work on my ipad3 (4g version, but not on an active cell plan, and wifi off).  Is there some new requirement in 7.1 or 7.1.1 to have cell and/or wifi enabled for GPS to work? I am testing with MotionX

    It seems like I cannot get GPS only to work on my ipad3 (4g version, but not on an active cell plan, and wifi off).  Is there some new requirement in 7.1 or 7.1.1 to have cell and/or wifi enabled for GPS to work? I am testing with MotionX, garmin blueChart mobile, and a GPS monitoring tool. All show no signal. If I turn on cell and wifi,  it says I get gps signal, but can't tell if that is from the GPS chip, or just from cell and wifi only (maybe with some gps mixed in)?  Any ideas on how to get iPad working with GPS only??

    Roger that.  Thanks for your time.
    System:
    Windows 7 64bit
    Processor: AMD phenom IIX4 965
    RAM:  Gskill Ripsaw F3-12800CL7D-4GBRM (2-2GB sticks)
    GPU:EVGA Classified Nvidia GeForce GTX 560 Ti 448 core
    PSU: Kingwin 1000W laser gold (LZG-1000)
    Yes. tried the one ram stick, no go.  I have been trying to boot off/install the windows 7 disk but am unable to get to the point where windows starts installing after its gathering information portion of the install.  I can get to the disk selection screen of the install with the WD HD on SATA port 2 but then get the "cant install messages" when I try to select the Vertex 3.  Yes I can see the Vertex 3 Drive as well as the WD drive at this point.  some times I have to hit "scan" a couple of times.

  • Cannot get iTunes DJ to work

    No doubt it is something really obvious that I'm missing, but I cannot get iTunes Dj to work. If I click on iTunes DJ in the left column, right section of the window says "iTunes DJ" and explains that I can make a continuous mix, but there is no list of music. The play button is greyed out.
    The help file says "To select a specific playlist (instead of your library) for the live mix, choose an option from the Source pop-up menu at the bottom of the iTunes window."
    but there is no Source pop-up menu at the bottom of the iTunes window.
    Any ideas?

    Do you see the grey bar at the bottom of the screen when you select iTunes DJ, the one with the Settings and Refresh button, as seen in the picture on this web page? If not, then the bottom of the window may just be off the screen on your system so you don't see the Source selector. If that does seem to be the problem, try changing the resolution of your Mac's screen (Displays system preference) to the highest resolution. If it already is, try changing it to a lower resolution, then back. That may get the iTunes window to reappear..
    If not, open the Script Editor application, paste in the following text (up to and including the line that says "end tell") and click the "Run" button:
    tell application "Finder"
    set {d1, d2, d3, d4} to (get bounds of window of desktop)
    end tell
    tell application "iTunes"
    set margins to {d1 + 10, d2 + 54, d3 - 10, d4 - 148}
    set bounds of window 1 to margins
    end tell
    If the iTunes window is running off the screen, that should restore it.
    Hope this helps.

  • Cannot get wireless scanner to work

    wireless printing to my HP Officejet Pro 8500 works fine but I cannot get the scanner to work - it fails to even communicate with the HP device. My operating system is Windows Vista. The error message I get when trying to use the scanner by clicking on the "HP Officejet Pro 8500 A910 Scan" icon is "Scanner communication cannot be established."
    Thank you for your help
    This question was solved.
    View Solution.

    Hi @utopian,
    Welcome to the HP Forums!
    I understand that you cannot scan with your HP Officejet Pro 8500 on Windows 7 using a wireless network. I am happy to look into this issue for you!
    Please take a look through this scanning guide, A 'Connection Error' or 'No Computer Detected' Error Message Displays during Scanning for HP Officej....
    Hope this guide helps!  
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • I cannot get "home sharing" to work on my Apple TV device

    I cannot get "home sharing" to work on Apple TV.I
    I type in my apple id and password to no avail.
    Why isn't the apple tv device taking this info and activating home share?

    I am having the same problems with Home Sharing using the Apple TV.  The problems seemed to appears to have started within the last week or so.  Did updates and all.   Went to the Apple TV and it couldn't see either Home Share on either computers that Home Share is turned ON.  Reset the routers, reinstalled iTunes on the iMac and MacBookPro.  Created a second Wi-Fi Access point using a Airport Express.  Put the MacBookPro and TimeCapsule on the same network and still no love to see the Home Share contents.
    We have had both Mac's and Apple TV for several years and have never had any problems like this.

Maybe you are looking for

  • E:\ error message.  Has anyone else had this error?

    I get the following error as soon as I plug in my Shuffle. I have had this problem almost a year and I've taken my suffle into the store, had it restored several times. It works fine at the Apple store but when I get it home this is what I get. I can

  • How to create a ClobDomain object with a default's different charset.

    Hi, I'm developing a 10.1.3. ADF Faces application that need to upload a File to a CLOB column. The user will usually upload a text file CP1252 charset, but in samples like this: // read data into a character array char[] data = {'0','1','2','3','4',

  • Problem in select-option in module pool

    Hi, I have 4 fields in my module pool screen, all are select-option and i want to select the data on basis of these fields. but condition is that some fields can be blank. So i have use select query with 'in' option but it does not work when i leave

  • Both mac's running slow in Mavericks

    hi Folks, Upgraded my two mac's 3 or 4 months back to Mavericks from Mountain Lion. One is a 2011 iMac  (12 Gig memory), the other a 2009 Macbook Pro (4 Gig memory). Both computers are running slower and slower as time goes on, past this upgrade. On

  • Error when generating master data routines when activating infoobject

    Hello Gurus, I had an issue with one of my info object. I Created the one Custom InfoObject  with Just 5 Char without any masterdata and used that in many cubes. we promoted the objects and cube to test and production systems. just couple of days bac