Hi,
I Have been working on a archive/library for our animators here, with images of old and useful models/3d work.
to help them out and save them some time, I wanted to add the ability to click on a jpeg and open the folder where the files are stored for the desired character/set.
Being a animator myself, and working for a small company (who have no javascript programmers) we have little to no knowledge of the code and would appreciate any help possible.
this is what i have come up with so far
however this only allows the user to manually search for the files.
Is it possible and what would be the best approach to achieving this.
I have been using DreamWeaver to create the library if that is of any help.
Thanks in advance!
Matt
I Have been working on a archive/library for our animators here, with images of old and useful models/3d work.
to help them out and save them some time, I wanted to add the ability to click on a jpeg and open the folder where the files are stored for the desired character/set.
Being a animator myself, and working for a small company (who have no javascript programmers) we have little to no knowledge of the code and would appreciate any help possible.
this is what i have come up with so far
Code:
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function DriveList()
{
var folder=document.Drive.Name.options[document.Drive.Name.selectedIndex].value;
document.frames['MyComputer'].location.href = folder;
}
function FolderChoose()
{
var location=document.UserLocation.FolderLocation.value;
document.frames['MyComputer'].location.href = location;
}
</script>
</HEAD>
<BODY>
<FORM NAME="UserLocation">
<P><font size="2">Type in a Folder Location: </font>
<INPUT TYPE="text" name="FolderLocation" length="25" size="20">
<INPUT TYPE="button" value="Open Folder" onClick="FolderChoose();"></P>
</FORM>
<IFRAME NAME="MyComputer" SRC="about:blank" WIDTH="50%" HEIGHT="20%"></IFRAME>
</CENTER>
however this only allows the user to manually search for the files.
Is it possible and what would be the best approach to achieving this.
I have been using DreamWeaver to create the library if that is of any help.
Thanks in advance!
Matt