var fDesc=new Array(); fDesc[0] = "IconAnyFolder is small, lightweight, but so useful application.
The idea is to search for icons inside the folder and use one of those as the folder icon from now on. The application scans the files inside each folder for possible icons and picks the first icon it finds in an executable file. The user only has to select a directory that he wants processed, everything else is done by the tool.
Features:
- a user prompt for specifying directory
- an option loop recursively into subdirectories
- a cleanup option that runs through and deletes all desktop.ini files, or removes the icon entries in them
- If the first icon resource (exe) the script encounters does not have an icon present, move to the next resource."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }