Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

WPI Config screen -item select hi-light

Featured Replies

Hello all,

Is it possible to do the following,

When you go to the config screen and you click on an item in the left pane(the list of software/tasks) to display it's properties can you have the selected item hilight ??

This would help quite a lot.

Thankyou for your time

Gabby

Hmmm never thought of it before I suppose it would be possible to do as changing the font size to a size bigger or smaller as the mouse hovers over it. We could prolly do it in a css file I will have to see what I can do.

Definatly a worthy idea though.

  • Author
Hmmm never thought of it before I suppose it would be possible to do as changing the font size to a size bigger or smaller as the mouse hovers over it. We could prolly do it in a css file I will have to see what I can do.

Definatly a worthy idea though.

What i was thinking was more of the whole selected item in the list was hilighted eg say with a darker blue background

to make it easier to see which item you are editing.

Thankyou for the reply.

PS.

Your software rocks....well done and thankyou for all the effort you have put in.

Gabby

This was on my wishlist from a while back. I know there are probably more elegent solutions, I was having trouble maintaining the highlight while tabbing around on the page without creating the highlightlink funtion. All changes I made are in the configwizard.js. The colors and fonts could certainly be moved to the css file for consistency. Below is my implementation:

Changes in function CreateNavigation(). I have accesskey to directly access the links in the list but they conflict with current implementation of hotkeys...I still use the Ctrl+? for my hotkeys. I also use the UID so you will highlight entries that are not unique:

From this:

txt += '<td valign="top"><a class="opTxt" onClick="JumpToEntry(' + i + ')">' + configList[i].prog + '</a></td>';

To this:

txt += '<td valign="top"><a class="opTxt" href="java script:JumpToEntry(' + i + ')" id="'+ configList[i].uid + '" accesskey="'+ configList[i].prog.substring(0,1) + '";>' + configList[i].prog + '</a></td>';

Add as the last line of function FillInConfig(CreateNav,pos) to call the new highlightlink function:

highlightlink(pos);

Finally, add the new function. Not called in the link itself as it lost focus as I tabbed around the config page to change values for this item:

function highlightlink(pos)	//Tony add...Highlight link persistently even when link doesn't have focus
{
position="configwizard.js";
whatfunc="highlightlink()";

var regularColor='black';
var hoverColor='purple';
var selectedColor='yellow';
var anchors = document.getElementsByTagName('a');

for (var i=0; i < document.anchors.length; i++)
{
if (document.anchors[i].id==document.getElementById("uid").value)
{
document.anchors[i].focus();
document.anchors[i].style.color = regularColor;
document.anchors[i].style.backgroundColor = selectedColor;
}
else
{
document.anchors[i].style.backgroundColor = "";
document.anchors[i].style.color = regularColor;
document.anchors[i].onmouseover = new Function("this.style.color = \"" + hoverColor + "\";");
document.anchors[i].onmouseout = new Function("this.style.color = \"" + regularColor + "\";");
}
}
}

configwizard.js

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.