Search found 107 matches

by NathanH
Wed Nov 01, 2023 6:30 pm
Forum: Newbie questions
Topic: Table member declaration
Replies: 2
Views: 2236

Re: Table member declaration

Thanks, I was wondering about that because it is a table member not a variable. For example, using the the s["to"] syntax works for addressing it as a table member. Easy fix though, I'll just use s.src and s.dest rather than s.from and s.to. Thanks for the info!

NathanH
by NathanH
Wed Nov 01, 2023 12:02 am
Forum: Newbie questions
Topic: Table member declaration
Replies: 2
Views: 2236

Table member declaration

Hi,

The following code gives a 'variable expected' error.

Code: Select all

s={}
s.to=""
but simply changing the member name from 'to' to 'too' solves the problem. What am I missing?

Code: Select all

s={}
s.too=""
NathanH
by NathanH
Mon Oct 23, 2023 5:17 pm
Forum: Newbie questions
Topic: How to get local ip address on Linux?
Replies: 2
Views: 2116

Re: How to get local ip address on Linux?

Great info! Thanks.

NathanH
by NathanH
Sat Oct 21, 2023 1:36 am
Forum: Newbie questions
Topic: How to get local ip address on Linux?
Replies: 2
Views: 2116

How to get local ip address on Linux?

Hi, The following code works differently on Linux (Ubuntu) than it does on OS3 (under WinUAE) and Windows 10 (under Wine). CreateServer(1, 49152) DebugPrint(GetLocalIP(1, #NETWORKSERVER)) DebugPrint(ToIP(GetHostName())) I thought GetLocalIP() would give me the ip address of the server but it prints ...
by NathanH
Fri Aug 04, 2023 5:34 pm
Forum: RapaGUI
Topic: Problem with HideDisplay and RapaGUI
Replies: 2
Views: 2740

Re: Problem with HideDisplay and RapaGUI

Thanks, I had missed that.

NathanH
by NathanH
Thu Aug 03, 2023 9:32 pm
Forum: RapaGUI
Topic: Problem with HideDisplay and RapaGUI
Replies: 2
Views: 2740

Problem with HideDisplay and RapaGUI

Hi, This code works fine on OS 3.9. Notice the @REQUIRE line is commented out. @DISPLAY {x=1, y=1, width=1, height=1, color=#WHITE, borderless=True} @APPIDENTIFIER "Test" ;@REQUIRE "rapagui" HideDisplay() Requiring RapaGUI throws an error in HideDisplay() given below. @DISPLAY {x...
by NathanH
Mon Jul 31, 2023 9:16 pm
Forum: Wishlist
Topic: Displays as Backdrop Windows (always behind)
Replies: 2
Views: 1677

Re: Displays as Backdrop Windows (always behind)

Okay, thanks.

NathanH
by NathanH
Mon Jul 31, 2023 9:09 pm
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 69026

Re: Documentation problems

Thank you!

NathanH
by NathanH
Fri Jul 21, 2023 10:23 pm
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 69026

Re: Documentation problems

Hi, This is a request to make a change to the Hollywood Guide documentation file. The description of all of the attributes that can be gotten with GetAttribute() is huge and it is difficult to find things. Can there be a button to go to each object's attribute list rather than there being a section/...
by NathanH
Fri Jul 21, 2023 8:32 pm
Forum: Wishlist
Topic: Displays as Backdrop Windows (always behind)
Replies: 2
Views: 1677

Displays as Backdrop Windows (always behind)

Hi, I've written several programs which would benefit if their display could always be behind other windows on the Workbench; i.e., backdrop windows. For example, I've got a calendar/analog clock which pretends to be transparent by placing a grab of the desktop as the background. The illusion of tra...