After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli <pdigonzelli@gmail.com> wrote:
After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application?
TIA
------------------------------ *Ing. Pablo Digonzelli* Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
Guille , functions key does not generate event at all. I think it is a problem for some applications. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Guillermo Polito" <guillermopolito@gmail.com> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> CC: "Any question about pharo is welcome" <pharo-users@lists.pharo.org> Enviados: Lunes, 30 de Junio 2014 19:26:23 Asunto: Re: [Pharo-dev] functions keys To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com > wrote: After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
It will be solved for Pharo 4, with the OSWindow integration. 2014-06-30 19:55 GMT-04:00 Pablo R. Digonzelli <pdigonzelli@gmail.com>:
Guille , functions key does not generate event at all. I think it is a problem for some applications.
------------------------------ *Ing. Pablo Digonzelli* Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
------------------------------ *De: *"Guillermo Polito" <guillermopolito@gmail.com> *Para: *"Pharo Development List" <pharo-dev@lists.pharo.org> *CC: *"Any question about pharo is welcome" <pharo-users@lists.pharo.org> *Enviados: *Lunes, 30 de Junio 2014 19:26:23 *Asunto: *Re: [Pharo-dev] functions keys
To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key.
Take a look at the Key class side methods to access well known keys.
Guille
On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com> wrote:
After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application?
TIA
------------------------------ *Ing. Pablo Digonzelli* Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
Nice!! Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Ronie Salgado" <roniesalg@gmail.com> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Lunes, 30 de Junio 2014 21:01:09 Asunto: Re: [Pharo-dev] functions keys It will be solved for Pharo 4, with the OSWindow integration. 2014-06-30 19:55 GMT-04:00 Pablo R. Digonzelli < pdigonzelli@gmail.com > : Guille , functions key does not generate event at all. I think it is a problem for some applications. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 De: "Guillermo Polito" < guillermopolito@gmail.com > Para: "Pharo Development List" < pharo-dev@lists.pharo.org > CC: "Any question about pharo is welcome" < pharo-users@lists.pharo.org > Enviados: Lunes, 30 de Junio 2014 19:26:23 Asunto: Re: [Pharo-dev] functions keys To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com > wrote: <blockquote> After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 </blockquote>
Function keys do generate events, but no keystroke event, just keydown and keyup. you can implement handleKeyDown: or handleKeyUp: on a Morph, and it will be called on Functionkeys as well. 2014-07-01 1:55 GMT+02:00 Pablo R. Digonzelli <pdigonzelli@gmail.com>:
Guille , functions key does not generate event at all. I think it is a problem for some applications.
------------------------------ *Ing. Pablo Digonzelli* Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
------------------------------ *De: *"Guillermo Polito" <guillermopolito@gmail.com> *Para: *"Pharo Development List" <pharo-dev@lists.pharo.org> *CC: *"Any question about pharo is welcome" <pharo-users@lists.pharo.org> *Enviados: *Lunes, 30 de Junio 2014 19:26:23 *Asunto: *Re: [Pharo-dev] functions keys
To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key.
Take a look at the Key class side methods to access well known keys.
Guille
On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com> wrote:
After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application?
TIA
------------------------------ *Ing. Pablo Digonzelli* Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
ok, sure i am wrong. I will try your suggestion nicolai . Thanks. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Nicolai Hess" <nicolaihess@web.de> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 4:21:12 Asunto: Re: [Pharo-dev] functions keys Function keys do generate events, but no keystroke event, just keydown and keyup. you can implement handleKeyDown: or handleKeyUp: on a Morph, and it will be called on Functionkeys as well. 2014-07-01 1:55 GMT+02:00 Pablo R. Digonzelli < pdigonzelli@gmail.com > : Guille , functions key does not generate event at all. I think it is a problem for some applications. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 De: "Guillermo Polito" < guillermopolito@gmail.com > Para: "Pharo Development List" < pharo-dev@lists.pharo.org > CC: "Any question about pharo is welcome" < pharo-users@lists.pharo.org > Enviados: Lunes, 30 de Junio 2014 19:26:23 Asunto: Re: [Pharo-dev] functions keys To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com > wrote: <blockquote> After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 </blockquote>
Nicolai. I recheck handleEvent: , handleFocusEvent: , handleKeyUp:, handleKeyDown: and Functionkeys does not generate event at all. Other keys does. This for Linux. I will try on windows today or tomorrow. Thanks Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Pablo R. Digonzelli" <pdigonzelli@gmail.com> Para: nicolaihess@web.de, "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 10:45:58 Asunto: Re: [Pharo-dev] functions keys ok, sure i am wrong. I will try your suggestion nicolai . Thanks. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Nicolai Hess" <nicolaihess@web.de> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 4:21:12 Asunto: Re: [Pharo-dev] functions keys Function keys do generate events, but no keystroke event, just keydown and keyup. you can implement handleKeyDown: or handleKeyUp: on a Morph, and it will be called on Functionkeys as well. 2014-07-01 1:55 GMT+02:00 Pablo R. Digonzelli < pdigonzelli@gmail.com > : Guille , functions key does not generate event at all. I think it is a problem for some applications. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 De: "Guillermo Polito" < guillermopolito@gmail.com > Para: "Pharo Development List" < pharo-dev@lists.pharo.org > CC: "Any question about pharo is welcome" < pharo-users@lists.pharo.org > Enviados: Lunes, 30 de Junio 2014 19:26:23 Asunto: Re: [Pharo-dev] functions keys To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com > wrote: <blockquote> After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 </blockquote>
Again like numeric pad it is a linux/pharo issue. In windows function key generates events and i can control this. Someone knows something about these linux issues ? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Pablo R. Digonzelli" <pdigonzelli@gmail.com> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 11:02:23 Asunto: Re: [Pharo-dev] functions keys Nicolai. I recheck handleEvent: , handleFocusEvent: , handleKeyUp:, handleKeyDown: and Functionkeys does not generate event at all. Other keys does. This for Linux. I will try on windows today or tomorrow. Thanks Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Pablo R. Digonzelli" <pdigonzelli@gmail.com> Para: nicolaihess@web.de, "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 10:45:58 Asunto: Re: [Pharo-dev] functions keys ok, sure i am wrong. I will try your suggestion nicolai . Thanks. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Nicolai Hess" <nicolaihess@web.de> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 4:21:12 Asunto: Re: [Pharo-dev] functions keys Function keys do generate events, but no keystroke event, just keydown and keyup. you can implement handleKeyDown: or handleKeyUp: on a Morph, and it will be called on Functionkeys as well. 2014-07-01 1:55 GMT+02:00 Pablo R. Digonzelli < pdigonzelli@gmail.com > : Guille , functions key does not generate event at all. I think it is a problem for some applications. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 De: "Guillermo Polito" < guillermopolito@gmail.com > Para: "Pharo Development List" < pharo-dev@lists.pharo.org > CC: "Any question about pharo is welcome" < pharo-users@lists.pharo.org > Enviados: Lunes, 30 de Junio 2014 19:26:23 Asunto: Re: [Pharo-dev] functions keys To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com > wrote: <blockquote> After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 </blockquote>
The keyfunctions events does not work with the last vm Esteban give me. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Pablo R. Digonzelli" <pdigonzelli@gmail.com> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 11:14:44 Asunto: Re: [Pharo-dev] functions keys Again like numeric pad it is a linux/pharo issue. In windows function key generates events and i can control this. Someone knows something about these linux issues ? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Pablo R. Digonzelli" <pdigonzelli@gmail.com> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 11:02:23 Asunto: Re: [Pharo-dev] functions keys Nicolai. I recheck handleEvent: , handleFocusEvent: , handleKeyUp:, handleKeyDown: and Functionkeys does not generate event at all. Other keys does. This for Linux. I will try on windows today or tomorrow. Thanks Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Pablo R. Digonzelli" <pdigonzelli@gmail.com> Para: nicolaihess@web.de, "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 10:45:58 Asunto: Re: [Pharo-dev] functions keys ok, sure i am wrong. I will try your suggestion nicolai . Thanks. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 ----- Mensaje original ----- De: "Nicolai Hess" <nicolaihess@web.de> Para: "Pharo Development List" <pharo-dev@lists.pharo.org> Enviados: Martes, 1 de Julio 2014 4:21:12 Asunto: Re: [Pharo-dev] functions keys Function keys do generate events, but no keystroke event, just keydown and keyup. you can implement handleKeyDown: or handleKeyUp: on a Morph, and it will be called on Functionkeys as well. 2014-07-01 1:55 GMT+02:00 Pablo R. Digonzelli < pdigonzelli@gmail.com > : Guille , functions key does not generate event at all. I think it is a problem for some applications. Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 De: "Guillermo Polito" < guillermopolito@gmail.com > Para: "Pharo Development List" < pharo-dev@lists.pharo.org > CC: "Any question about pharo is welcome" < pharo-users@lists.pharo.org > Enviados: Lunes, 30 de Junio 2014 19:26:23 Asunto: Re: [Pharo-dev] functions keys To handle function keys you should handle the keyup or keydown event. Then, the KeyboardEvent has a #key method to get the pressed key. Take a look at the Key class side methods to access well known keys. Guille On Tue, Jul 1, 2014 at 12:06 AM, Pablo R. Digonzelli < pdigonzelli@gmail.com > wrote: <blockquote> After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714 </blockquote>
Yes, no function keys. 2014-07-01 0:06 GMT+02:00 Pablo R. Digonzelli <pdigonzelli@gmail.com>:
After exploring the image I believe functions keys (F1,F2, etc ) are not handling by KeyboardEvent class. I think it is very common use that function keys in business applications. Someone know if i am true about this topic? . Or maybe someone handling functions keys in an application?
TIA
------------------------------ *Ing. Pablo Digonzelli* Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonzelli@softsargentina.com pdigonzelli@gmail.com Cel: 5493815982714
participants (4)
-
Guillermo Polito -
Nicolai Hess -
Pablo R. Digonzelli -
Ronie Salgado