Search found 18 matches

by matty47
Sun Mar 03, 2024 10:26 pm
Forum: Newbie questions
Topic: Missing mouse selection
Replies: 4
Views: 184

Re: Missing mouse selection

Thankyou for taking the time to post the detailed replies. I am off to try this.
by matty47
Sun Mar 03, 2024 1:38 am
Forum: Newbie questions
Topic: Missing mouse selection
Replies: 4
Views: 184

Missing mouse selection

I have this partial code Function displayGrid() For x = 0 To 19 For y = 0 To 9 If playGrid[x][y] <>0 DisplayBrush(playGrid[x][y],(x-1)*40+gapWidth,(y-1)*56+gapWidth) EndIf Next If sel1.active<>0 SetLineWidth(5) Box((gridX-1)*40+gapWidth,(gridY-1)*56+gapWidth,40,56,#RED) EndIf Next EndFunction Functi...
by matty47
Mon Aug 07, 2023 11:15 am
Forum: APK Compiler
Topic: APK Compiler fail to compile
Replies: 4
Views: 2654

Re: APK Compiler fail to compile

So I tried with a brand new install of Win 10 and the same setup as noted previously. Again the same failure.
Oh pity - but I don't know how to fix or where to go from here
by matty47
Sun Aug 06, 2023 12:38 am
Forum: APK Compiler
Topic: APK Compiler fail to compile
Replies: 4
Views: 2654

APK Compiler fail to compile

It's been a while since I used the APK Compiler and when I tried it recently I ran into problems. As my system has been used for many differrent programming languages I have installed the following in a new Win 10 VM. Android Studio 2022.3.1 Android SDK 33 (only) NDK 21.4.7075529 and 23.1.7779620 (A...
by matty47
Mon Jan 30, 2023 12:18 am
Forum: Newbie questions
Topic: Zero as a function parameter
Replies: 2
Views: 718

Re: Zero as a function parameter

Thanks - Doh! another simple error on my side.
by matty47
Sun Jan 29, 2023 2:53 am
Forum: Newbie questions
Topic: Zero as a function parameter
Replies: 2
Views: 718

Zero as a function parameter

I have the following function /*rounds a number n, (up/down) Or To a number of places d */ Function Round2(n,d) If d<>0 Return( Floor((n*(10^d)+0.5))/(10^d)) Else Return Floor(n+0.5) EndIf EndFunction And test this with NPrint (Round2(3.157,1)) WaitLeftMouse End Which works fine. If I make the secon...
by matty47
Sat Nov 12, 2022 2:59 am
Forum: Hollywood bugs
Topic: Mint Linux 21 (Ubuntu 22) libwebkitgtk
Replies: 1
Views: 786

Mint Linux 21 (Ubuntu 22) libwebkitgtk

Not really a bug , just an annoyance, and a resolution. I recently installed Mint Linux 21 and installed Hollywood. When running the 3d cube demo I received an error message that libwebkitgtk-3.0.so was not found. The rapagui module caused this failure according to the message. The demo still ran. W...
by matty47
Thu Apr 28, 2022 2:06 am
Forum: Announcements
Topic: Hollywood 9.1 out now
Replies: 10
Views: 7510

Re: Hollywood 9.1 out now

Well done! Thanks
by matty47
Fri Apr 08, 2022 8:32 am
Forum: General plugin questions
Topic: How to use Moviesetter plugin
Replies: 2
Views: 2710

Re: How to use Moviesetter plugin

Thanks for the quick response. I knew it would be something simple that I had overlooked.
by matty47
Thu Apr 07, 2022 8:21 am
Forum: General plugin questions
Topic: How to use Moviesetter plugin
Replies: 2
Views: 2710

How to use Moviesetter plugin

I cannot figure out how to use the Moviesetter plugin. Could not find a help file or example so have used an example from the RapaGUI help manual - an animation player. @REQUIRE "RapaGUI" @REQUIRE "moviesetter" @ANIM 1, "Pogo",{Loader = "moviesetter|inbuilt"} ...