Search found 118 matches

by T4r4ntul4
Tue Mar 23, 2021 5:05 pm
Forum: Coding Questions
Topic: How to make a custom theme?
Replies: 1
Views: 1135

Re: How to make a custom theme?

Solution for future reference:
viewtopic.php?f=9&t=2101
by T4r4ntul4
Tue Mar 23, 2021 5:04 pm
Forum: Tricks 'n' Tips
Topic: Change css files for a custom theme
Replies: 1
Views: 6091

Change css files for a custom theme

Hey all, Small tutorial on how to edit a custom theme for your webapp. This is how i did it, maybe there are better solutions, but this worked for me. Its important to have at least 2 monitors. And before you begin editing always make a backup. My main browser is Mozilla firefox (I dont know if this...
by T4r4ntul4
Sun Mar 21, 2021 9:15 am
Forum: Coding Questions
Topic: Change button gadget during callback procedure
Replies: 8
Views: 2556

Re: Change button gadget during callback procedure

And if you change before the process starts?
by T4r4ntul4
Sun Mar 21, 2021 9:04 am
Forum: Coding Questions
Topic: Change button gadget during callback procedure
Replies: 8
Views: 2556

Re: Change button gadget during callback procedure

Use SetGadgetText(#Gadget, Text$) when you start the process, and again SetGadgetText(#Gadget, Text$) when it finishes. Maybe use DisableGadget(#Gadget, State) too, because you dont want users press that button again, when its processing data.
by T4r4ntul4
Sat Mar 20, 2021 3:01 pm
Forum: Coding Questions
Topic: How to make a custom theme?
Replies: 1
Views: 1135

How to make a custom theme?

Hey all, I have a really hard time understanding how to make a custom theme for all the gadgets. Now its standard white, but i want it all dark mode. I have searched this forum, but there is actually none helpful threads on this matter. I have tried several things already, and iam getting nowhere: -...
by T4r4ntul4
Sat Mar 13, 2021 11:40 am
Forum: Coding Questions
Topic: How to delete a file on the server?
Replies: 3
Views: 1383

Re: How to delete a file on the server?

Just a thought: If i can locate that 'deletefile.php' on your server i can potentially delete your whole website with that... I dont think its a good idea to let a Spiderbasic script (what can be read by the user, and thus see the link to 'deletefile.php') communicate with that php file. Just my two...
by T4r4ntul4
Thu Jan 21, 2021 1:14 am
Forum: Coding Questions
Topic: Is there a equivalent GetGadgetItemText() for EditorGadget?
Replies: 2
Views: 1175

Is there a equivalent GetGadgetItemText() for EditorGadget?

Hi all, This has me puzzled somewhat. What i try to do is the following: I have some data in this form: (with spaces between them) row1 item1 name1 etc1 etc1 etc1 row2 item2 name2 etc2 etc2 etc2 row3 item3 name3 etc3 etc3 etc3 row4 item4 name4 etc4 etc4 etc4 I want to paste them in a EditorGadget (o...
by T4r4ntul4
Mon Jan 11, 2021 9:40 pm
Forum: Coding Questions
Topic: How to load XML file with pressing on a button
Replies: 2
Views: 1208

Re: How to load XML file with pressing on a button

Thanks, never thought of that. Its working flawless!
by T4r4ntul4
Mon Jan 11, 2021 8:52 pm
Forum: Coding Questions
Topic: How to load XML file with pressing on a button
Replies: 2
Views: 1208

How to load XML file with pressing on a button

Hi all, I have a problem with loading XML > on the fly < I have it working that if my app starts it loads an XML (from a php file that echo's to XML), and can get that read just fine. But i need to get it working too if i press a button, that i can do something like this: LoadXML(#XML_Something, &qu...