• Just looking around
    Posts: 8 from 2020/2/8
    I've been having a bit of fun with Arexx scripting for a few days, and I wanted to to have a go creating some kind of GUI app with it after I happened to notice RxMUI.library on grunch. Anway, I installed RxMUI via grunch, which seems to have placed it in System:Libs. Only right now I'm having trouble actually getting it to work in scripts...

    I'm trying this right out of the RxMUI guide:
    Code:
    /* Rexx MUI testing! */

    status.Frame = "Text"
    status.BackGround = "TextBack"
    status.PreParse = "1B63"x
    status.Contents = "Ready!"
    res = NewObj("Text", status)


    But upon running it I get:
    +++ Error 15 in line 7: Function not found

    Is there something special I have to do to get it to recognize the new library?

    Any help is apreciated, thanks!


    [ Edited by meguca 15.09.2020 - 20:33 ]
  • »15.09.20 - 20:30
    Profile