|
cheeaun
|
 |
« on: September 29, 2006, 12:19:05 PM » |
|
When moving a window, (Click + Drag), the window becomes semi-transparent. That's all. Can be done? 
|
|
|
|
|
Logged
|
|
|
|
|
AndyM
|
 |
« Reply #1 on: September 29, 2006, 08:02:07 PM » |
|
There's a Display setting, under Appearances>Effects, that toggles "show window contents while dragging". If you turn this off, is this what you want?
|
|
|
|
|
Logged
|
|
|
|
|
cheeaun
|
 |
« Reply #2 on: September 29, 2006, 08:16:52 PM » |
|
uh, no. I just want the window the be alpha-transparent, maybe 50%, while the window is moved with the cursor.
|
|
|
|
|
Logged
|
|
|
|
|
nudone
|
 |
« Reply #3 on: September 29, 2006, 11:34:51 PM » |
|
there's plenty of free utils that can do this - i thought someone would have mentioned one by now.
OR, i might be just mistaking it with the way nvidia cards can do it with the options they add to the display properties config.
if i remember the name of a program that does it, i'll post again.
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #4 on: September 30, 2006, 04:15:38 AM » |
|
I have tried to do this in ahk (it's about 10 lines of code), but my first experiment didn't work, possibly because of a, ahk bug (or i'm really dumb). I'll post in the ahk forum the info about this to see if i get any response.
|
|
|
|
|
Logged
|
|
|
|
|
Blaster
|
 |
« Reply #5 on: September 30, 2006, 06:52:06 AM » |
|
I wrote something that can help you if you are moving Forms by clicking on it, not the captionBar... if this can help you... [ copy or print] bool draging=false; bool a=false; void MoveForm() { ReleaseCapture(); SNDMSG( Form1->Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0 ); } __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm1::FormMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift, int X, int Y) { draging=true; a=true; } //--------------------------------------------------------------------------- void __fastcall TForm1::FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { if(a) { if(draging) { Form1->AlphaBlendValue=127; MoveForm(); Form1->AlphaBlendValue=255; } } a=false; } This, off course, could be written better, but i'm in a hurry... :-)
|
|
|
|
« Last Edit: September 30, 2006, 07:04:39 AM by Blaster »
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #6 on: September 30, 2006, 08:05:06 AM » |
|
Here's your solution!
TransparentMove v1 created 30-09-2006: When the user presses ctrl and drags the window, it becomes trasnparent and is moved.
[ Forum Topic][ .ahk Version][ .exe Version]
|
|
|
|
|
Logged
|
|
|
|
|
Blaster
|
 |
« Reply #7 on: September 30, 2006, 11:28:03 AM » |
|
I don't understand, do you need this for your app, or for any window in your OS...??
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #8 on: September 30, 2006, 12:43:01 PM » |
|
I don't understand, do you need this for your app, or for any window in your OS...??
Notice that the solution i presented above is a complete program. You download the ".exe" version, execute it and it'll display an icon on the tray (which should be in the right corner of the screen). To quit it, just right-click the icon and select "exit".
|
|
|
|
|
Logged
|
|
|
|
|
Blaster
|
 |
« Reply #9 on: October 01, 2006, 02:39:01 AM » |
|
No, no, jgpaiva, I downloaded your app and it's ok... i asked cheeaun this because he said: When moving a window, (Click + Drag), the window becomes semi-transparent. That's all.
Can be done? Cheeaun, do you need this in your app, or do you want your OS to behave like this...??
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #10 on: October 01, 2006, 04:00:24 AM » |
|
|
|
|
|
|
Logged
|
|
|
|
|
lanux128
|
 |
« Reply #11 on: October 01, 2006, 09:11:52 PM » |
|
cheeaun: are you the phoenity guy, by any chance?
|
|
|
|
|
Logged
|
|
|
|
|
nite_monkey
|
 |
« Reply #12 on: October 20, 2006, 08:50:22 PM » |
|
you meen the transparent view that microsoft made in there os which makes the window transparent when you drag it, slowing down a slow computer? edit: you know, that may have just been somthing added by nvidia... my bad
|
|
|
|
« Last Edit: October 20, 2006, 08:52:12 PM by nite_monkey »
|
Logged
|
[Insert really cool signature here]
|
|
|
|