Jump to content

cant make a folder


sbrady
 Share

Recommended Posts

why does the folder NOT get created

;1. put Project name into message box

$new_project_name = InputBox ("Name the Project", "Just Paste in the Project name", "AR123 Smith, Bob")

MsgBox(64, "Project Name",$new_project_name) ; this returns "AR123 Smith, Bob"

$apace1 = WinExists(" FEATURES") ; this return a 1

MsgBox(64, "Project Name",$apace1)

If $apace1 = 1 Then

DirCreate ("\\Apacefeatures1\active_projects_a-d\ FEATURES\"& $new_project_name & "EXPORTS")

EndIf

Link to comment
Share on other sites

Is there supposed to be a space in front of the word FEATURES in the DirCreate command? Also, is the word EXPORTS supposed to be right after the "AR123 Smith, Bob" so that it makes one line, e.g. "AR123 Smith, BobEXPORTS"?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

I got what I needed accomplished..........now..........is there a way to make this script run on another computer WITHOUT AutoIT installed.

;1. put Project name into message box

$new_project_name = InputBox ("Name the Project", "Just Paste in the Project name", "AR123 Smith, Bob")

$apace1 = WinExists(" FEATURES")

If $apace1 = 1 Then

DirCreate ("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name)

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Nuendo Project")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Final Cut 7")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Pro CS6")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Pro CS5.5")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Pro CS5")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Pro CS4")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "Pro CS3")

DirCreate("Apacefeatures1active_projects_a-d FEATURES" & $new_project_name & "_Media Files")

EndIf

Link to comment
Share on other sites

Compile it to an exe?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Compile it to an exe

under tools select "Compile" or ctrl+F7

Also, read Melba's pm before he gets angry ;)

010101000110100001101001011100110010000001101001011100110010000

001101101011110010010000001110011011010010110011100100001

My Android cat and mouse game
https://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek

We're gonna need another Timmy!

Link to comment
Share on other sites

I made my script and app and it did not work. The other machine is on Windows 7........it seems to me the way W7 looks at the directory is different. My script shows the path to be "Apacefeatures" etc etc, W7 looks at IP, so 10.10.100.10.

So how do I make my code work on Windows 7.

Link to comment
Share on other sites

Your script works fine on Windows 7 and a network folder, I ran it on my Win7 machine and was able to create the folders without a problem, I just substituted your server name for mine. Perhaps when you're running it there's no window called " FEATURES" open, which bypasses the whole dircreate section.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

so how does W7 treat a window name........apparently there is NO window name for the script to look for. I coded on XP. Is AutoIT v3 only for XP. What do I have to do to get the script to see the window name on a Windows7 machine.

Link to comment
Share on other sites

What makes you think there's no window name to look for?

First check would be to open the program you're looking for, and then run WinList() with no parameters and use _ArrayDisplay on the returned array of window names and see what it's called using that.

#Include <Array.au3>
Global $WinArray = WinList()
_ArrayDisplay($WinArray)

This will display a list of all windows that are open, even some that aren't visible, in that list should be the program you're looking for.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...