Creating a desktop shortcut is similar to creating a menu system. Find the following line in options area.
m = desk_icons
Then add the following line for each desktop shortcut.
m[m.length] = new Menu("name", icon_num, "action")
Where
- name is the name of the shortcut.
- icon_num is the number representing the icon to be displayed.
- action is the action to be performed. It can be a valid URL path or a JavaScript command. If it is a JavaScript command a space MUST be inserted in the front.
Return to Dynamic HTML Resource Center