Reputation: 187
Just little half theoretical question. Is it possible to embed web page from URL into java applet?
Applet applet1
is on page1.html
on server1
and I want to embed applet1
into page1.html
on server1
. And in applet1
would be page2.html
on server2
embedded. If it is possible how to do it? I need to use applet for embedding page2.html
instead of iframe
because of mouse tracking over page2.html
for example.
Upvotes: 0
Views: 243
Reputation: 632
You can add html from site to panel of applet, but it will be not analog of iframe. This solution has problem with display html with css and another problems.
Maybe this will be helpful: link1 link2
Upvotes: 2