Modify ↓
Opened 16 years ago
Closed 16 years ago
#1436 closed Bug (Fixed)
Invalid helpfile/example '_INetGetSource.au3'
| Reported by: | anonymous | Owned by: | Valik |
|---|---|---|---|
| Milestone: | 3.3.5.2 | Component: | Documentation |
| Version: | 3.3.2.0 | Severity: | None |
| Keywords: | _INetGetSource | Cc: |
Description
There's a small bug in the helpfile/example:
...\Au3 Version 3.3.2\Examples\Helpfile\_INetGetSource.au3
Instead of
#include <INet.au3>
ConsoleWrite(_INetGetSource('www.autoitscript.com'))
it must be
#include <INet.au3> ConsoleWrite(_INetGetSource(http://www.autoitscript.com'))
to get it working.
Attachments (0)
Change History (2)
comment:1 by , 16 years ago
comment:2 by , 16 years ago
| Milestone: | → 3.3.5.2 |
|---|---|
| Owner: | set to |
| Resolution: | → Fixed |
| Status: | new → closed |
Fixed by revision [5646] in version: 3.3.5.2
Note:
See TracTickets
for help on using tickets.

May I suggest that you update to the latest release version, 3.3.4?
That way you can just use BinaryToString(InetRead("URL"))
Then you are using the native AutoIt code and don't need to #include<INet.au3> at all.
And you are correct as far as the documentation goes, the FULL URL is required for _InetGetSource() and as it is for InetRead()