Desktop 'web page'

T

Tx2

I have searched Google, but can't find a definitive answer to this question.

I would like to create a page that i can use as a desktop on my PC.
I could then have my own buttons for icons et al.

The only problem i have, is linking the buttons to folders or files on my
PC.
Either the link refuses to work in opening a folder (such as My Computer) or
i get an error that the path is invalid.

In addition, if i link to an .exe, i get the default "open or save" dialogue
that normally occurs when downloading from the web.

Aside from using Windowblinds, is there no way for me to customise *exactly*
how i want my desktop to look with my own buttons et al?
 
K

Knight

I have seen a free script somewhere on the net, that enables you to make the
HTML pages to open folders and programs correctly...

try looking with google.com for it

--

......Creativity is intelligence having fun !.....;-)

For the ones reading technical replies, I would kindly request them to give
me their feedback with another post (in the same thread of course), so I
will know if my advice helped them or not.

Kenny S www.talentgrid.com
www.computerboom.net
 
H

Homer J. Simpson

Something like this?

<HTML>
<BODY>

<SCRIPT LANGUAGE='VBScript'>
Sub Folder( sCmd )
Set Shell = CreateObject("WScript.Shell")
Shell.run( "explorer.exe /e, " & chr( 34 ) & sCmd & chr( 34 ) )
Set Shell = Nothing
window.event.returnValue = false
End Sub

Sub LaunchEXE( sLink )
Set Shell = CreateObject("WScript.Shell")
Shell.run( sLink )
Set Shell = Nothing
window.event.returnValue = false
End Sub
</SCRIPT>

<A HREF="" onclick='Folder("C:\")'>C:\</A><br>
<A HREF="" onclick='Folder("D:\")'>D:\</A><br>
<A HREF="" onclick='LaunchEXE("C:\WINDOWS\NOTEPAD.EXE")'>Notepad</A>
</BODY>
</HTML>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top