window activate or select

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

window activate or select

Dziedzic, Peter

Hello,

i am searching for a method that will be entered, when a window will be selected\ activated.

I have a window that is build and opened already. Then i select another window and later i change to the first window.  I want a method that will be executed now. Does smalltalk doesnt have a method for this?

Mit freundlichen Grüßen - best regards,

Peter Dziedzic

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

Carl Zeiss Industrielle Meßtechnik GmbH/ Industrial Metrology
Softwareentwicklung/Software Development

P e t e r  D z i e d z i c

73446 Oberkochen, Germany

tel: +49 73 64 20-84 48
fax: +49 73 64 20-48 00
e-mail: [hidden email]
http://www.zeiss.de/imt

Carl Zeiss Industrielle Messtechnik GmbH
Carl-Zeiss-Straße 22, 73447 Oberkochen
Aufsichtsratsvorsitzender: Dr. Dieter Kurz
Geschäftsführer: Dr. Rainer Ohnheiser, Felix Hoben, Hanspeter Mürle
Sitz der Gesellschaft: 73446 Oberkochen, Deutschland
Amtsgericht Ulm, HRB 501561, USt-IdNr.: DE 811 515 346




----------------------------------------
This message is intended for a particular addressee only and may contain business or company secrets. If you have received this email in error, please contact the sender and delete the message immediately. Any use of this email, including saving, publishing, copying, replication or forwarding of the message or the contents is not permitted.


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: window activate or select

Holger Kleinsorgen-4
Am 12.04.2010 08:36, schrieb Dziedzic, Peter:
>
> Hello,
>
> i am searching for a method that will be entered, when a window will be
> selected\ activated.
>

Application windows trigger #enter and #exit :

self mainWindow
   when: #enter do: [ " entered the window " .... ];
   when: #exit do: [ " exited the window " .... ].

Evaluate "ApplicationWindow eventsTriggered" to see all possible events
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc