how can read a text file from internet (from address) and show insert that in variable and show that with MessageBox?
i use from this command for do it:
inetc::get /NOCANCEL /SILENT "http://google.com/File.txt" "$EXEDIR\File.txt" /end FileOpen $4 "$EXEDIR\File.txt" r FileRead $4 $1 FileClose $4 MessageBox MB_OK "$1"
i want my text file text direct write in variable.
Something like this:
inetc::get /NOCANCEL /SILENT "http://google.com/File.txt" $1 /end MessageBox MB_OK "$1"