ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: Make your monitor corners look round

(1/3) > >>

Coeluh:
Maybe kind of useless, but I really wonder what my pc looks like when the corners are overlay with a black image of an outer corner.

Like this.

So 4 times this image, and later on maybe multiple monitor support. Maybe with the ability to set the radius of the rounded corner?

raybeere:
It sounds like a cool effect, although it might get annoying if it covered up the Close button on maximised windows.

Coeluh:
It sounds like a cool effect, although it might get annoying if it covered up the Close button on maximised windows.
-raybeere (April 23, 2009, 01:18 PM)
--- End quote ---
Well I think it wouldn't totally cover the close button.

skrommel:
 :) Try RoundedCorners, a quick script that shows four images in the corners of the screen.

Download the four images and save them as 1.gif, 2.gif, 3.gif and 4.gif in the same folder as the script.

Skrommel


--- ---;RoundedCorners.ahk
;Skrommel @ 2009

#NoEnv
#SingleInstance,Force
SetWorkingDir %A_ScriptDir%
SetWinDelay,0
SetBatchLines,-1

Gui,Color,FFFFFF
Gui,+AlwaysOnTop +TopMost -Caption +E0x20 +Border +ToolWindow
x=0
y=0
Gui,Add,Picture,x%x% y%y%,1.gif
x:=A_ScreenWidth-37
y=0
Gui,Add,Picture,x%x% y%y%,2.gif
x:=A_ScreenWidth-37
y:=A_ScreenHeight-37
Gui,Add,Picture,x%x% y%y%,3.gif
x=0
y:=A_ScreenHeight-37
Gui,Add,Picture,x%x% y%y%,4.gif
Gui,+LastFound
guiid:=WinExist()
Gui,Show,x0 y0 w%A_ScreenWidth% h%A_ScreenHeight% NoActivate
WinSet,TransColor,FFFFFF,ahk_id %guiid%
WinSet,AlwaysOnTop,On,ahk_id %guiid%
SetTimer,TOP,1000
Return


TOP:
WinSet,Top,,ahk_id %guiid%
Return

Coeluh:
:) Try RoundedCorners, a quick script that shows four images in the corners of the screen.

Download the four images and save them as 1.gif, 2.gif, 3.gif and 4.gif in the same folder as the script.

Skrommel


--- ---;RoundedCorners.ahk
;Skrommel @ 2009

#NoEnv
#SingleInstance,Force
SetWorkingDir %A_ScriptDir%
SetWinDelay,0
SetBatchLines,-1

Gui,Color,FFFFFF
Gui,+AlwaysOnTop +TopMost -Caption +E0x20 +Border +ToolWindow
x=0
y=0
Gui,Add,Picture,x%x% y%y%,1.gif
x:=A_ScreenWidth-37
y=0
Gui,Add,Picture,x%x% y%y%,2.gif
x:=A_ScreenWidth-37
y:=A_ScreenHeight-37
Gui,Add,Picture,x%x% y%y%,3.gif
x=0
y:=A_ScreenHeight-37
Gui,Add,Picture,x%x% y%y%,4.gif
Gui,+LastFound
guiid:=WinExist()
Gui,Show,x0 y0 w%A_ScreenWidth% h%A_ScreenHeight% NoActivate
WinSet,TransColor,FFFFFF,ahk_id %guiid%
WinSet,AlwaysOnTop,On,ahk_id %guiid%
SetTimer,TOP,1000
Return


TOP:
WinSet,Top,,ahk_id %guiid%
Return
-skrommel (April 26, 2009, 03:49 PM)
--- End quote ---
Alright, that looks cool! Trying to mod it to work with png files and tinier corners... It shows white :(.

Navigation

[0] Message Index

[#] Next page

Go to full version