Scripting Example 44

; *****************************************************

; Example44.ftp

; =============

; This example shows :

; - How to use the "Log" command

 

; - How to display multi-line message boxes using

; Asci character number 13 ( Carriage Return )

 

; - How to use ASCII conversion to its representing

; character.

; -----------------------------------------------------

; NOTE: You are able to execute the script unchanged...

; *****************************************************

 

for i = 1 to 10

log "%%i%%"

log "next"

next i

 

Message "This is Line 1 and //13//and this is line 2//13//and this is number 3"

 

Let A = ""

for i = 65 to 67

Let A = "%%A%%//%%i%%//"

next i

 

Message "%%A%%..."

 

Message "//84////82////65////78////83////83////79////70////84//"