Arrow keys | Moves selection emphasis through the property rows. Up/down arrows scroll up and down through the rows, highlighting each row |
---|---|
Enter | Activates or saves the current cell |
Escape | Discards changes made while editing a cell |
./path/filename.ext
myImage
is contained in the myMedia
folder on the same level as the HTML page. To use myImage
as a picture property in your applet, you would enter:./myMedia/myImage.gif
./
signals a relative URL and indicates that your applet should look for the myMedia
folder on the same directory level as the HTML page. For example, you could tell your applet to look higher in the directory structure by using ./../myMedia
. This tells you applet to go up one level and look for the folder there. As a result, you can string together a series of statements to look anywhere on your server's directory structure, such as ./../../myMedia/myImage.gif
. This statement tells your applet to look for the image by going up two levels in the directory structure to find the myMedia
folder../myMedia/myImage.gif
.\myMedia\myImage.gif