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: Frameless no Titlemenu Program Windows = like IE in Fullscreen Mode [F11]

(1/2) > >>

@thehop:
Hello Coders, (xcuse this is english? :-\)

I'm looking for a kind of "borderless (rimless) titlebarless menueless Windows Manager”, to show the Window content
of application windows in Full Screen Kiosk Mode (like Internet Explorer and/or Opera with the [F11] Key).
The menus of the Toolbar, Task borders should remain preserved thereby as fading in menus
(e.g. during mouse contact of the edges of screen, and/or context menu, with systrayoption etc.)


kind regards
@thehop


searching find :::> hophop windowmanager applicationwindows windowsmanager windowcontent randlos rahmenlos fensterlos ähnlich

@thehop:

PS: Similary like this ImageViewers - but even for Program Windows Content:


FastStone MaxView http://www.faststone.org/FSMaxViewDetail.htm

Osiva http://www.noping.net/kent/osiva 
SS: http://www.noping.net/kent/osiva/osiva_ssb-25.jpg

Viewer2   http://kometbomb.net/projects/viewer2
SS: http://kometbomb.net/wp-content/uploads/2007/05/ss1.jpg

lanux128:
this AHK command: [WinSet, Style,..] can do what you want.. :) e.g. this snippet from the help file:
--- ---WinSet, Style, -0xC00000, A  ; Remove the active window's title bar (WS_CAPTION).
can produce this:

Before


After




lanux128:
ok, i've found a thread in the forums that looks similar to the request here.. :)

• tool to fullscreen (not just maximize) any application?

@thehop:
Ahh - looks very nice - thanks a Lot!  :)
 
... BUT goes this a little lesser - just only the window content :-[
so without the Borders - and the Menubar as Context or fade-in Menu - is there a Way to do this?

FullScreen is not absolutely necessary (F11 Kiosk KMode was just a example)
- my preferation is more to menuelesss, rimless (right word?) Application-Windows.


salü @thehop


BTW: A User in this (german) Forum http://www.essential-freebies.de/board/viewtopic.php?t=12821 compiled a AHK Script.

Ich habe das Script ein wenig erweitert.
1. Es wird zusätzlich nun auch die Menüleiste entfernt.
2. Der Menü- und Maximierungsstatus aller Fenster wird in einer temporären Datei (Scriptname.ahk.tmp im Arbeitsverzeichnis) gesichert und nach dem Verlassen der Vollansicht wiederhergestellt.
3. Strg+F11 als Shortcut: keine Kollision mit programmeigener Vollschirmfunktion und gut zu merken.

Kompilierte Exe+Source:
http://icfu.totalcmd.net/Scripts/AHK_FullScreen.zip

FullScreen.ahk:

--- ---GroupAdd, Excludes, Windows Task-Manager ahk_class #32770
GroupAdd, Excludes, ahk_class _As12__TaskSwitchXP_TaskSwitchWnd_
GroupAdd, Excludes, ahk_class Progman
GroupAdd, Excludes, ahk_class Shell_TrayWnd

#IfWinNotActive, ahk_group Excludes

^F11::
Critical
hWnd := WinActive("A")
ToggleFullScreen(hWnd)
Return

ToggleFullScreen(ByRef hWnd)
{
  IniFile := A_ScriptName ".tmp"
  IniRead, Array, %IniFile%, Handles, %hWnd%, Empty
  If (Array="Empty")
    {
      hMenu := DllCall("GetMenu", "UInt", hWnd)
      WinGet, Maximized, MinMax
      DllCall("SetMenu", "UInt", hWnd, "UInt", 0)
      WinMaximize
      WinSet, Style, -0xC00000
      IniWrite, %hMenu%`,%Maximized%, %IniFile%, Handles, %hWnd%
    }
  Else
    {
      StringSplit, Array, Array, `,
      hMenu := Array1
      Maximized := Array2
      DllCall("SetMenu", "UInt", hWnd, "UInt", hMenu)
      If !(Maximized)
        {
          WinRestore
        }
      WinSet, Style, +0xC00000
      IniDelete, %IniFile%, Handles, %hWnd%
    }
}


Icfu
--- End quote ---

Navigation

[0] Message Index

[#] Next page

Go to full version