1
Themes / Re: How to add curvature and scanlines to the snapshots?
« on: December 01, 2024, 07:28:18 AM »
Thank you, but I finally converted all my snaps using actions and automation with Photoshop.

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.
display display
layout horizontal
romlist MAME
in_cycle yes
in_menu yes
global_filter
rule Rotation equals 0|180
display display
layout vertical
romlist MAME
in_cycle yes
in_menu yes
global_filter
rule Rotation equals 90|270
_my_image = fe.add_image( "help.png", 0, 0 );
The 0,0 is your X and Y cords, change those to position it where you want
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