j, as discussed will look into this issue and the zorder thingy asap.
Just as an fyi, and with the caveat that its only just started and subject to change, the beginnings of the RichTextBox object are included in this release (build 36) ... for anyone thats interested and has an RTF file they would to embed within a form, heres a sample script:
code:
Break On
$Form = CreateObject("Kixtart.Form")
$Form.Size = 600,400
$Form.FontSize = 9
$Form.FontName = "MS Sans Serif"
$RichEdit = $Form.RichTextBox
$RichEdit.Location = 10,10
$RichEdit.Right = $Form.ClientWidth - 10
$RichEdit.Bottom = $Form.ClientHeight - 10
$RichEdit.LoadFile(".\winzip.rtf")
$Form.Center
$Form.Show
While $Form.Visible
$=Execute($Form.DoEvents)
Loop
exit
From my experience, and in seeing what Jochen is up to (his idea), the RichTextBox control has one very cool use. If you want to build an online HELP system for your script, simply write it up using wordpad and RTF, then create a simple dialog form with an embedded RichTextBox and a close button, and display that. I must admit that it looks very professional.