Search found 5 matches
- Tue Jan 10, 2017 10:09 am
- Forum: Tricks 'n' Tips
- Topic: Canvas Gadget to Image URL
- Replies: 0
- Views: 2976
Canvas Gadget to Image URL
Procedure.s CanvasToImageURL(gadget, plugin)
thingy = GadgetID(gadget)
imagedata.s = ""
If plugin = #PB_ImagePlugin_PNG
!v_imagedata = v_thingy.canvas.toDataURL("image/png")
ElseIf plugin = #PB_ImagePlugin_JPEG
!v_imagedata = v_thingy.canvas.toDataURL("image/jpeg")
EndIf ...
- Thu Oct 27, 2016 11:47 am
- Forum: Feature Requests and Wishlists
- Topic: PanelGadget new feature idea
- Replies: 0
- Views: 2142
PanelGadget new feature idea
How about adding the following events to the PanelGadget:
#PB_Event_RightClick
#PB_Event_LeftDoubleClick
To be triggered when a tab is right or double clicked.
How the functionality would work:
Make the clicked tab active if it's not already active (Especially for right click) and then have the ...
#PB_Event_RightClick
#PB_Event_LeftDoubleClick
To be triggered when a tab is right or double clicked.
How the functionality would work:
Make the clicked tab active if it's not already active (Especially for right click) and then have the ...
- Mon Aug 01, 2016 5:58 pm
- Forum: General Discussion
- Topic: License Question
- Replies: 2
- Views: 2883
Re: License Question
Excellent. Many thanks for your prompt response.
- Mon Aug 01, 2016 4:29 pm
- Forum: General Discussion
- Topic: License Question
- Replies: 2
- Views: 2883
License Question
I was wondering about Spiderbasic Licencing...
It's not mentioned on the License info page... But if I was being paid to create an application for someone else, and decided to use SpiderBasic, would they be required to purchase a license as well?
It's not mentioned on the License info page... But if I was being paid to create an application for someone else, and decided to use SpiderBasic, would they be required to purchase a license as well?
- Mon Aug 01, 2016 4:16 pm
- Forum: Coding Questions
- Topic: Desktop events
- Replies: 4
- Views: 4486
Desktop events
I was hoping that there would be a way of capturing desktop events (so that, for example, anything that needs to be the width/height of the "desktop" can be resized without having to check it with a timer (i.e. a full width menubar on the desktop or a full height widget bar))