Awesome!
The array reference is used to populate the popup menu.
With your code in place, it would look like this:
function dropdownmenu(obj, e, menucontents, menuwidth){
var divId = obj.parentNode.id;
var arrayRef = window[divId];
if (window.event) event.cancelBubble=true
else...
To make things easier, I will upload the full code I am using.
When something is passed to the dropdownmenu (obj, e, menucontents, menuwidth) function in the menucontents position, it refences the array defined in the head of my webpage i.e.
<head>
<script>
var printer3=new Array()...
So far I've tried:
Remove "menucontents" from the function and substitute populatemenu(menucontents) with populatemenu(obj.parentNode.id)
Add newmenu=obj.parentNode.id; populatemenu(newmenu)
I might've tried a few other configurations, but I keep getting errors on the page (Object doesn't...
That helps and gets me a bit closer. Thank you.
Here is the dropdown function:
function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById...
I have a printer map page with layers (div) that are associated to specific printers.
For example:
<div style="position: absolute; left: 300px; top: 86px; width: 34px; height: 25px; z-index: 1; background-color:#FFFFFF" id="c5180">
<img border=0 src="images/printer.gif"...
So say that my SAN is 172.16.2.X, my server is 172.16.3.X, and my client is 172.16.4.X.
In the OS, do I set the gateway to be 172.16.X.1 depending on which subnet the device is in?
Do I have to set static routes between server-SAN and server-client?
Thanks for the link, I'll read through the whole thing after I post this. I've seen similar information in other HP manuals (I've downloaded 4 different manuals for this device now)
I guess my main question is on what addresses/subnets to use.
I'm currently using 172.16.0.0/16 for my entire...
From what I've read, the HP 2824 is a layer 3 switch capable of IP routing. I'm just not sure what commands I need to run to get the switch to route to the VLANs correctly. I'm also not sure if I have to change settings on my clients to match the gateway of the VLAN.
I've read through the manuals, numerous Google results, and plenty of these forums, but I still can't figure out what I'm doing.
I have a 2824 that I want to have 2 VLANs.
VLAN1 = the default VLAN
VLAN2 = SAN VLAN
Let's say that VLAN1 will be ports 1-20 and VLAN2 will be 21-24. Ports 19-20...
I've read through the manuals, numerous Google results, and plenty of these forums, but I still can't figure out what I'm doing.
I have a 2824 that I want to have 2 VLANs.
VLAN1 = the default VLAN
VLAN2 = SAN VLAN
Let's say that VLAN1 will be ports 1-20 and VLAN2 will be 21-24. Ports 19-20...
I'm not looking for a specific answer, but rather, just some clues to get me in the right direction. I have a single dimension array like myarray="1,1,1,0,1,1,1" or myarray="0,1,1,1,1,1,1,1" or even myarray="1,1,1,1,1,1,1".
I am looking for a way to search myarray for any different numbers. In...
I have a macro that automatically files emails according to their subject. However, if the folder it searches to save in does not exist it flags the message - green for missing job, orange for missing email folder, i.e. jobs\1234\email is the path for the message to be saved in. If email is...
Wow, thanks for both suggestions. I do have trim hidden somewhere in my actual macro, I just left it out when I pasted. (I also have a fancy feature in between that writes the subjects, job number, etc. to an html log file)
I'll see about implementing these and let you know if I run into any...
I have written an Outlook macro to help our project/email filing admin. It scans her inbox for all message subjects containing the text "BCE #" followed by a 4 or 5 digit number ie "New Project BCE #4311" and then saves them on the network under that job number. However, some people are sending...
We solved this problem by signing up for a free email certificate from Comodo. The 3 other principals also got installed free certificates. When they want to send something confidential, they encrypt the message. No record of the message shows up on the assistants computer.
I have a user that receives a lot of email each day, but, since he doesn't go through it all, we have his account set to forward copies to his assistant.(Exchange General>Delivery Options>Forward To: & Send to forwarding address and mailbox)
This user needs to receive some confidential...
Is there a better way to write this out?
strlength = Len(item.BillingInformation)
If strlength = 5 Then
job2 = Left(item.BillingInformation, 2)
If job2 = 12 Then
sjob = "p:\12000s\" & item.BillingInformation
MsgBox (sjob)
Else
If job2 = 11...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.