|
|||
|
Hi guys,
I have two issues this time: 1. When I open a Form Object window, the user has to make an extra click in that window to make it focused. Is there a way to make this window's content focused onLoad? 2. What is the best way to control/manage the user's keyboard pressing? I have an ActiveX window over the main movie and I want to be able to catch the users' keyboard and pass whatever I want to that ActiveX. So this ActiveX is blocked to keyboard until I say it isn't. Thanks again for your support, Ariel |
|
|||
|
1) The form window should have been set focus when it is loaded. Please use the "Selection.setFocus" method to set focus to one of your components in your form movie.
2) You can disable the activex control. For instance Code:
var ax = createControl("MSCAL.Calendar.7", 0, 0, 400, 400);
ax.window.enable = false;
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|