Search found 68 matches

by bembulak
Fri Feb 10, 2023 7:43 am
Forum: Coding Questions
Topic: Working in dev but not after deploy
Replies: 6
Views: 2069

Re: Working in dev but not after deploy

Off topic:
Seems like another poor soul wants to update a firmware for Epson PoS/Fiscal printers via the Webinterface.


On topic:
I'm sorry, I can't test at the moment (no File.io access).
by bembulak
Mon Feb 06, 2023 9:11 am
Forum: Coding Questions
Topic: Canvas is originally white
Replies: 2
Views: 1632

Re: Canvas is originally white

The Flag

Code: Select all

#PB_CANVAS_TRANSPARENT
doesn't help?
by bembulak
Thu Feb 02, 2023 10:22 am
Forum: Tricks 'n' Tips
Topic: iOS-Deployment done easy :-)
Replies: 13
Views: 39037

Re: iOS-Deployment done easy :-)

I'm using a VmWare image of Mac OS X 10.9.5 That might be the cause(s). A virtual version of OSX (which is per Apples Terms of Use more or less prohibited), that will not behave as a 'real running OS' AND 10.9.5 - that's quite outdated. All the before mentioned procedures (having a recent OS with c...
by bembulak
Thu Feb 02, 2023 10:16 am
Forum: General Discussion
Topic: Color selection
Replies: 1
Views: 3712

Re: Color selection

Thanks for sharing. Interesting example!
by bembulak
Thu Feb 02, 2023 10:15 am
Forum: Coding Questions
Topic: ComboBoxGadget and #PB_EventType_Change
Replies: 3
Views: 1499

Re: ComboBoxGadget and #PB_EventType_Change

Any chance to provide us with a minimal working example that shows the situation/problem?

Thank you.
by bembulak
Thu Jan 19, 2023 8:46 pm
Forum: Tricks 'n' Tips
Topic: Matching SpiderBasic Gadget ID to Dojo ID
Replies: 1
Views: 4183

Matching SpiderBasic Gadget ID to Dojo ID

Hey! An SB program has some interesting Objects in the browser at runtime. spider.DigitRegistry holds the Dojo Toolkit UI Elements. I played around a little (and read the Dojo docs) and finally found the connection between SB and Dojo, as each of the Elements in the DigitRegistry has a property call...
by bembulak
Wed Jan 11, 2023 8:10 pm
Forum: Coding Questions
Topic: Drag and Drop (for "Cards")
Replies: 8
Views: 1084

Re: Drag and Drop (for "Cards")

For example, you can use callbacks to find out which target was dropped on: Enumeration #window #card1 #card2 #card3 #target1 #target2 EndEnumeration Procedure DroppedOnTarget1Callback() MessageRequester("Dropped on #target1") EndProcedure Procedure DroppedOnTarget2Callback() MessageReque...
by bembulak
Wed Jan 11, 2023 5:30 pm
Forum: Coding Questions
Topic: Drag and Drop (for "Cards")
Replies: 8
Views: 1084

Re: Drag and Drop (for "Cards")

That's really interesting! The frame gets the "dropped Gadget" as parameter, right? Is there a way to get from the jQuery 'ui' object back to the SB Gadget-ID? Example: ; https://jqueryui.com/draggable/ ; Enumeration #window #frame #button EndEnumeration Procedure ButtonHandler() Debug &qu...
by bembulak
Fri Jan 06, 2023 4:20 pm
Forum: Coding Questions
Topic: Drag and Drop (for "Cards")
Replies: 8
Views: 1084

Re: Drag and Drop (for "Cards")

useful wrote: Fri Jan 06, 2023 3:28 pm Drag & Drop Yes! https://www.purebasic.com/documentation/
Drag & Drop No! https://www.spiderbasic.com/documentation/
Thank you.
by bembulak
Fri Jan 06, 2023 3:23 pm
Forum: Coding Questions
Topic: Drag and Drop (for "Cards")
Replies: 8
Views: 1084

Drag and Drop (for "Cards")

Hi, I've been playing around with Windows and Gadgets for a few days now. I'd like to drag and drop Gadgets around, but just can't bring anything to work. My Idea was to have a window with some containers (FrameGadget or ContainerGadget?) and to move child-objects (canvas?) from on Frame to another....