Talk:NsisUrlLib plug-in: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
(Created page with "NsisUrlLib::UrlOpen /NOUNLOAD "http://www.mydomain.com/text.txt" NsisUrlLib::IterateLine /NOUNLOAD Pop $1 Doesn't return anything. So, not sure what's up?") |
mNo edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
NsisUrlLib::UrlOpen /NOUNLOAD "http://www.mydomain.com/text.txt" | NsisUrlLib::UrlOpen /NOUNLOAD "http://www.mydomain.com/text.txt" | ||
NsisUrlLib::IterateLine /NOUNLOAD | NsisUrlLib::IterateLine /NOUNLOAD | ||
Pop $1 | Pop $1 | ||
Line 6: | Line 8: | ||
So, not sure what's up? | So, not sure what's up? | ||
same here<br/> | |||
the page I'm fetching is only a single line, so I'm using this<br/> | |||
<blockquote> | |||
NsisUrlLib::UrlOpen /NOUNLOAD "http://checkip.dyndns.org/"<br/> | |||
Pop $0<br/> | |||
MessageBox MB_OK $0<br/> | |||
</blockquote> | |||
result: "Error has occurred." | |||
what I'm actually trying to do is a version check, but as this doesn't work I'll have to use NSISdl and save a temp file<br/> | |||
[[User:Anon|Anon]] ([[User talk:Anon|talk]]) 11:18, 26 December 2015 (UTC) |
Latest revision as of 09:49, 28 December 2015
NsisUrlLib::UrlOpen /NOUNLOAD "http://www.mydomain.com/text.txt"
NsisUrlLib::IterateLine /NOUNLOAD
Pop $1
Doesn't return anything.
So, not sure what's up?
same here
the page I'm fetching is only a single line, so I'm using this
NsisUrlLib::UrlOpen /NOUNLOAD "http://checkip.dyndns.org/"
Pop $0
MessageBox MB_OK $0
result: "Error has occurred."
what I'm actually trying to do is a version check, but as this doesn't work I'll have to use NSISdl and save a temp file
Anon (talk) 11:18, 26 December 2015 (UTC)