Search found 133 matches

by Stefan
Fri Jan 12, 2024 5:46 pm
Forum: Coding Questions
Topic: Jitsi in a webgadget
Replies: 3
Views: 1010

Re: Jitsi in a webgadget

And what do you want to tell us now?
I tried it with Linux and Windows. Neither works.

It's not about opening the gadget, but rather I can't get the rights to use the microphone in this gadget
by Stefan
Fri Jan 12, 2024 7:43 am
Forum: Coding Questions
Topic: Jitsi in a webgadget
Replies: 3
Views: 1010

Jitsi in a webgadget

I would like to have Jitsi in a webgadget. Unfortunately, I don't get permission for the microphone and camera. Does anyone know a solution? And why is that actually the case? If OpenWindow(0, 0, 0, 1000, 800, "WebGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) WebGadget(0, 10,...
by Stefan
Sat Dec 30, 2023 6:15 pm
Forum: Coding Questions
Topic: How to use IsSound()
Replies: 0
Views: 1717

How to use IsSound()

InitSound() Procedure Loading(Type, Filename$, ObjectId) Debug Filename$ + " loaded (id = " + ObjectId + ")" ; PlaySound(0) ; play the sound EndProcedure Procedure LoadingError(Type, Filename$) Debug Filename$ + ": loading error" Debug IsSound(0) Debug IsSound(testsoun...
by Stefan
Wed Nov 01, 2023 7:42 pm
Forum: Coding Questions
Topic: Creating a websocket server
Replies: 2
Views: 5481

Re: Creating a websocket server

Thanks for your answer.
I already know the Purebasic server, that's what I use.
But of course it would be even nicer if I could do this with Spiderbasic
by Stefan
Wed Nov 01, 2023 8:20 am
Forum: Coding Questions
Topic: Creating a websocket server
Replies: 2
Views: 5481

Creating a websocket server

Is it possible to create a websocket server with Spiderbasic?
by Stefan
Thu Oct 05, 2023 7:36 am
Forum: Coding Questions
Topic: Why isn't this working?
Replies: 3
Views: 4786

Re: Why isn't this working?

This code also doesn't work with Spiderbasic 2.51
by Stefan
Fri Sep 29, 2023 6:58 pm
Forum: Coding Questions
Topic: Mouse over gadget
Replies: 14
Views: 18726

Re: Mouse over gadget

I didn't realize you had to pay for help here. I just pointed out that the code doesn't work with Imagegadgets. This wasn't an accusation, but a hint so that other readers don't have to search for hours to find out exactly that. As you can see, this solution is good if you are looking for a solution...
by Stefan
Fri Sep 29, 2023 3:47 pm
Forum: Coding Questions
Topic: Mouse over gadget
Replies: 14
Views: 18726

Re: Mouse over gadget

Did you really test it with an imagegadget? I don't see it.
Your Code doesn't work with Imagegadgets.
And I use UseGadgetList()

Code: Select all

    If IsWindow(#mainw)
    UseGadgetList(WindowID(#mainw))
    ...
   CloseGadgetList()   
 EndIf
by Stefan
Fri Sep 29, 2023 2:32 pm
Forum: Coding Questions
Topic: Mouse over gadget
Replies: 14
Views: 18726

Re: Mouse over gadget

Enumeration Windows #Window1 #Window2 EndEnumeration Enumeration Gadgets #Window1_Button1 #Window1_Button2 #Window1_Button3 #Window2_Button1 #Window2_Button2 #image #imagegadget EndEnumeration Procedure MouseOver(Element) Protected GadgetID ! v_gadgetid = v_element.target.GadgetID Debug "Mouse...
by Stefan
Fri Sep 29, 2023 2:09 pm
Forum: Coding Questions
Topic: Mouse over gadget
Replies: 14
Views: 18726

Re: Mouse over gadget

First of all, thank you very much for your efforts, Peter! This code also doesn't work when I incorporate it into my program. I have since discovered that it is due to the command: "usegadgetlist(#window)" and "closegadgetlist()" that I use. As soon as you use these commands, it ...