Hello,
I am using the plugin to build a custom file open dialog with a thumbnail browse-area.
Below the preview area I want to have buttons to navigate to prev and next file.
I know its possible to script it, but it would be comfortable to have the actions fmPrev and fmNext.
Regards
wish new action fmPrev+fmNext
wish new action fmPrev+fmNext
Hans-Peter
-
- NeoSoft Team
- Posts: 5628
- Joined: Thu Mar 31, 2005 10:48 pm
- Location: Oregon, USA
- Contact:
As long it is not done, I use this for a Next-button:
Code: Select all
fmFileListToVar "FileList" "FullPath=Yes;IncludeFiles=Yes;IncludeFolders=No;SelectedOnly=No" "[OpenFileList]"
StrReplace "[OpenFileList]" ";" "[#13][#10]" "[OpenFileList]" ""
hpwLineCount "[OpenFileList]" "[OpenFileCount]"
hpwLineNumber "[OpenFileList]" "[SelectedFile]" "False" "[SelectedPos]"
SetVar "[NewPos]" "[SelectedPos]+1"
hpwLine "[OpenFileList]" "[NewPos]" "[FileItem]"
ExtractFileName "[FileItem]" "[FileItem]"
fmSelectSome "FileList" "[FileItem]" "IncludeFiles=Yes;IncludeFolders=No"
Hans-Peter
-
- NeoSoft Team
- Posts: 5628
- Joined: Thu Mar 31, 2005 10:48 pm
- Location: Oregon, USA
- Contact: