I have the following code snippet created by dreamweaver/fireworks...how can I get it to FTP the file to the user's system?
function fwLoadMenus() {
if (window.fw_menu_0) return;
window.fw_menu_0 = new Menu(\"root\",100,16,\"Verdana, Arial, Helvetica, sans-serif\",9,\"#ffcc33\",\"#ff0000\",\"#000000\",\"#000084\"
;
fw_menu_0.addMenuItem(\"ASP Projects\",\"location='asp1.php'\"
;
fw_menu_0.addMenuItem(\"PHP Projects\",\"location='php.php'\"
;
fw_menu_0.addMenuItem(\"Access Projects\",\"location='access.php'\"
;
fw_menu_0.fontWeight=\"bold\";
fw_menu_0.hideOnMouseOut=true;
window.fw_menu_1 = new Menu(\"root\",81,16,\"Verdana, Arial, Helvetica, sans-serif\",9,\"#ffcc33\",\"#ff0000\",\"#000000\",\"#000084\"
;
fw_menu_1.addMenuItem(\"View Online\",\"location='resume.php'\"
;
fw_menu_1.addMenuItem(\"Download\",\"location='BastienKoertRes3.doc'\" );
fw_menu_1.fontWeight=\"bold\";
fw_menu_1.hideOnMouseOut=true;
TIA Bastien
There are many ways to skin this cat,
but it still tastes like chicken
function fwLoadMenus() {
if (window.fw_menu_0) return;
window.fw_menu_0 = new Menu(\"root\",100,16,\"Verdana, Arial, Helvetica, sans-serif\",9,\"#ffcc33\",\"#ff0000\",\"#000000\",\"#000084\"
fw_menu_0.addMenuItem(\"ASP Projects\",\"location='asp1.php'\"
fw_menu_0.addMenuItem(\"PHP Projects\",\"location='php.php'\"
fw_menu_0.addMenuItem(\"Access Projects\",\"location='access.php'\"
fw_menu_0.fontWeight=\"bold\";
fw_menu_0.hideOnMouseOut=true;
window.fw_menu_1 = new Menu(\"root\",81,16,\"Verdana, Arial, Helvetica, sans-serif\",9,\"#ffcc33\",\"#ff0000\",\"#000000\",\"#000084\"
fw_menu_1.addMenuItem(\"View Online\",\"location='resume.php'\"
fw_menu_1.addMenuItem(\"Download\",\"location='BastienKoertRes3.doc'\" );
fw_menu_1.fontWeight=\"bold\";
fw_menu_1.hideOnMouseOut=true;
TIA Bastien
There are many ways to skin this cat,
but it still tastes like chicken