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
Search found 107 matches
- Wed Nov 01, 2023 6:30 pm
- Forum: Newbie questions
- Topic: Table member declaration
- Replies: 2
- Views: 4472
- Wed Nov 01, 2023 12:02 am
- Forum: Newbie questions
- Topic: Table member declaration
- Replies: 2
- Views: 4472
Table member declaration
Hi,
The following code gives a 'variable expected' error.
but simply changing the member name from 'to' to 'too' solves the problem. What am I missing?
NathanH
The following code gives a 'variable expected' error.
Code: Select all
s={}
s.to=""
Code: Select all
s={}
s.too=""
- Mon Oct 23, 2023 5:17 pm
- Forum: Newbie questions
- Topic: How to get local ip address on Linux?
- Replies: 2
- Views: 4137
Re: How to get local ip address on Linux?
Great info! Thanks.
NathanH
NathanH
- Sat Oct 21, 2023 1:36 am
- Forum: Newbie questions
- Topic: How to get local ip address on Linux?
- Replies: 2
- Views: 4137
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 ...
- Fri Aug 04, 2023 5:34 pm
- Forum: RapaGUI
- Topic: Problem with HideDisplay and RapaGUI
- Replies: 2
- Views: 4821
Re: Problem with HideDisplay and RapaGUI
Thanks, I had missed that.
NathanH
NathanH
- Thu Aug 03, 2023 9:32 pm
- Forum: RapaGUI
- Topic: Problem with HideDisplay and RapaGUI
- Replies: 2
- Views: 4821
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...
- Mon Jul 31, 2023 9:16 pm
- Forum: Wishlist
- Topic: Displays as Backdrop Windows (always behind)
- Replies: 2
- Views: 4233
Re: Displays as Backdrop Windows (always behind)
Okay, thanks.
NathanH
NathanH
- Mon Jul 31, 2023 9:09 pm
- Forum: Hollywood bugs
- Topic: Documentation problems
- Replies: 44
- Views: 85602
Re: Documentation problems
Thank you!
NathanH
NathanH
- Fri Jul 21, 2023 10:23 pm
- Forum: Hollywood bugs
- Topic: Documentation problems
- Replies: 44
- Views: 85602
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/...
- Fri Jul 21, 2023 8:32 pm
- Forum: Wishlist
- Topic: Displays as Backdrop Windows (always behind)
- Replies: 2
- Views: 4233
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...