AutoHotkey Community

It is currently May 26th, 2012, 7:02 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 5 posts ] 
Author Message
PostPosted: May 24th, 2009, 5:48 am 
Offline

Joined: October 8th, 2006, 8:18 pm
Posts: 96
Location: denmark
hmm, my laptop's bottom half of the screen just conked out (dead screen, replaced by color gradient). I have a smaller monitor I can unpack and hook up to it, but given laziness I'm currently just moving everything up to the portion of the screen that can still be rendered. And then I thought - hey - there should be some sort of AutoHotkey script out there that allows me to manage windows in some ways to take advantage of this situation (or if take advantage of is not quite the right word, make somewhat bearable)

So, in a situation where your screen is a normaly approx 1000 high, but has been cut to 700 with the lower third of the screen just showing a rainbow of colors that keeps everything down there hidden, what hacks would you do? (no, the answer should not be fix the screen, tap it a bit, buy a new laptop. I mean something with AutoHotkey possibilities that could be made to fit such a situation)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 24th, 2009, 8:25 am 
Offline

Joined: February 7th, 2009, 11:28 pm
Posts: 384
Have you tried changing resolution from display properties, though that might not help unless you also have the option to align it to top-right corner (with my desktop monitor I had that option, so maybe you can do it with a laptop too)...

_________________
Hardware: 1.8 GHz laptop with 4 GB ram, Windows XP/SP3
Software: Prevx, Privatefirewall, KeyScrambler.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 24th, 2009, 9:10 am 
Offline

Joined: May 24th, 2007, 3:45 am
Posts: 1121
Here's a simple attempt:
Code:
MaxHeight = 700

SetTimer SizeCheck
Return

SizeCheck:
If GetKeyState("LButton")
   Return ;Hold still, I'm trying tio click you.
WinGetPos,, Y,, Height, A
If (Height > MaxHeight)
   Height := MaxHeight
If (Y + Height > MaxHeight)
   Y := MaxHeight - Height
WinMove A,,, Y,, Height
Return

I thought of a non-AutoHotkey option too. I assume it's already occurred to you that you can move your Task Bar top the top of the screen, but you could instead keep it at the bottom but stretch it out until it's just a little taller then the broken area. That would keep most apps from occupying that space. The windows Magnifier tool could also be used for that purpose.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: hadn't occurred because
PostPosted: May 24th, 2009, 10:46 am 
Offline

Joined: October 8th, 2006, 8:18 pm
Posts: 96
Location: denmark
I hadn't thought of moving the taskbar up because I can't actually grab ahold of the taskbar and move it, although now that I think of it there are probably some registry settings that can be jiggered to do that - so that is interesting.

Just to clarify the situation it seems to be some sort of weird liquid display damage, except it only affects the lower third of the screen and is a single rectangle of multi colored lines stretching across the bottom of the screen. Obviously I am going to have it replaced tomorrow (maybe retired this laptop to media manager around the house) but I found it interesting.
Due to whatever error I am experiencing I now have an extremely irregularly shaped display. It strikes me as an interesting opportunity to play around with the monitor space I have left on this display.

Also the colors on the bottom are quite nice to look at.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 24th, 2009, 7:35 pm 
Offline
User avatar

Joined: October 7th, 2006, 8:45 am
Posts: 3329
Location: Simi Valley, CA
Don't just chuck your laptop away if just the screen is damaged. You can still plug it into an external monitor and use it as a desktop replacement or as a power-friendly home server for downloads or media.

_________________
Ternary (a ? b : c) guide     TSV Table Manipulation Library
Post code inside [code][/code] tags!


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: dra, Exabot [Bot], rbrtryn and 61 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group