I am using a dialog box to ask for user input. The user types the name for the new folder and then from a drop down menu below the user selects the directory path.
Here is my code for creating the new directory via dialog box:
Code: Select all
Show>Dialog1,modalResult
If>modalResult=1
GetDialogProperty>Dialog1,MovieFolderName,Text,varMovieFolderName
GetDialogProperty>Dialog1,GenreDropDown,Text,varGenreDropDown
ChangeDirectory>varGenreDropDown
CreateDir>varMovieFolderName
Code: Select all
Send>varGenreDropDown\varMovieFolderName
I have also tried:
Let>varMovieFolderName=x
Let>varGenreDropDown=y
Then
Send>y\x
This just shows the same as before.
I have also tried a second GetDialogProperty in various areas but that doesn't work either.
Any help given would be appreciated.