[Closed] Thumbnail view multiple folders
So I’ve sent you an apology by PM and yet you continue with this attitude. Where in my post did I exactly offend you?
I’m sincerely asking for a push in the right direction. I’m not a maxscript pro that is why people come here to ask for help. Not get insulted.
One last time it is not the .dll file that needs fixing its this part:
on button1 pressed do
(
thmbviewer @"location on drive"
)
I can get it to work if I use a similar script for opening folders:
function openexplore TexDir =
(
process = dotNetObject "System.Diagnostics.Process"
process.EnableRaisingEvents = false
process.StartInfo.FileName = "explorer"
process.StartInfo.Arguments = (TexDir as string)
-- process.StartInfo.WindowStyle = "Maximized"
process.Start()
-- destroydialog theRollout
)
and use this as a button:
on buttonfolder pressed do
(
openexplore @"location on drive"
)
Ive tried everything from removing the string part to manually insert the url to the dir, I just cant get it to work.
A quarrel is quickly settled when deserted by one party; there is no battle unless there be two.
To quarrel with equal is risky, with higher – madly, with lower humiliating.
i[/i]
lo told you why your code doesn’t work.
well… you have to collect file list from a specified directory:
imageFiles = getfiles (ThmbDir + @"\*.jpg")