Forum Moderators: open

Message Too Old, No Replies

applets

using applets

         

meanweaver

8:32 pm on Nov 24, 2003 (gmt 0)

10+ Year Member



Help! I have downloaded an applet i would like to use which works as a picture slideshow, it works fine providing all the images are in the same folder as the html page, but to keep the updating simple i want to put all my images in the images folder, so i thought no problem i'll just use code like this value=./images/"imagename"
if you get me, but whatever i try the applet wont work until everthings in the same folder. heres a snippet of the applet code


<param name="Image1" value="d2_fairy.jpg">
<param name="Image2" value="d2_courtyard.jpg">
<param name="Image3" value="d2_knight.jpg">
<param name="Image4" value="d2_history.jpg">

the script has come from codebrain.com.

Cheers Ian

birdbrain

11:52 am on Nov 25, 2003 (gmt 0)



hi there meanweaver,

I am assuming that the newly created images folder and the html file are in the same folder, if so your params should look like this...


<param name="Image1" value="images/d2_fairy.jpg">
<param name="Image2" value="images/d2_courtyard.jpg">
<param name="Image3" value="images/d2_knight.jpg">
<param name="Image4" value="images/d2_history.jpg">

birdbrain