As this thread is for the How to setup iOS Deployment, do you want to open a new thread with detailed descriptions of each step you do?
Search found 60 matches
- Sun Feb 12, 2023 7:35 pm
- Forum: Tricks 'n' Tips
- Topic: iOS-Deployment done easy :-)
- Replies: 11
- Views: 20751
- Sun Feb 12, 2023 7:33 pm
- Forum: Bugs Reports
- Topic: [Done] #PB_Window_Maximize missing
- Replies: 7
- Views: 535
- Fri Feb 10, 2023 7:43 am
- Forum: Coding Questions
- Topic: Working in dev but not after deploy
- Replies: 6
- Views: 714
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).
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).
- Mon Feb 06, 2023 9:11 am
- Forum: Coding Questions
- Topic: Canvas is originally white
- Replies: 2
- Views: 265
Re: Canvas is originally white
The Flag doesn't help?
Code: Select all
#PB_CANVAS_TRANSPARENT
- Thu Feb 02, 2023 10:22 am
- Forum: Tricks 'n' Tips
- Topic: iOS-Deployment done easy :-)
- Replies: 11
- Views: 20751
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...
- Thu Feb 02, 2023 10:16 am
- Forum: General Discussion
- Topic: Color selection
- Replies: 1
- Views: 206
Re: Color selection
Thanks for sharing. Interesting example!
- Thu Feb 02, 2023 10:15 am
- Forum: Coding Questions
- Topic: ComboBoxGadget and #PB_EventType_Change
- Replies: 3
- Views: 301
Re: ComboBoxGadget and #PB_EventType_Change
Any chance to provide us with a minimal working example that shows the situation/problem?
Thank you.
Thank you.
- Thu Jan 19, 2023 8:46 pm
- Forum: Tricks 'n' Tips
- Topic: Matching SpiderBasic Gadget ID to Dojo ID
- Replies: 1
- Views: 1086
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...
- Wed Jan 11, 2023 8:10 pm
- Forum: Coding Questions
- Topic: Drag and Drop (for "Cards")
- Replies: 7
- Views: 360
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...
- Wed Jan 11, 2023 5:30 pm
- Forum: Coding Questions
- Topic: Drag and Drop (for "Cards")
- Replies: 7
- Views: 360
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...