Search found 71 matches

by msu
Thu Jan 28, 2021 6:02 pm
Forum: Newbie questions
Topic: How to send variables and display in Rapa-GUI Treeview
Replies: 7
Views: 3958

Re: How to send variables and display in Rapa-GUI Treeview

@SamuraiCrow:
I'm not sure if I understood you correctly, but RapaGUI on Linux uses GTK.
by msu
Wed Jan 27, 2021 9:06 pm
Forum: Newbie questions
Topic: How to send variables and display in Rapa-GUI Treeview
Replies: 7
Views: 3958

Re: How to send variables and display in Rapa-GUI Treeview

I think a TreeView is not necessarily suitable for displaying measured values ​​25 per second.
But a short sample code from you would be helpful.
by msu
Sun Jan 24, 2021 12:16 pm
Forum: General programming
Topic: Can I use EXISTS using jokers?
Replies: 3
Views: 2350

Re: Can I use EXISTS using jokers?

I would solve it like this: formats = {".gif", ".png", ".jpg"} file$ = "FILE" For a = 0 to TableItems(formats) -1 If Exists(file$ .. formats[a]) Print("File exists!") WaitLeftMouse End EndIf Next Print("File does not exist!") WaitLeftMouse ...
by msu
Sun Jun 07, 2020 2:30 pm
Forum: Wishlist
Topic: RapaGUI - contex menu
Replies: 3
Views: 3160

Re: RapaGUI - contex menu

Too bad, for example the contex menu of the Hollywood IDE (Windows) would be a nice example.
by msu
Sat Jun 06, 2020 3:09 pm
Forum: Wishlist
Topic: RapaGUI - contex menu
Replies: 3
Views: 3160

RapaGUI - contex menu

Graphical symbols for the contex menu would be nice. :D
by msu
Thu Jun 04, 2020 8:59 am
Forum: RapaGUI
Topic: Context menu - more bugs?
Replies: 3
Views: 2659

Context menu - more bugs?

Windows x64: The code works. :D AmigaOS 3.9: The context menu did not trigger any events. :( AROS x86 : The first time you right-click, Hollywood exits. The workbench is reset. :( @REQUIRE "RapaGUI" @DISPLAY 1, {Width = 320, Height = 100} GUI$=[[<application id="app"> <menu titl...
by msu
Wed May 27, 2020 8:51 pm
Forum: RapaGUI
Topic: Rapagui disable normal display
Replies: 10
Views: 5898

Re: Rapagui disable normal display

I honestly don't know of any GUI system that runs on user-defined screens.
Think you will have to decide there.
by msu
Wed May 27, 2020 7:36 pm
Forum: RapaGUI
Topic: Rapagui disable normal display
Replies: 10
Views: 5898

Re: Rapagui disable normal display

Hi lazi, you have to integrate the display into RapaGUI. Example: @REQUIRE "RapaGUI" ;@DISPLAY {mode="windowed",width=640,height=480} GUI$=[[<application id="app"> <window id="Main" Title="Test"> <vgroup> <hollywood display="1" width="...
by msu
Tue May 26, 2020 9:01 pm
Forum: RapaGUI
Topic: Rapagui disable normal display
Replies: 10
Views: 5898

Re: Rapagui disable normal display

A code example would be helpful.
by msu
Sun May 24, 2020 11:49 am
Forum: RapaGUI
Topic: Contex Submenu - no events
Replies: 2
Views: 2179

Re: Contex Submenu - no events

Thank you.