Search found 878 matches

by Peter
Fri May 26, 2023 1:07 pm
Forum: Feature Requests and Wishlists
Topic: HTTPRequest() please give back error message
Replies: 2
Views: 6873

Re: HTTPRequest() please give back error message

You can use the following workaround until then. Overwrite the SpiderBasic function and add the missing parameters to the callback: ! spider_HTTPRequest = function (a, k, l, g, d, c) { ! "undefined" === typeof d && (d = 0); ! "undefined" === typeof c && (c = { ! m...
by Peter
Thu May 25, 2023 11:23 am
Forum: Bugs Reports
Topic: [Done] 2.50 b2 Mouse scrolling
Replies: 3
Views: 3879

Re: 2.50 b2 Mouse scrolling

by Peter
Tue May 23, 2023 1:45 pm
Forum: General Discussion
Topic: SpiderBasic 2.50 is out !
Replies: 27
Views: 26201

Re: SpiderBasic 2.50 beta 2 is ready !

Fred wrote: Tue May 23, 2023 1:05 pm Beta 2 is available with some fixes. It should also resolve install issues on Windows !
Good news :D Thanks for the update!
by Peter
Sat May 13, 2023 7:33 am
Forum: General Discussion
Topic: jQuery 3.7.0 Released
Replies: 0
Views: 12444

jQuery 3.7.0 Released

jQuery 3.7.0 is now available! This release has it all: bug fixes, a new method, and a performance improvement!
https://blog.jquery.com/
by Peter
Fri Apr 28, 2023 2:00 pm
Forum: Tricks 'n' Tips
Topic: BlockUI
Replies: 7
Views: 10511

Re: BlockUI

You can overwrite the default options like this:

Code: Select all

! $.blockUI.defaults.css.backgroundColor = 'transparent'; 
! $.blockUI.defaults.css.border = 'none';
! $.blockUI.defaults.css.color = 'lightgreen';
For the full list of options see: https://malsup.com/jquery/block/#options
by Peter
Wed Apr 26, 2023 10:32 am
Forum: Coding Questions
Topic: Toast animation
Replies: 6
Views: 1844

Re: Toast animation

Here is Paul's code with the callback extension: Declare Toast() Declare ToastOut() Declare ToastInCallback() Declare ToastOutCallback() #tWnd=0 Procedure jsToast_In(Window, Callback) ExamineDesktops() Protected wid=WindowID(Window) Protected windowheight=DesktopHeight(0)-WindowHeight(Window) ! $(v_...
by Peter
Sat Apr 08, 2023 6:05 pm
Forum: Coding Questions
Topic: HTTPRequest
Replies: 5
Views: 1526

Re: HTTPRequest

If you look at the output in the Developer Console of your browser, you will see the following: Access to XMLHttpRequest at 'https://www.adouros.gr/projects/papertrade/pelates.php?_=1680976679930' from origin 'http://127.0.0.1:9080' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' h...
by Peter
Fri Mar 31, 2023 4:21 pm
Forum: Feature Requests and Wishlists
Topic: Forms
Replies: 1
Views: 3387

Re: Forms

by Peter
Thu Mar 30, 2023 10:47 am
Forum: Coding Questions
Topic: Fontsize of the debugwindow / editorgadget
Replies: 2
Views: 924

Re: Fontsize of the debugwindow / editorgadget

Stefan wrote: Thu Mar 30, 2023 10:00 am How can I change the Fontsize of the debugwindow / debugwindoweditorgadget?

Code: Select all

LoadFont(0, "Arial", 36)
Define DebugEditorGadget
! v_debugeditorgadget = spider.debug.editorGadget;
SetGadgetFont(DebugEditorGadget, FontID(0))
Debug "Hello World!"
by Peter
Wed Mar 29, 2023 8:02 am
Forum: General Discussion
Topic: SpiderBasic 2.50 is out !
Replies: 27
Views: 26201

Re: SpiderBasic 2.50 beta 1 is ready !

I loaded the Shaders.sb, started it and played a bit with the settings. However, I have to admit that I can't see any changes to the graphics -- no matter what setting I change. Is that because I'm an old fart and my eyes aren't that good anymore? I have checked this again. With Chrome and Firefox ...