FAQs
Q: How to upload the script to my web server?
A: There is a easy way to upload the script to your server. After you finished the design, save it by choosing "File/Save As..." from menu, all necessary files will be copied to the directory you specified. Upload these files into the same directory in web server. Done.
PS: .JPG and .GIF ( image files), .JS (JavaScript files). All files that have these extended names should be uploaded to web server. HTML files contain JavaScript parameters , you can copy and paste these JavaScript parameter codes into your own HTML files. .jmbti file is JavaScript project file. You DON'T NEED to upload project file to web server, they are only used to save and restore your project.
Q: I'm having problems getting going. I think it's because I'm not familiar with url's and target's. I don't know whether to choose -parent, -self, etc. in the target.
A:
_blank Specifies to load the link into a new blank window. This window is not named.
_parent Specifies to load the link into the immediate parent of the document the link is in.
_self Specifies to load the link into the same window the link was clicked in.
_top Specifies to load the link into the full body of the window.
frame_name Specifies to load the link into the frame which named frame_name, you can specify the name of the frame in HTML code <frame src= "xxx.html"name="frame_name">. This option will be used for most case. So I put a example below to show you how to get it works.
Example:
The HTML codes for frame is similar to the codes below.
<frameset framespacing="0" border="false" frameborder="0" cols="199,*">
<frame name="left" src="leftpage.htm" scrolling="no">
<frame name="right" src="rightpage.htm" scrolling="auto">
<noframes>
<p>This page uses frames, but your browser doesn't support them.</p>
</noframes>
</frameset>
Here the name of left frame is "left", the name of right frame is "right". Just type the name of the frame which you want the document be loaded into in target property box. The quotation marks can't be included in frame name.
Q: I am trying to make the link for one of my menu items call a javascript function. However, when I put the call to the function in the URL box in the program, it doesn't seem to work. Is it possible to put a javascript function call into the URL box?
A: Yes. You can call JavaScript function from Javascript menu.
For example:
javascript:document.bgColor="FF0000";
This function will change the background color of current document to red.
javascript:window.open();
This function will be open a new window.
|