home *** CD-ROM | disk | FTP | other *** search
- /*
- * test PicoPainter arexx port
- */
-
- options results
-
- address "ArtEffect"
-
- requestfile stem res. title "123" path "ram:" file "testfile" pattern "#?"
- say res.file
- say res.path
- say res.filename
-
- requestnotify "Notification"
- requestnotify title "Neuer_Titel" ok "_betätigen" "Notification"
-
- requestnumber
- if RC=0 then a = result
- else a = "canceled"
-
- 'requestnumber title "Neuer_Titel" def 1 min -10 max 5 prompt "Nummer?"'
- if RC=0 then b = result
- else b = "canceled"
-
- requestresponse prompt "Antworte!" options "_Ja|Nein"
- if RC=0 then c = result
- else c = "canceled"
-
- requestresponse title "Neuer_Titel" prompt "Antworte|nochmal!" options "Ja|_Nein"
- if RC=0 then d = result
- else d = "canceled"
-
- requeststring
- e = result
- requeststring title "Neuer_Titel" def "Testtext" maxlen 10 prompt "Änderen Sie den Text!"
- f = result
-
- text = a || '|' || b || '|' || c || '|' || d || '|' || e || '|' || f
- 'requestnotify title "Ihre_Antworten" ok "fertig" prompt 'text
-