Not to rip on Roach or anything but,
This can be accomplished using the registry:
//Get Wallpaper
get=registry_read_string_ext("Control Panel\Desktop","Wallpaper")
get_string("Heres The currently Selected Wallpaper:",get)
//Set Wallpaper
set=get_open_filename("Image Files|*.bmp; *.gif; *.png","")
registry_write_string_ext("Control Panel\Desktop","Wallpaper",set)
//Get Wallpaper Mode
style=registry_read_string_ext("Control Panel\Desktop","WallpaperStyle")
if style="0"{show_message("Your Current WallPaper is set to mode 'Centered'")}
if style="1"{show_message("Your Current WallPaper is set to mode 'Tiled'")}
if style="2"{show_message("Your Current WallPaper is set to mode 'Stretched'")}~Derek~
Edited by GmDude66, 09 November 2005 - 10:14 PM.