its Cool easy to setup
Download From Here
Only Problem Its a PHP code for the file management well that not a problem well There are work around for it
My first on is Little change
there is a Imagelist in the imagepopup that needs to be full
So this script will read all image in a folder and put them into a array so that the TinyMCE can read it.
folder = iif(trim(uploadsDirVar)="","D:\WWW\mel\Photos",uploadsDirVar)
ImgList = server.MapPath("image_list.js")
writeTofile ImgList,"var tinyMCEImageList = new Array(",false
'folder = uploadsDirVar
set fso = CreateObject("Scripting.fileSystemObject")
set fold = fso.getFolder(folder)
aa=0
zz=fold.files.count
for each file in fold.files
aa = aa + 1
writeTofile ImgList,"['" & replace(ucase(file.name),".JPG","") & "', 'Photos/" & file.name & "']" & iif(aa=zz,"",","),true
Next
writeTofile ImgList,");",true
function WriteToFile(FileName, Contents, Append)
on error resume next
if Append = true then
iMode = 8
else
iMode = 2
end if
set oFs = server.createobject("Scripting.FileSystemObject")
set oTextFile = oFs.OpenTextFile(FileName, iMode, True)
oTextFile.Write Contents & vbnewline
oTextFile.Close
set oTextFile = nothing
set oFS = nothing
end function
Function IIf(Condition_To_Check,TrueBit,FalseBit)
If Condition_To_Check Then
IIf = TrueBit
Else
IIf = FalseBit
End If
End Function
...
Now You need to point TinyMCE to the right place look in the tinyMCE.init
look for
external_image_list_url : "lists/image_list.js",
change it to point to the same place where "ImgList = server.MapPath("image_list.js")" is point to
in my case its in a inc Folder so
external_image_list_url : "inc/image_list.js",
Done 