1
Scripting / Reduce scroll speed in History plugin?
« on: November 30, 2024, 02:40:41 PM »
Is is posible? How?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
class PopUpImage
{
_my_image=null;
constructor()
{
_my_image = fe.add_image( "help.png", 0, 0 );
_my_image.visible=false;
fe.add_signal_handler( this, "on_signal" )
}
function on_signal( signal )
{
if ( signal == "custom1" )
{
_my_image.visible=!_my_image.visible;
return true;
}
return false;
}
}
local blah = PopUpImage();
Logged