Search found 1552 matches

by BruceSteers
Wednesday 10th April 2024 6:27pm
Forum: Project showcase
Topic: Blockski+ , like Klotski but with a board editor.
Replies: 45
Views: 8559

Re: Blockski+ , like Klotski but with a board editor.

Some more updates , currently on V 1.3.38 Blocks can now be flipped horizontally or vertically A new paint mode for Wall blocks PaintErase. if paint mode is set to Erase it does not draw the wall but it erases the map beneath it giving invisible edges. (see the attached snapshot that has large Erase...
by BruceSteers
Wednesday 10th April 2024 8:41am
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 1097

Re: Suggestions for checking that all array values are unique

Ta. I wasn't clear enough. I just need to check it not replace it. So have gone with Public Function CheckArrayUniqueness(aList as Integer[]) As Boolean Dim aNewList As New Integer[] For c As Integer = 0 To aList.Max If Not aNewList.Exist(aList[c]) Then aNewList.Add(aList[c]) Next Return aNewList.C...
by BruceSteers
Tuesday 9th April 2024 10:08pm
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 504

Re: Media Player

I heard you the first time :D

(So I deleted the duplicate quoted post 😉 )
Why do you post your messages twice?
by BruceSteers
Tuesday 9th April 2024 5:59pm
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 1097

Re: Suggestions for checking that all array values are unique

Hi all. Looking for suggestions. My Integer[] must only contain unique values. I just can't think of a really good way that does not involve a lot of unnecessary statistical manipulations. tia b Off the top of my head I think just making a new list would be simplest.... Public sub Uniquify(aList as...
by BruceSteers
Monday 8th April 2024 7:14pm
Forum: General
Topic: Inquire firefox
Replies: 2
Views: 195

Re: Inquire firefox

I doubt it's possible. you'd need an API into firefox to get it's internal data like that. It does not seem to have one , DBus has an OpenURL method but that's about it. there's some extensions that might help but that'd be "installing something" maybe you could monitor the connection stat...
by BruceSteers
Saturday 6th April 2024 3:58pm
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 504

Re: Media Player

yeah gambas does not really do anything with codecs, the MediaPlayer is basically a gstreamer interface. So issues will most likely be gstreamer issues at heart. maybe search the software catalogue for gstreamer plugins (the good the bad and the ugly) and h264 h265 , aac I don't know about "abo...
by BruceSteers
Friday 5th April 2024 10:31am
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 504

Re: Media Player

Just a note.

I have problems with MediaView when loading a new URL without calling MediaView.Stop first.

So i always Stop the player before loading something else.
by BruceSteers
Friday 5th April 2024 10:28am
Forum: Component
Topic: mediaview help
Replies: 5
Views: 4759

Re: mediaview help

I think that the original (solved) problem was the file:// prefix had not been used for the URL.
I had to look at a german version and it was a simple issue with the url command. Thanks. once again I am thinking too complex.
Then the dreaded "Cannot set status" was another issue
by BruceSteers
Friday 5th April 2024 10:24am
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 504

Re: Media Player

hmm, not sure, according to the web it is a "Container format" so i guess it's contents can vary possibly a missing codec? , i think it also supports drm. Quote from wikipedia... Video: MPEG-H Part 2 (H.265/HEVC), MPEG-4 Part 10 (H.264/AVC) and MPEG-4 Part 2 Other compression formats are l...
by BruceSteers
Friday 5th April 2024 7:37am
Forum: General
Topic: [Sloved] Help with getting a image to fit onto a button
Replies: 12
Views: 2290

Re: Help with getting a image to fit onto a button

Public Sub Form_Open() ' make Button1.Picture a picture with text below it. MakePictureText(Button1, Picture["icon:/32/alarm"], "Alarm call") End '' Make a picture with text below it. can be used on any object that has a .Text and a .Picture property. Public Sub MakePictureText(...