CoordMode, ToolTip, Screen ;all coordinates are screen related version=Fibonacci Screen Guide v0095 ;version of script Menu, tray, add, ABOUT, ABOUT ;tray menu Menu, tray, add, Menu, tray, add, Exit, Exit Menu, tray, tip, %Version% Menu, tray, NoStandard Gui,1: +AlwaysOnTop -Caption +ToolWindow +0x400000 ;create a small gui with text High Gui,1: Margin, 1, 1 Gui,1: Add, Text, w25 h15 GHigh VHigh, High ;the G gosub will jump to the High Label when pressed Gui,1: Show, w25 h15,High Gui,2: +AlwaysOnTop -Caption +ToolWindow +0x400000 Gui,2: Margin, 1, 1 Gui,2: Add, Text, w25 h15 GLow VLow, Low Gui,2: Show, w25 h15 ,Low Return High: PostMessage, 0xA1, 2,,, A ;stuffed if I know, from Goyyah on AHK forums KeyWait, LButton, U ;Wait for the mouse to be released when dragged Gosub,Drawlines ;redraw lines when mouse released Return Low: PostMessage, 0xA1, 2,,, A KeyWait, LButton, U ;Wait for the mouse to be released when dragged Gosub,Drawlines Return Drawlines: WinGetPos, HighX, HighY,HighWidth , HighHeight, High ;get postions of High box WinGetPos, LowX, LowY,LowWidth , LowHeight, Low ;get postions of Low box Line1:=highy +(lowy-highy)/100*38.2 Line2:=highy +(lowy-highy)/100*50 Line3:=highy +(lowy-highy)/100*61.8 Line4:=highy +(lowy-highy)/100*150 ;below low 150% Line5:=HighY- (lowy-highy)/100*32 ;above high 132% SplashImage 1:,% "B W" LowX-HighX-LowWidth "H2 Y" HighY "X"highx+HighWidth "CW00FF00" ;high SplashImage 2:,% "B W" LowX-HighX-LowWidth "H2 Y" lowY "X"HighX+HighWidth "CW00FF00" ;low SplashImage 3:,% "B W" LowX-HighX-LowWidth "H1 Y" Line1 "X"HighX+HighWidth "CW00FF00" ;mid high SplashImage 4:,% "B W" LowX-HighX-LowWidth "H1 Y" Line2 "X"HighX+HighWidth "CW00FF00" ;mid SplashImage 5:,% "B W" LowX-HighX-LowWidth "H1 Y" Line3 "X"HighX+HighWidth "CW00FF00" ;mid low SplashImage 6:,% "B W" LowX-HighX-LowWidth "H1 Y" Line4 "X"HighX+HighWidth "CW00FF00" ;predlow SplashImage 7:,% "B W" LowX-HighX-LowWidth "H1 Y" Line5 "X"HighX+HighWidth "CW00FF00" ;predhigh Return ABOUT: Gui,9:Font,Bold Gui,9:Add,Text,x+10 yp+10,%version% Gui,9:Font Gui,9:Add,Text,xm+10,'%Version%' draws Lines on the Screen as per the name . Gui,9:Add,Text,xm+10,Its all straight forward and its only real use is to draw Lines on stock market graphs. Gui,9:Add,Text,xm+10,Original Idea and request by Aquarelle Gui,9:Font,CBlue underline Gui,9:Add,Text,xm+10,http://www.donationcoder.com/Forums/bb/index.php?topic=4859.0 Gui,9:Add,Text,y+0,`t Gui,9:Font Gui,9:Font,Bold Gui,9:Add,Text,xm+10 yp+10,DonationCoder Gui,9:Font Gui,9:Add,Text,xm+10,Please support the DonationCoder community Gui,9:Font,CBlue underline Gui,9:Add,Text,xm+10 GDONATIONCODER,www.DonationCoder.com Gui,9:Font Gui,9:Add,Text,y+0,`t Gui,9:Font,Bold Gui,9:Add,Text,xm+10 yp+10,AutoHotkey Gui,9:Font Gui,9:Add,Text,xm+10,This program was made using AutoHotkey Gui,9:Font,CBlue underline Gui,9:Add,Text,xm+10 GAUTOHOTKEY,www.AUTOHOTKEY.com Gui,9:Font Gui,9:Add,Text,y+0,`t Gui,9:Font,Bold Gui,9:Add,Text,xm+10 yp+10,made by DoubleBogey Gui,9:Font Gui,9:Add,Text,xm+10,Find more mini-apps like this| visit Gui,9:Font,CBlue underline Gui,9:Add,Text,xm+10 GDONATIONCODER,www.DonationCoder.com Gui,9:Font Gui,9:Add,Text,y+0,`t Gui,9:Add,Button,GABOUTOK Default w75,&OK Gui,9:Show,,About %Version% Return ABOUTOK: Gui, 9:Destroy Return DONATIONCODER: Run,http://www.donationcoder.com,,UseErrorLevel Return AUTOHOTKEY: Run,http://www.autoHotkey.com,,UseErrorLevel Return Exit: GuiEscape: ExitApp