[Feature request] InLine-JS and #PB_Any

Got an idea for enhancing SpiderBasic? New command(s) you'd like to see?
User avatar
Caronte3D
Posts: 189
Joined: Sat Nov 23, 2019 5:21 pm
Location: Some Universe

[Feature request] InLine-JS and #PB_Any

Post by Caronte3D »

This works (without #PB_Any):

Code: Select all

Define buttonGadget = ButtonGadget(0, 10, 100, 100,100,"Click Me")
! $(v_buttonGadget.div).css("zIndex", 200);
This doesn't work: (with #PB_Any):

Code: Select all

Define buttonGadget = ButtonGadget(#PB_Any, 10, 100, 100,100,"Click Me")
! $(v_buttonGadget.div).css("zIndex", 200);