Search found 10 matches

by phoenixkonsole
Wed May 17, 2023 12:56 am
Forum: Newbie questions
Topic: Short IF statement must be on a single line!
Replies: 2
Views: 567

Re: Short IF statement must be on a single line!

Ok... i tried now the following and got: Equal sign expected! File: GAIA-X-sphere.HWS (current line: 6) need to read the manual :) @DISPLAY {Width = 640, Height = 480} ; Definition der Partikelstruktur Structure Particle Field x, y, dx, dy EndStructure ; Partikel-Array erstellen Global particle[100]...
by phoenixkonsole
Wed May 17, 2023 12:44 am
Forum: Newbie questions
Topic: Short IF statement must be on a single line!
Replies: 2
Views: 567

Short IF statement must be on a single line!

Here I am getting an error: Short IF statement must be on a single line! File: GAIA-X-sphere.HWS (current line: 42) What is long and what is short : ) ; Partikelsystem für die rotierende Sphere Local particles = {} ; Array für die Partikel Local numParticles = 100 ; Anzahl der Partikel Local particl...
by phoenixkonsole
Wed May 17, 2023 12:03 am
Forum: Newbie questions
Topic: Plot dots from table
Replies: 9
Views: 1351

Re: Plot dots from table

Thank you guys. I played further and got it to work and no i try to the dots to move from center to outside and back... First thought doesnt work. I need to sleep :) @DISPLAY {Width = 640, Height = 480} ; 2D-Koordinaten für das weibliche Gesicht Dim facePoints[250] ; Punkte für ein weibliches Gesich...
by phoenixkonsole
Tue May 16, 2023 10:09 pm
Forum: Newbie questions
Topic: Plot dots from table
Replies: 9
Views: 1351

Re: Plot dots from table

Thanks, changed it this way and now i get "Constant not found! File: GAIA-X.HWS (current line: 16)" My intention is to declare the number of field which would be 30. @DISPLAY {Width = 640, Height = 480} local facePoints = { {x = -10, y = -20}, {x = -5, y = -20}, {x = 0, y = -20}, {x = 5, y...
by phoenixkonsole
Tue May 16, 2023 9:03 pm
Forum: Newbie questions
Topic: Plot dots from table
Replies: 9
Views: 1351

Plot dots from table

Hi, i am getting an error in line 18: @DISPLAY {Width = 640, Height = 480} local facePoints = { {-10, -20}, {-5, -20}, {0, -20}, {5, -20}, {10, -20}, {-15, -15}, {-10, -15}, {10, -15}, {15, -15}, {-15, -10}, {15, -10}, {-15, -5}, {15, -5}, {-20, 0}, {-15, 0}, {15, 0}, {20, 0}, {-20, 5}, {20, 5}, {-1...
by phoenixkonsole
Sun Apr 15, 2018 10:27 am
Forum: Newbie questions
Topic: How tun run a command line application from Hollywood app
Replies: 8
Views: 7342

Re: How tun run a command line application from Hollywood ap

New question:
I have made an RapaGUI which has filed where a user can enter informations

Now I like to send a cmd line to the shell which includes those informations.
Is there a demo example which represents such a case ?
by phoenixkonsole
Sat Apr 14, 2018 9:25 pm
Forum: Newbie questions
Topic: How tun run a command line application from Hollywood app
Replies: 8
Views: 7342

Re: How tun run a command line application from Hollywood ap

When i use Execute and call an external process, the GUI i've created will not response until the process closes.
Run() should be for such cases : )
by phoenixkonsole
Fri Apr 06, 2018 8:49 pm
Forum: Newbie questions
Topic: How tun run a command line application from Hollywood app
Replies: 8
Views: 7342

How tun run a command line application from Hollywood app

Hi,

i play around with RapaGUI and create a basic gui "mockup" = not functional.
I am total new to Hollywood.

How can I run (or parse) a command line argument.
I would like to create a gui for a cmd tool basically.

Thank you in advance.