Search found 111 matches

by ocean77
Mon Jul 25, 2022 4:40 pm
Forum: Off topic
Topic: Aros
Replies: 2
Views: 5349

Re: Aros

Thank you for replying! Unfortunately there's no device available in Virtualbox whether it's mounted or not in the host. Although it's a pain I can burn an iso image and mount that to get files from the host over to Aros, I suppose, but I don't know what to do vice versa. Guess I could burn an actua...
by ocean77
Sun Jul 24, 2022 5:24 pm
Forum: Off topic
Topic: Aros
Replies: 2
Views: 5349

Aros

So... My Aros laptop died and i'm trying to set up an Aros virtualbox. Got it installed and it's working, but I'm damned if I can way a way to share files with the host system (Fedora 36). It doesn't seem like the Guest Additions are working with Aros(?) Wondered if anyone had any experience with th...
by ocean77
Thu Jul 21, 2022 10:22 pm
Forum: Newbie questions
Topic: Restrict mouse movement
Replies: 2
Views: 1676

Re: Restrict mouse movement

amyren wrote: Wed Jul 20, 2022 8:16 pm Perhaps this does not qualify for the "simple and fast" criterias, but it will limit the mouse movements
Thanks! Will try and see. :D
by ocean77
Thu Jul 21, 2022 10:21 pm
Forum: Announcements
Topic: Hollywood Designer 6.0 released
Replies: 7
Views: 8723

Re: Hollywood Designer 6.0 released

Just upgraded. Awesome release as always.
by ocean77
Fri Jul 15, 2022 8:37 am
Forum: Code snippets area
Topic: Slideshow Template
Replies: 5
Views: 11956

Re: Slideshow Template

Great stuff!
And very clean code. Much to learn here. Thanks!
by ocean77
Mon Jul 11, 2022 7:19 am
Forum: Newbie questions
Topic: Restrict mouse movement
Replies: 2
Views: 1676

Restrict mouse movement

Is there a simple and fast command or method for restricting mouse movement to a specific area of the display while a certain condition is true?
by ocean77
Thu Jun 02, 2022 3:42 pm
Forum: Newbie questions
Topic: InkeyStr Syntax
Replies: 5
Views: 2097

Re: InkeyStr Syntax

My apologies. The cursor does indeed appear using:

Code: Select all

name$=InKeyStr(#ALPHABETICAL,Nil,Nil,True)
My color scheme made the thin line hard to see. Somehow I thought it would be blinking as well.
Sorry for the confusion.

Is there any way to modify its appearance?
by ocean77
Thu Jun 02, 2022 2:13 pm
Forum: Newbie questions
Topic: InkeyStr Syntax
Replies: 5
Views: 2097

Re: InkeyStr Syntax

I'm afraid none of those options appear to work for me.

Code: Select all

name$=InKeyStr(#ALPHABETICAL,,,True)
Throws an 'unexpected symbol' error.
But

Code: Select all

name$=InKeyStr(#ALPHABETICAL,Nil,Nil,True)
passes compilation, but there is no result.
by ocean77
Wed Jun 01, 2022 6:11 pm
Forum: Newbie questions
Topic: InkeyStr Syntax
Replies: 5
Views: 2097

InkeyStr Syntax

Can't get the cursor to appear using InkeyStr, not sure about the syntax. I find the documentation somewhat confusing.
Here's what I got:

name$ = InKeyStr(#ALPHABETICAL, Cursor=True)

Shouldn't that work?
by ocean77
Tue May 04, 2021 6:45 pm
Forum: Newbie questions
Topic: MakeButton Error
Replies: 5
Views: 2938

Re: MakeButton Error

amyren wrote: Tue May 04, 2021 5:55 pm You need to put the makebutton line below the function it calls.

And you probably should change OnLeftMouseDown to OnMouseDown
Of course... Always put the function before it's called. When will I learn? :lol:

Thanks.