Search found 120 matches

by skinkairewalker
Wed Jan 13, 2021 4:24 am
Forum: Coding Questions
Topic: Send and Receive PHP data in encrypted form
Replies: 0
Views: 1891

Send and Receive PHP data in encrypted form

some way to easily communicate from SpiderBasic with PHP in encrypted form ? I did an example using cryptoJS with AES, but it seems to be a pain to communicate with PHP using AES, is there a better way to do this? Procedure Main(URL$, Success) Debug "Script URL: " + URL$ Debug "Loadin...
by skinkairewalker
Sat Jan 02, 2021 12:24 am
Forum: Coding Questions
Topic: Firebase-app.js conflict with Dojo ?
Replies: 0
Views: 1647

Firebase-app.js conflict with Dojo ?

hello everyone, im trying to wrap firebase fcm with my application, follow code below : Procedure AppendHead(content.s) Debug "head" !$("head").append(v_content); EndProcedure Procedure AppendBody(content.s) !$("body").append(v_content); EndProcedure Procedure AppendCon...
by skinkairewalker
Fri Dec 18, 2020 3:30 pm
Forum: Coding Questions
Topic: has anyone implemented firebase FCM with sb?
Replies: 3
Views: 1313

has anyone implemented firebase FCM with sb?

Hello everyone, has anyone implemented the FCM (notification) firebase in spiderbasic? I would like to send notifications to my users in a simple way ...
by skinkairewalker
Mon Dec 14, 2020 2:43 am
Forum: Coding Questions
Topic: Swipper Js + Bootstrap dont works together ?
Replies: 0
Views: 1662

Swipper Js + Bootstrap dont works together ?

hello everyone ! i am trying study swipper js and bootstrap , but when i put both in same project, swipper dont works ... Someone can help me ? code below >: Procedure AppendHead(content.s) Debug "head" !$("head").append(v_content); EndProcedure Global HTML.s tmp.s = ""...
by skinkairewalker
Mon Dec 07, 2020 3:31 am
Forum: Coding Questions
Topic: [ BootStrap ] check that all images have been loaded
Replies: 7
Views: 1739

Re: [ BootStrap ] check that all images have been loaded

Peter wrote:But BindEvent(#PB_Event_Loading) applies only to the images loaded via LoadImage().

If I understood skinkairewalker correctly, the images are loaded/displayed directly with BootStrap.

exactly :)

thank you for your attention Peter and plouf
by skinkairewalker
Mon Dec 07, 2020 3:29 am
Forum: Coding Questions
Topic: [ BootStrap ] check that all images have been loaded
Replies: 7
Views: 1739

Re: [ BootStrap ] check that all images have been loaded

something like this... Procedure BlockUI(Message.s) ! $.blockUI({ message: v_message }); EndProcedure Procedure UnblockUI() ! $.unblockUI(); EndProcedure BlockUI("<h1>Please wait until all images have been loaded.....</h1>") ; load some demo-images: For Counter = 0 To 20 ! $("body&qu...
by skinkairewalker
Sun Dec 06, 2020 5:43 pm
Forum: Coding Questions
Topic: [ BootStrap ] check that all images have been loaded
Replies: 7
Views: 1739

Re: [ BootStrap ] check that all images have been loaded

I would like to create a loading screen, and just close until the images being loaded by the bootstrap are all loaded
by skinkairewalker
Sat Dec 05, 2020 4:31 am
Forum: Coding Questions
Topic: [ BootStrap ] check that all images have been loaded
Replies: 7
Views: 1739

[ BootStrap ] check that all images have been loaded

Hello, I have the following problem: I am having trouble creating a loading spinner for images that I am displaying using bootstrap ... (the image links are provided by an external API)
by skinkairewalker
Wed Nov 11, 2020 2:10 pm
Forum: Coding Questions
Topic: can I use Recaptcha in SB without needing PHP?
Replies: 2
Views: 1197

can I use Recaptcha in SB without needing PHP?

Hello guys, is there any way to use Google REcaptcha with SB?
by skinkairewalker
Sun Nov 01, 2020 7:59 pm
Forum: Coding Questions
Topic: [ LIST ] Problem on Loop with For inside For
Replies: 1
Views: 811

[ LIST ] Problem on Loop with For inside For

hello everyone !! i am trying to compare informations between List Information like this code below : Procedure UnificarIguais(*Struct.Json) Debug "UnificarIguais()" counter.i = 0 tmpName.s = "" listSize.i = ListSize(*Struct\other())-1 For i = 0 To listSize SelectElement(*Struct\...