Search found 133 matches

by r-tea
Mon Jul 31, 2017 11:33 pm
Forum: General programming
Topic: WB Icon
Replies: 17
Views: 18026

WB Icon

I want to use an icon for ma program.
I pointed it with SetWBIcon() function, but when i doubleclic my program I get a message window: "HollywoodPlayer: Wrong arguments specified!".
When I delete that icon then my program starts well.
by r-tea
Mon Jul 31, 2017 10:20 pm
Forum: MUI Royale
Topic: System console output
Replies: 10
Views: 11447

Re: System console output

Thank You! It works. I wouldn't ever think to have a look at DebugPrint() since it's looksto be intended for debug purposes only.
Yes, I use CubicIDE.
by r-tea
Mon Jul 31, 2017 8:46 pm
Forum: MUI Royale
Topic: System console output
Replies: 10
Views: 11447

System console output

How to make my MUI program outputs messages to the system console/Shell widnow? Print() seems to output the Hollywood display which I don't need and have it hidden.
by r-tea
Sun Jul 30, 2017 12:13 am
Forum: MUI Royale
Topic: EventHandler
Replies: 2
Views: 3759

Re: EventHandler

After a while of chasing it within Hollywood docs, I discovered SetInterval() function:

Code: Select all

    Function UpdateTime()
		mui.Set("tx_time", "contents", GetTime(True))
    EndFunction 
...
SetInterval(Nil, UpdateTime,500) 
It works and it was really easy :-)
by r-tea
Sat Jul 29, 2017 6:46 pm
Forum: MUI Royale
Topic: EventHandler
Replies: 2
Views: 3759

EventHandler

I wanted to do a small digital clock MUI window. Buttons do nothing. They're just for trying. @VERSION 5,2 @REQUIRE "MUIRoyale", {Link = True} @FILE 1, "Daysleeper.xml" @APPTITLE "Daysleeper" @DISPLAY {Hidden = True} Function p_EventFunc(msg) Switch msg.Class Case "...
by r-tea
Sat Jul 29, 2017 6:18 pm
Forum: Amiga IDE questions
Topic: microGoldEd syntax highlighting
Replies: 2
Views: 7808

Re: microGoldEd syntax highlighting

Clear.
by r-tea
Sat Jul 29, 2017 12:15 am
Forum: Amiga IDE questions
Topic: microGoldEd syntax highlighting
Replies: 2
Views: 7808

microGoldEd syntax highlighting

How to make use of hw4cubic with microGoldEd, as it requires CubicIDE installation?
by r-tea
Tue Jun 06, 2017 8:48 pm
Forum: MUI Royale
Topic: TextEditor
Replies: 3
Views: 5468

Re: TextEditor

If I understand you correctly Scribble doesn't allow to add another languages to its syntax higlighter?
by r-tea
Fri Jun 02, 2017 9:41 am
Forum: MUI Royale
Topic: How to link MUI Royale's xml file?
Replies: 4
Views: 5403

Re: How to link MUI Royale's xml file?

jPV wrote:BTW. according the documentation ReadString would require the length input too, so I've always put length with FileLength(1) there, but good to know it can be used without too :)
Indeed. Docs state it's not optional.
by r-tea
Thu Jun 01, 2017 7:59 pm
Forum: MUI Royale
Topic: How to link MUI Royale's xml file?
Replies: 4
Views: 5403

How to link MUI Royale's xml file?

About a week ago I finally got the Hollywood's CD into my trembling hands. Last night I played a while with code using MUI Royale plugin. I cut the Anim example of things I don't need for now. I permanently linked the MUIRoyale plugin @REQUIRE "MUIRoyale", {Link = True} Compiling and linki...