Forum Moderators: open
<Sorry, no example URLs.
See Terms of Service [webmasterworld.com]>
Is this possible? Can i do it with Flash or other Macromedia program?
Can a script trigger the browser as soon the USB Memory Stick is pluged into the computer?
Please guide me in the right direction.
Thanks
Leo
[edited by: tedster at 4:00 am (utc) on Sep. 2, 2005]
Looking at one in my PC right now....
Create a file called autorun.inf
Within that file add the following
[autorun]
open=presentation.html
icon=presentation.ico
The icon statement is probably optional.
Kaled.
so you have to put a redirect to your site on the html file
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example</title>
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.example.com/introv.htm">
</head>
<body>
</body>
</html>
more info bout autorun.inf can be found here [msdn.microsoft.com]
and of course here [google.com...]
[edited by: encyclo at 1:11 am (utc) on Sep. 2, 2005]
[edit reason] Changed to example.com and fixed sideways scroll [/edit]