set args = WScript.Arguments
if args.Count = 0 then
MsgBox "You called this script directly, no arguments specified!"
else
for each argument in args
list = list & argument & vbCr
next
MsgBox "Here's the list of arguments:" & vbCr & list
end ifCan anyone tell me how to apply the effect of this code to a web page? That is, drag a file onto a web page, and have the address visible on the page.
Is there any way, when something is dragged onto a web page (or some element on the page), for the page to produce an effect?
It doesn't necessarily have to pop up; writing it into a text area on the page would also be fine. Other than the IE address bar
[ Last edited by wert123 on 2007-8-22 at 11:32 AM ]
