-
sub application
is this extension supposed to work with java? it doesn't for me.
source: frame2
shared global values and strings
tried both with and without popup window checked.
tried both standalone java app and internet-app
if i run it in windows i just get a frozen taskbar that i have to shutdown with ctrl+alt+del
if i run it on a webpage its just blank white and makes firefox really slow and weird.
-
Re: sub application
The sub application object should be working in Java.
Can you send me your project? I would be able to debug it then. Please make a doc explaining what you do in your application.
-
Re: sub application
you can find the source file and try the html in your browser here.
its not a project yet, i was just making this to test the subapp on java.
when i run the html in IE i get "loading java applet failed"
also in MMF it seems to be a delay on about 250ms between each time you can click the active object, so its not working as smooth as i would like.
-
Re: sub application
OK, after a while, I had a look at this problem.
It comes from the fact that the size of the subapplication object in the first frame is not the same as the size of the frame2. It is a lot bigger.
In the C++ runtime of MMF, the subframe is displayed on the top left, and you can click in the white areas of the subapplication object.
This is impossible in Java. The subframe is centered (this is the reason why you cant see it), and you cannot click in the white areas.
To make your application work, set the size of the sub application object to the exact size of the subframe. By editing the properties.
And it works.