Jump to content

Links in the Examples.  

21 members have voted

  1. 1. Should there be links to functions and macros in the examples?

    • Yes
      17
    • No
      4


Recommended Posts

Posted

Example: http://www.autoitscript.com/autoit3/mvps/guinness/InetGet.htm

So look at the example above and select a function or macro in the example. Should this be added to the help file?

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 8/17/2013 at 11:57 AM, czardas said:

I think it's a bad idea. If you copy that to the clipboard you also copy the links. Not advisable IMO.

Really? I didn't get that.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

I copied the source code and I didn't get any links. So could you explain further please.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

What if you use Ctrl+C? It's because you put your cursor over the function and selected copy.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 8/17/2013 at 12:10 PM, JohnOne said:

Maybe it copy links when paste into forum but not paste into code editor.

If paste into forum just paste as plain text.

 

Only if the editor ignores the links.

Posted (edited)

I don't think it's important whether you use menu navigation, hotkey sequences or accelerators to copy the data. All should do the same thing. BTW I used CTRL + c.

Edited by czardas
Posted

I marked the whole example in FF, used Ctrl+C to copy it to the clipboard and used Ctrl+V to paste it into Notepad and the link was there as described above.

Posted

I can not replicate this error. Can someone give me a step by step "how to" of replicating it.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

All,

That link "http://www.autoitscript.com/autoit3/files/beta/update.dat" is part of the example. So no error. See previous post if you want me to debug.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

#include <InetConstants.au3>
#include <MsgBoxConstants.au3>

; Download a file in the background.
; Wait for the download to complete.

Example()

Func Example()
    ; Save the downloaded file to the temporary folder.
    Local $sFilePath = @TempDir & "\update.dat"

    ; Download the file in the background with the selected option of 'force a reload from the remote site.'
    Local $hDownload = InetGet("http://www.autoitscript.com/autoit3/files/beta/update.dat", @TempDir & "\update.dat", $INET_FORCERELOAD, $INET_DOWNLOADBACKGROUND)

    ; Wait for the download to complete by monitoring when the 2nd index value of InetGetInfo returns True.
    Do
        Sleep(250)
    Until InetGetInfo($hDownload, $INET_DOWNLOADCOMPLETE)

    ; Retrieve the number of total bytes received and the filesize.
    Local $iBytesSize = InetGetInfo($hDownload, $INET_DOWNLOADREAD)
    Local $iFileSize = FileGetSize($sFilePath)

    ; Close the handle returned by InetGet.
    InetClose($hDownload)

    ; Display details about the total number of bytes read and the filesize.
    MsgBox($MB_SYSTEMMODAL, "", "The total download size: " & $iBytesSize & @CRLF & _
            "The total filesize: " & $iFileSize)

    ; Delete the file.
    FileDelete($sFilePath)
EndFunc   ;==>Example

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

Posted (edited)
  On 8/17/2013 at 12:14 PM, JohnOne said:

Don't forget you're copying from a web page there not the help file.

Or are they the same?

 

They are html links - not visible - but still part of what you copied to the clipboard. Unless you redesign the windows clipboard or chm format, I don't believe you can change this behaviour.

Edited by czardas
Posted

Where are you copying to? SciTE? Notepad? Word?

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Guest
This topic is now closed to further replies.
×
×
  • Create New...