ok i have an intranet app using the fckedior
i have the link to files working fine from a cfm from with in the editor.
but i added another button so you can link to secure fiules on our ssl server. and i cant get the page to put the url in the form field...
i need to fix this part i think:
-------------https: file browse-----------
<SCRIPT language="javascript">
var sImagesPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/')+1) + 'docs/' ;
//var sImagesPath = TEST/ ;
//parent.location
function getDoc(fileName)
{
//window.setImage( fileName ) ;parent.document.referrer.
window.opener.setImage( fileName ) ;
window.close() ;
}
</SCRIPT>
------------ referre page ---------------\
function browserServer()
{
var oWindow = openNewWindow(sBrowseURL, "BrowseWindow", iBrowseWindowWidth, iBrowseWindowHeight) ;
oWindow.setImage = setImage ;
}
function browserServerSSL()
{
var oWindow = openNewWindow(sBrowseURLSSL, iBrowseWindowWidthSSL, iBrowseWindowHeightSSL) ;
oWindow.setImage = setImage ;
}
<input name="txtURL" type="text" id="txtURL" style="WIDTH: 100%">
<INPUT type="button" style="WIDTH: 100%" value="Browse Pub Server" onclick="browserServer();" id="btnBrowse"><br>
<INPUT type="button" style="WIDTH: 100%" value="Browse SSL Server" onclick="browserServerSSL();" id="btnBrowseSSL">
Tue, 08/19/2003 - 10:42
#1