Messages - @thehop [ switch to compact view ]

Pages: prev1 2 [3] 4next
11
hello lanux128 - thats it! - and it works fine for me  - marvelous!  :Thmbsup:
amazingly I see that IrfanView - has this Option too - thanks for that clue - bye  :)

12
Hello all,

I made a similar request for bordeless Application Windows in following Thread
https://www.donationcoder.com/forum/index.php?topic=9399.new#new

A german User named "Icfu" in another Forum compiled a AHK Script to a Fullscreen.exe

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


BTW: I'm looking for a Tool that makes Borderless, rimless, menueless Application-Windows (to show only the Window-Content)

13
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


15
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

Pages: prev1 2 [3] 4next
Go to full version