PC Review
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
FP2000 Java target frames help
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
FP2000 Java target frames help
![]() |
FP2000 Java target frames help |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Hey,
I have a java applet running in a little website i'm trying to design, and when a user clicks on something in the menu, I need for it to open in a certain frame, ie: the main one, (bottom middle right aka rbottom) I've searched extensively,and only found how to set target frames for buttons etc.. but nothing for the java applet. Even if I right click in the source frame and go to frame properties (any properties) I make the target frame rbottom, it still opens a whole new page.. grrr Could anyone clarify?for example, the fourth line from the bottom, The aboutus.htm is a link in the java applet (for *about us*), but I need for it to open in a certain frame, is there some code i'm missing here simply? thanks <applet code="PictureMenu.class" codebase="./" align="baseline" width="140" height="265"> <param name="AppletHomePage" value="http://go.to/javabase"> <param name="bgcolor" value="666666"> <param name="fgcolor" value="FFBBBB"> <param name="font" value="Allegro BT"> <param name="fontsize" value="16"> <param name="mouse" value="FAFAD2"> <param name="highlight" value="666666"> <param name="fontStyle" value="b"> <param name="select" value="left"> <param name="delay" value="10"> <param name="STEPS" value="30"> <param name="switchSteps" value="10"> <param name="background" value="menugraph.jpg"> <param name="type" value="menu"> <param name="rounding" value="10"> <param name="highlightFade" value="flip"> <param name="inFade" value="leftright"> <param name="outFade" value="leftright"> <param name="menuMain" value="{About Us,aboutus.htm} {This ,menu2}<<<<<<<<<<<<<<<<<<<<<<<<<<<here (aboutus.htm) {Schedule,na/htm} {Registration,http://www.lycos.com/,_blank} {Contact Us, na.htm}{Other info, na.html}> <param name="menu1" value="{Sub-menu 2,menu2} {Random Link,http://random.yahoo.com/cgi-bin/ryl} {Back,menuMain}"> <param name="menu2" value="{Physical Layout,menu1} {Detailed Layout,applets.html}"> You'll need Java to view properly </applet> |
|
|
|
#2 |
|
Guest
Posts: n/a
|
You need to check with the author of the applet to see if it design to
support target frame value. Also, be aware the many Windows XP, IE6 and NS6 and up user will not be able to access your Java Applet since they do not have a Java Virtual Machine (JVM) installed by default, so they will not be able to navigate your website. -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) WEBMASTER Resources(tm) http://www.ycoln-resources.com FrontPage Resources, Forums, WebCircle, MS KB Quick Links, etc. ============================================== To assist you in getting the best answers for FrontPage support see: http://www.net-sites.com/sitebuilder/newsgroups.asp "Dieselboy" <diesel7108@N.O.S.P.A.M.sympatico.ca> wrote in message news siPa.16698$Tx.802382@news20.bellglobal.com...> Hey, > I have a java applet running in a little website i'm trying to design, and > when a user clicks on something in the > menu, I need for it to open in a certain frame, ie: the main one, (bottom > middle > right aka rbottom) I've searched extensively,and only found how to set > target frames for buttons > etc.. but nothing for the java applet. Even if I right click in the source > frame and go to frame properties (any properties) I make the target frame > rbottom, it still opens a whole new page.. grrr Could anyone clarify?> for example, the fourth line from the bottom, The aboutus.htm is a link in > the java applet (for *about us*), but I need for it to open in a certain > frame, is there some > code i'm missing here simply? > > thanks > > > <applet code="PictureMenu.class" codebase="./" align="baseline" width="140" > height="265"> > > <param name="AppletHomePage" value="http://go.to/javabase"> > > <param name="bgcolor" value="666666"> > > <param name="fgcolor" value="FFBBBB"> > > <param name="font" value="Allegro BT"> > > <param name="fontsize" value="16"> > > <param name="mouse" value="FAFAD2"> > > <param name="highlight" value="666666"> > > <param name="fontStyle" value="b"> > > <param name="select" value="left"> > > <param name="delay" value="10"> > > <param name="STEPS" value="30"> > > <param name="switchSteps" value="10"> > > <param name="background" value="menugraph.jpg"> > > <param name="type" value="menu"> > > <param name="rounding" value="10"> > > <param name="highlightFade" value="flip"> > > <param name="inFade" value="leftright"> > > <param name="outFade" value="leftright"> > > <param name="menuMain" value="{About Us,aboutus.htm} {This > ,menu2}<<<<<<<<<<<<<<<<<<<<<<<<<<<here (aboutus.htm) > {Schedule,na/htm} {Registration,http://www.lycos.com/,_blank} {Contact Us, > na.htm}{Other info, na.html}> > > <param name="menu1" value="{Sub-menu 2,menu2} {Random > Link,http://random.yahoo.com/cgi-bin/ryl} {Back,menuMain}"> > > <param name="menu2" value="{Physical Layout,menu1} {Detailed > Layout,applets.html}"> > > You'll need Java to view properly > > </applet> > > > > |
|
|
|
#3 |
|
Guest
Posts: n/a
|
wow, thanks for the tip. When will JVM be available on IE6? when it becomes
standard I guess? thanks "Thomas A. Rowe" <tarowe@mvps.org> wrote in message news:#dgRtgxRDHA.3700@tk2msftngp13.phx.gbl... > You need to check with the author of the applet to see if it design to > support target frame value. > > Also, be aware the many Windows XP, IE6 and NS6 and up user will not be able > to access your Java Applet since they do not have a Java Virtual Machine > (JVM) installed by default, so they will not be able to navigate your > website. > > -- > > ============================================== > Thomas A. Rowe (Microsoft MVP - FrontPage) > WEBMASTER Resources(tm) > http://www.ycoln-resources.com > FrontPage Resources, Forums, WebCircle, > MS KB Quick Links, etc. > ============================================== > To assist you in getting the best answers for FrontPage support see: > http://www.net-sites.com/sitebuilder/newsgroups.asp > > "Dieselboy" <diesel7108@N.O.S.P.A.M.sympatico.ca> wrote in message > news siPa.16698$Tx.802382@news20.bellglobal.com...> > Hey, > > I have a java applet running in a little website i'm trying to design, and > > when a user clicks on something in the > > menu, I need for it to open in a certain frame, ie: the main one, (bottom > > middle > > right aka rbottom) I've searched extensively,and only found how to set > > target frames for buttons > > etc.. but nothing for the java applet. Even if I right click in the source > > frame and go to frame properties (any properties) I make the target frame > > rbottom, it still opens a whole new page.. grrr Could anyone clarify?> > for example, the fourth line from the bottom, The aboutus.htm is a link in > > the java applet (for *about us*), but I need for it to open in a certain > > frame, is there some > > code i'm missing here simply? > > > > thanks > > > > > > <applet code="PictureMenu.class" codebase="./" align="baseline" > width="140" > > height="265"> > > > > <param name="AppletHomePage" value="http://go.to/javabase"> > > > > <param name="bgcolor" value="666666"> > > > > <param name="fgcolor" value="FFBBBB"> > > > > <param name="font" value="Allegro BT"> > > > > <param name="fontsize" value="16"> > > > > <param name="mouse" value="FAFAD2"> > > > > <param name="highlight" value="666666"> > > > > <param name="fontStyle" value="b"> > > > > <param name="select" value="left"> > > > > <param name="delay" value="10"> > > > > <param name="STEPS" value="30"> > > > > <param name="switchSteps" value="10"> > > > > <param name="background" value="menugraph.jpg"> > > > > <param name="type" value="menu"> > > > > <param name="rounding" value="10"> > > > > <param name="highlightFade" value="flip"> > > > > <param name="inFade" value="leftright"> > > > > <param name="outFade" value="leftright"> > > > > <param name="menuMain" value="{About Us,aboutus.htm} {This > > ,menu2}<<<<<<<<<<<<<<<<<<<<<<<<<<<here (aboutus.htm) > > {Schedule,na/htm} {Registration,http://www.lycos.com/,_blank} {Contact Us, > > na.htm}{Other info, na.html}> > > > > <param name="menu1" value="{Sub-menu 2,menu2} {Random > > Link,http://random.yahoo.com/cgi-bin/ryl} {Back,menuMain}"> > > > > <param name="menu2" value="{Physical Layout,menu1} {Detailed > > Layout,applets.html}"> > > > > You'll need Java to view properly > > > > </applet> > > > > > > > > > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Because of Sun, it may never be available unless users know and choose to go
to the Sun web site and download and the Sun JVM. Note: Some users do have it, depending on when they install Windows XP or IE 6 or SP1. However it is something that you should not count on users having, instead look at using JavaScript functions, which in most case will allow links to work, even if JavaScript has been disabled. -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) WEBMASTER Resources(tm) http://www.ycoln-resources.com FrontPage Resources, Forums, WebCircle, MS KB Quick Links, etc. ============================================== To assist you in getting the best answers for FrontPage support see: http://www.net-sites.com/sitebuilder/newsgroups.asp "Dieselboy" <diesel7108@N.O.S.P.A.M.sympatico.ca> wrote in message news:nrrPa.17042$Tx.903632@news20.bellglobal.com... > wow, thanks for the tip. When will JVM be available on IE6? when it becomes > standard I guess? > thanks > "Thomas A. Rowe" <tarowe@mvps.org> wrote in message > news:#dgRtgxRDHA.3700@tk2msftngp13.phx.gbl... > > You need to check with the author of the applet to see if it design to > > support target frame value. > > > > Also, be aware the many Windows XP, IE6 and NS6 and up user will not be > able > > to access your Java Applet since they do not have a Java Virtual Machine > > (JVM) installed by default, so they will not be able to navigate your > > website. > > > > -- > > > > ============================================== > > Thomas A. Rowe (Microsoft MVP - FrontPage) > > WEBMASTER Resources(tm) > > http://www.ycoln-resources.com > > FrontPage Resources, Forums, WebCircle, > > MS KB Quick Links, etc. > > ============================================== > > To assist you in getting the best answers for FrontPage support see: > > http://www.net-sites.com/sitebuilder/newsgroups.asp > > > > "Dieselboy" <diesel7108@N.O.S.P.A.M.sympatico.ca> wrote in message > > news siPa.16698$Tx.802382@news20.bellglobal.com...> > > Hey, > > > I have a java applet running in a little website i'm trying to design, > and > > > when a user clicks on something in the > > > menu, I need for it to open in a certain frame, ie: the main one, > (bottom > > > middle > > > right aka rbottom) I've searched extensively,and only found how to set > > > target frames for buttons > > > etc.. but nothing for the java applet. Even if I right click in the > source > > > frame and go to frame properties (any properties) I make the target > frame > > > rbottom, it still opens a whole new page.. grrr Could anyoneclarify? > > > for example, the fourth line from the bottom, The aboutus.htm is a link > in > > > the java applet (for *about us*), but I need for it to open in a certain > > > frame, is there some > > > code i'm missing here simply? > > > > > > thanks > > > > > > > > > <applet code="PictureMenu.class" codebase="./" align="baseline" > > width="140" > > > height="265"> > > > > > > <param name="AppletHomePage" value="http://go.to/javabase"> > > > > > > <param name="bgcolor" value="666666"> > > > > > > <param name="fgcolor" value="FFBBBB"> > > > > > > <param name="font" value="Allegro BT"> > > > > > > <param name="fontsize" value="16"> > > > > > > <param name="mouse" value="FAFAD2"> > > > > > > <param name="highlight" value="666666"> > > > > > > <param name="fontStyle" value="b"> > > > > > > <param name="select" value="left"> > > > > > > <param name="delay" value="10"> > > > > > > <param name="STEPS" value="30"> > > > > > > <param name="switchSteps" value="10"> > > > > > > <param name="background" value="menugraph.jpg"> > > > > > > <param name="type" value="menu"> > > > > > > <param name="rounding" value="10"> > > > > > > <param name="highlightFade" value="flip"> > > > > > > <param name="inFade" value="leftright"> > > > > > > <param name="outFade" value="leftright"> > > > > > > <param name="menuMain" value="{About Us,aboutus.htm} {This > > > ,menu2}<<<<<<<<<<<<<<<<<<<<<<<<<<<here (aboutus.htm) > > > {Schedule,na/htm} {Registration,http://www.lycos.com/,_blank} {Contact > Us, > > > na.htm}{Other info, na.html}> > > > > > > <param name="menu1" value="{Sub-menu 2,menu2} {Random > > > Link,http://random.yahoo.com/cgi-bin/ryl} {Back,menuMain}"> > > > > > > <param name="menu2" value="{Physical Layout,menu1} {Detailed > > > Layout,applets.html}"> > > > > > > You'll need Java to view properly > > > > > > </applet> > > > > > > > > > > > > > > > > > > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 
Could anyone clarify?
siPa.16698$Tx.802382@news20.bellglobal.com...
