I placed a button in the page. Now I want that on mouse click a folder will be oppened by windows explorer, and I can't find the right action to do it. Anyone who can help? Thanks.
Announcement
Collapse
No announcement yet.
Exploring folder
Collapse
X
-
Re: Exploring folder-URGENT HELP!
How about DIALOG > FOLDER BROWSE set to %Srcdrive% and then any images folder you might have?
Corey Milner
Creative Director, Indigo Rose Software
Comment
-
-
Re: Exploring folder-URGENT HELP!
Hey Brett, what's the difference between my way and your way? Is one preferred in terms of performance/reliablility?
Corey Milner
Creative Director, Indigo Rose Software
Comment
-
-
Re: Exploring folder-URGENT HELP!
"File - Open" with "open" verb actually just opens the folder immediately.
"File - Open" with "explore" verb opens it in the Windows Explorer view, instead of the normal folder view.
"Dialog - Folder Browse" presents a standard Windows Open dialog, so the user can select a folder...the path to this folder is then stored in a variable.--[[ Indigo Rose Software Developer ]]
Comment
-
-
Re: Exploring folder-URGENT HELP!
Corey,
Like Lorne outlined, it's really a matter of functionality. The Dialog.FileBrowse method is best if you want the user to browse their system, select a file and then you need to know what file they selected. Using File.Open with an open or explore verb is best when you just want the user to be able to browse their system, but you don't need to know which files they are looking at or opening.
- Brett
Comment
-
-
Re: Exploring folder-URGENT HELP!
Oh I see, d-uh, not sure how I missed that... Thanks guys...
Corey Milner
Creative Director, Indigo Rose Software
Comment
-
-
Re: Exploring folder-URGENT HELP!
A few additional notes: [img]/ubbthreads/images/icons/smile.gif[/img]
"Dialog - Folder Browse" only lets the user browse until they click the "Select" button on the dialog.
Using "File - Open" just opens the folder normally, like double-clicking on it in Windows...so the user is free to leave that folder open for as long as they want to.
"Dialog - Folder Browse" also has a different look to using "File - Open"...the former presents more of an "Open/Save As" style dialog with extra stuff like the "Select" and "Cancel" buttons, whereas the latter is just your standard Windows folder.
(Incidentally, "File - Open" with the "explore" verb is the same as right-clicking on a folder in Windows and choosing "Explore" from the right-click menu.)--[[ Indigo Rose Software Developer ]]
Comment
-
Comment