Modify ↓
Opened 15 years ago
Closed 15 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 Changed 15 years ago by GEOSoft
comment:2 Changed 15 years ago by Valik
- Milestone set to 3.3.5.2
- Owner set to Valik
- Resolution set to Fixed
- Status changed from new to closed
Fixed by revision [5646] in version: 3.3.5.2
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
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()