|
The comments are owned by the author. We aren't responsible for their content.
Author | Thread |
---|---|
nubechecorre |
Published: 2008/12/1 17:00 Updated:
2008/12/1 17:00
|
Just can't stay away
Joined: 11/24/2006
From: Sanremo
Comments: 1899
|
Re: ALT+TAB Switching - On OS4.1!
Good commodity
|
jahc |
Published: 2008/12/2 3:09 Updated:
2008/12/2 3:13
|
Not too shy to talk
Joined: 11/22/2006
From:
Comments: 415
|
Re: ALT+TAB Switching - On OS4.1!
Jahc listens! .. kinda! He heard that people had palette issues, and crashes with 8bit screens.. so:
New update today.. Changes ------- v1.4 Light blue is forced for the background of the selected Screen names, to increase visibility on other systems. v1.3 Some screens that have a different depth cannot be scaled for some reason. For now, these screens will have blank thumbnails until I figure this out |
jahc |
Published: 2008/12/2 9:07 Updated:
2008/12/2 9:07
|
Not too shy to talk
Joined: 11/22/2006
From:
Comments: 415
|
Re: ALT+TAB Switching - On OS4.1!
Paul, your email had no return address!
Quote:
Sounds like a good idea. I have too many hopes on the keyboard version though. I might never finish all the things I have planned. I want to move away from MUI so that I can have effects and real time updating in the thumbnails.. so I might just concentrate on the one program for now. |
samo79 |
Published: 2008/12/2 12:28 Updated:
2008/12/2 12:28
|
Home away from home
Joined: 12/02/2006
From: Italy, Perugia
Comments: 3788
|
Re: ALT+TAB Switching - On OS4.1!
Have you think about OpenAmiga project ? (http://openamiga.org/)
This commodity would be the ideal for a standard integration in future OS4's release |
PEB |
Published: 2008/12/3 0:13 Updated:
2008/12/3 0:13
|
Not too shy to talk
Joined: 11/29/2006
From:
Comments: 474
|
Re: ALT+TAB Switching - On OS4.1!
Quote:
Paul, your email had no return address! Ooops. I better check my YAM settings. Thanks for replying anyway; and keep up the good coding! |
COBRA |
Published: 2008/12/3 23:33 Updated:
2008/12/3 23:34
|
Not too shy to talk
Joined: 11/24/2006
From:
Comments: 370
|
Re: ALT+TAB Switching - On OS4.1!
@jahc
This is actually a very useful program, but it's playing up here, sometimes the window disappears while cycling through in the window, probably the automatic screen activation brings the other window on top. I think that this problem would be solved if you used WA_StayTop, TRUE in the taglist when opening the window, that will ensure that no other windows can be moved in front of your one. |
jahc |
Published: 2008/12/5 4:01 Updated:
2008/12/5 6:23
|
Not too shy to talk
Joined: 11/22/2006
From:
Comments: 415
|
Re: ALT+TAB Switching - On OS4.1!
How would I set that in MUI?
This had no effect.. struct Window *my_window; getmacro((Object*)WI_main,MUIA_Window_Window,&my_window); SetAttrs((Object*)WI_main,WA_StayTop,TRUE,TAG_DONE,0); I try to open the window twice to get the window to the front.. Please email me at james.carroll .. at .. xnet.co.nz, so we can discuss this further if you have any more ideas! Thanks :) |
salass00 |
Published: 2008/12/5 13:47 Updated:
2008/12/5 13:48
|
Just can't stay away
Joined: 11/30/2006
From: Finland
Comments: 1890
|
Re: ALT+TAB Switching - On OS4.1!
@jahc
Try this: struct Window *my_window; getmacro((Object*)WI_main,MUIA_Window_Window,&my_window); SetWindowAttrs(my_window, WA_StayTop, TRUE, TAG_END); |
jahc |
Published: 2008/12/6 0:03 Updated:
2008/12/6 0:03
|
Not too shy to talk
Joined: 11/22/2006
From:
Comments: 415
|
Re: ALT+TAB Switching - On OS4.1!
That doesnt work either. :(
|
salass00 |
Published: 2008/12/6 6:56 Updated:
2008/12/6 6:56
|
Just can't stay away
Joined: 11/30/2006
From: Finland
Comments: 1890
|
Re: ALT+TAB Switching - On OS4.1!
Probably the tag can only be set in the OpenWindowTags() or OpenWindowTagList() call then.
|