Hello Gentlemen,
I have implemented voice command in a system and the following problem or difficulties appeared :
Note - My operating system is windows 10 and browser edge
- Environment
The application has a menu where it presents the processing alternatives to
the user. This menu is displayed 4 frames namely :
- Data base
- Database entities
- Entity data
- System Legend
For example :
- The user activates the database option and the system provides:
business group
group companies
branches of companies , etc. - The user activates the group companies option and the system provides a
form with the operations include, exclude, consult companies in the system. - The caption option is common to all system operations so it is fixed where
the system provides mainly internal communication functions: Manual of rules and procedures, Organization Manual, Online Meeting Rooms, Video Conference Rooms, Contract Templates, etc.
Note - I centered the voice command on this frame because it is resident (does not change)
There are some functions in the system caption that I need to set another frame in a system start frame.
For example, in the entity data frame I redefine it with 2 other frames that contain menu and contract.
This procedure, from the internet research I conducted, people call it
cross-frame.
- the problem
I need to access the functions of the document loaded in the contract frame
through the original frame caption , to implement procedures from a voice command.
Problem is, I donât have access to this frame.
By searching the internet, it seemed to me more feasible to identify it through
a list of windows frame and from this point on.
var frames = window.parent.frames;
for (var i = 0; i < frames.length; i++) {
if ( frames[i] === âcontractâ ) {
parent.frames[i].enter(textovoice);
}
}
How do I identify the âframe nameâ attribute for select it ?
Once again thank you for your attention.
Note - This text was translated by google