Jump to content

Recommended Posts

Posted

Hi all programmers!

Very much in need of your help.

Tell me how to make a window invisible to the projector?

I got to do the following:

Opt("GUIOnEventMode", 1)
$Form = GUICreate("Control Panel", 300, 200, -1, -1)
$Button1 = GUICtrlCreateButton("Start",10,10,60,20)
GUICtrlSetOnEvent(-1,"Start")
$Button2 = GUICtrlCreateButton("Exit",80,10,60,20)
GUICtrlSetOnEvent(-1,"Quit")GUISetState(@SW_SHOW)
Sleep(3000)GUISetStyle(0x94000003)
While 1
Sleep(1000)
WEndFunc Start()
MsgBox(0,0,"Starting!")
EndFunc
Func Quit()
Exit
EndFunc

But in this case, is not functioning and highly variable interface! (

I will be very grateful for any tips and help - really need to solve this problem! And I think it is solvable times can hide tooltips and windows.

Posted
WinSetState('My Window', '', @SW_HIDE) ??? Works on projector as well

----------------------------------------

:bye: Hey there, was I helpful?

----------------------------------------

My Current OS: Win8 PRO (64-bit); Current AutoIt Version: v3.3.8.1

Posted

Check this: http://forum.lowyat.net/topic/1136754/all

----------------------------------------

:bye: Hey there, was I helpful?

----------------------------------------

My Current OS: Win8 PRO (64-bit); Current AutoIt Version: v3.3.8.1

Posted (edited)

@AndreyS

MKISH is right, this has nothing to deal with AutoIt, nor any other programming language.

You need to use the monitor manager (built-in Windows), to extend your screen and then move the windows in or out of this screen. (using WinMove function)

Br, FireFox.

Edited by FireFox
Posted

I know of course that decision! ) Thank you!

But it is not suitable as the projector can only duplicate the image of the main monitor. Network projector in a different mode does not work!

In any case, another solution.

Posted

Need so that my program was acting like the software of the projector, which is visible on the monitor, but not displayed on the projector.

I almost achieved this using a particular property, but it does not work properly. And how do I do not know.

Posted (edited)

as the projector can only duplicate the image of the main monitor.

It only displays what your computer sends, you need to configure that display with your computer and not your projector. Edited by FireFox
Posted

Whatever it was the projector must display everything on the main computer monitor but my application. Application should behave exactly the same as tips AutoIt. That's it.

Posted (edited)

Whatever it was the projector must display everything on the main computer monitor but my application. Application should behave exactly the same as tips AutoIt. That's it.

I'm afraid it's not possible. That's why you can extend your screen to hide what you don't want others to see and I don't see the problem with that. Edited by FireFox

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...