Search found 256 matches

by Dirk Geppert
Fri Sep 21, 2018 10:42 am
Forum: General Discussion
Topic: Problems with StringsGadgets with iOS Browser
Replies: 12
Views: 7958

Problems with StringsGadgets with iOS Browser

Unfortunately SpiderBasic Apps have a problem with iOS browsers. When tapping into an StringGadget, the page will scrolled and the cursor placed in another field. You can try it here: http://212.111.241.220/tools/test/spider/index.html And the same implemented with Pb2Web (jQuery): http://212.111.24...
by Dirk Geppert
Wed Sep 19, 2018 6:42 am
Forum: General Discussion
Topic: There is already a iOS SpiderBasic App?
Replies: 14
Views: 7767

Re: There is already a iOS SpiderBasic App?

that was too easy :D thx Peter!
by Dirk Geppert
Tue Sep 18, 2018 2:44 pm
Forum: General Discussion
Topic: There is already a iOS SpiderBasic App?
Replies: 14
Views: 7767

Re: There is already a iOS SpiderBasic App?

What's the current status here?

For Android you can successfully create apps :) - but only with activated debugger. (Is there any way to close the debug window? :? )

For iOS you still need a computer with MacOS or can I do that under Windows? :roll:

Ciao Dirk
by Dirk Geppert
Tue Sep 11, 2018 2:38 pm
Forum: Feature Requests and Wishlists
Topic: SetClipboardText()
Replies: 7
Views: 3533

Re: SetClipboardText()

Args, you're right. It only does not work with my ff62.0. May be a problem of one add on..
I apologize for any inconvenience.
by Dirk Geppert
Tue Sep 11, 2018 11:34 am
Forum: Feature Requests and Wishlists
Topic: SetClipboardText()
Replies: 7
Views: 3533

Re: SetClipboardText()

Thx poshu for that example. Unfortunately it doesn't work with my Firefox browser, although the code seems similar to the following (working) code: <html> <body> <textarea id="input">Copy me</textarea> <button id="copy-button">Copy</button> <script> var input = document.getElemen...
by Dirk Geppert
Thu Sep 06, 2018 11:53 am
Forum: Coding Questions
Topic: How to call a function from html
Replies: 3
Views: 1853

Re: How to call a function from html

Thx Peter.
by Dirk Geppert
Tue Sep 04, 2018 1:36 pm
Forum: Coding Questions
Topic: How to call a function from html
Replies: 3
Views: 1853

Re: How to call a function from html

Got it :D Procedure MyFunc () Debug "You've clicked the link!" EndProcedure If OpenWindow(0, 0, 0, 270, 160, "TextGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) TextGadget(0, 0, 0, WindowWidth(0), WindowHeight(0), "") txt.s = "<h3>Click Test</h3><p>Ple...
by Dirk Geppert
Tue Sep 04, 2018 1:31 pm
Forum: Coding Questions
Topic: How to call a function from html
Replies: 3
Views: 1853

How to call a function from html

I would like to call a function() from a link. Why doesnt work this with SpideBasic? Procedure MyFunc () Debug "You've clicked the link!" EndProcedure If OpenWindow(0, 0, 0, 270, 160, "TextGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) TextGadget(0, 0, 0, WindowWidth...
by Dirk Geppert
Fri Aug 31, 2018 8:01 am
Forum: Tricks 'n' Tips
Topic: Using Nominatim (Search engine for OpenStreetMap data)
Replies: 9
Views: 7165

Re: Using Nominatim (Search engine for OpenStreetMap data)

Inside Procedure BindGadget(Gadget) is L not defined.

Code: Select all

!	map = L.map(dijitContentPane[0]).setView([0, 0], 1);
by Dirk Geppert
Fri Aug 31, 2018 7:30 am
Forum: Tricks 'n' Tips
Topic: Using Nominatim (Search engine for OpenStreetMap data)
Replies: 9
Views: 7165

Re: Using Nominatim (Search engine for OpenStreetMap data)

Hi Peter,
thank you very much - that's allready a great implementation!
The code for BindMarkerEvent() seems to be missing. Please could you give me a hint, how the events of the markers are recognized?

Ciao Dirk