Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: viewtopic.php?t=37864

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

Transparent ID Number background

Simple, Free, Open Source UltraVNC Wrapper Supporting Windows and Mac OSX
Post Reply
G64
Posts: 2
Joined: 2011-03-01 14:51

Transparent ID Number background

Post by G64 »

Hi everyone,

Really cool to find this yesterday. Have been fiddling a lot of time already. Really cool to see such stuff.

I am trying to alter the InstantSupport.au3 a little bit. The thing i am trying to accomplish is to have the ID number have a transparent background that overlays the logo.jpg in the background.

I have tried several things an googled also but i can`t get it to work. If i enter the $GUI_BKCOLOR_TRANSPARENT in the viewer au3 to the corresbonding label field it does show the underlying logo.jpg, but then i cant see the ID number itself.

Code: Select all

; Create the GUI.
$InstantSupport = GUICreate( $str_Program_Title, 450, 200, -1, -1, BitOR( $WS_SYSMENU,$WS_CAPTION,$WS_POPUP,$WS_POPUPWINDOW,$WS_BORDER,$WS_CLIPSIBLINGS,$WS_MINIMIZEBOX ) )
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
GUISetBkColor( 0xFFFFFF )
$Label2 = GUICtrlCreateLabel( $IDNumber, 0, 100, 450, 100, $SS_CENTER,$GUI_BKCOLOR_TRANSPARENT,$GUI_BKCOLOR_TRANSPARENT )
GUICtrlSetFont( -1, 50, 800, 0, "Arial Black" )
$Pic1 = GUICtrlCreatePic( $WorkingPath & "\logo.jpg", 0, 0, 450, 200, BitOR( $SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS ) )
GUISetState( @SW_SHOW )
Have any other people accomplished this behaviour in the viewer? I have found Mr. Rat created a similar idea, but before i ask him directly (if that is even possible).

Thanks in advance for even reading my post.
Last edited by G64 on 2011-03-01 15:59, edited 1 time in total.
User avatar
supercoe
400
400
Posts: 1732
Joined: 2009-07-20 21:27
Location: Walker, MN
Contact:

Re: Transparent ID Number background

Post by supercoe »

G64,

Glad you like the project. :D

You'll find tons of info on the AutoIT forums for modifying.

Here was a quick search for "text over image":
http://www.autoitscript.com/forum/topic ... ver-image/

Good luck and if you make anything awesome do share. :)
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!
G64
Posts: 2
Joined: 2011-03-01 14:51

Re: Transparent ID Number background

Post by G64 »

Yes i have already found some info but i am not a programmer. I do know AutoIT is "fairly" simple but couldnt get it to work. So i thought to ask and maybe someone already found something simple to achieve this :)

Many hands, make light work :)
Post Reply