Conversational Wizards

Discuss the creation and usage of Wizards
andrewbishop66
Posts: 103
Joined: Mon Dec 19, 2016 9:05 pm

Re: Conversational Wizards

Post by andrewbishop66 »

Hi
If you mean like the ones like in mach 3

Then very much so I really miss things like thread milling, pocket milling, hole centre, hole pattern ect it not that I cant do these things anymore it just means I have to model them in fusion first which is a pain
Had even considered cutting and pasting to notebook out of mach 3 as I also had a newfangled wizard

If on the other hand, you mean something else then I don't know

Thanks Andrew
bennyhines70
Posts: 6
Joined: Fri Mar 24, 2017 8:27 pm

Re: Conversational Wizards

Post by bennyhines70 »

I would like this option,I think it would make uccnc alot better. Easier and quicker to do basic operations.
alex_s
Posts: 65
Joined: Tue Nov 29, 2016 11:45 am

Re: Conversational Wizards

Post by alex_s »

Aye the standard things would be nice like pocket, face off, hole pattern etc.
needleworks
Posts: 39
Joined: Mon Jan 02, 2017 9:03 am

Re: Conversational Wizards

Post by needleworks »

For sure, I would certainly like to see wizards in UCCNC, it's one of the things I miss from using Mach3.
Dan911
Posts: 613
Joined: Mon Oct 31, 2016 1:22 am
Location: USA

Re: Conversational Wizards

Post by Dan911 »

Hi Terry,
I messed with this a little sometime back when you explained the difference to me between wizards and plugins. I got most of the base work done and managed to write a simple create a circle wizard but than kinda got put on the back burner. It's a bit primitive now but I think it has the potential of a handy plugin. Would appreciate any suggestions on different direction or approach.

Has a text file in zip that has to be put in the plugin folder also, if your plugin folder isn't "C:\UCCNC\Plugins" that it won't work, I never got around to making an editable configure setup.

Wizard.zip
EDIT:
Forgot, you need to create a button and give it a labelnumber 6333
Dan911
Posts: 613
Joined: Mon Oct 31, 2016 1:22 am
Location: USA

Re: Conversational Wizards

Post by Dan911 »

I intended to use the configure(plugin menu) window for setup such as for file path and buttonnumber choice and any other setup options that came along. I agree I would like to see a full page set also, what I originally was trying to achieve was something similar to Mach 3 wizards, click a button for menu of wizards and choose from there.

I also agree it would be nice to be able to just add a wizard without having to upgrade plugin. Have to give that some thought, I could call a macro with wizard choice but like you said it makes it somewhat limited.

BTW the silly wizard "create a circle" I used a int for diameter so if goes to decimals it won't work.

Fixed it here if any1 wants to check it out.
Wizard.2.zip
dezsoe
Posts: 2093
Joined: Sun Mar 12, 2017 4:41 pm
Location: Csörög, Hungary

Re: Conversational Wizards

Post by dezsoe »

Dan,

You can use this class to read/write ini files. It works fine for me. To access the Plugins folder without fixing "C:\UCCNC" (where I never had UCCNC :)) use this:

Code: Select all

IniFile myIni = new IniFile();
string myIniFile = Application.StartupPath + @"\Plugins\yourfilename.ini";
Dan911
Posts: 613
Joined: Mon Oct 31, 2016 1:22 am
Location: USA

Re: Conversational Wizards

Post by Dan911 »

dezsoe wrote:Dan,

You can use this class to read/write ini files. It works fine for me. To access the Plugins folder without fixing "C:\UCCNC" (where I never had UCCNC :)) use this:

Code: Select all

IniFile myIni = new IniFile();
string myIniFile = Application.StartupPath + @"\Plugins\yourfilename.ini";
That's great Dezsoe! Thankyou.
dezsoe
Posts: 2093
Joined: Sun Mar 12, 2017 4:41 pm
Location: Csörög, Hungary

Re: Conversational Wizards

Post by dezsoe »

What do I do wrong? I cannot (don't know) how to start your plugin. (I created c:\uccnc\plugins and copied the .txt file into it.)
Dan911
Posts: 613
Joined: Mon Oct 31, 2016 1:22 am
Location: USA

Re: Conversational Wizards

Post by Dan911 »

dezsoe wrote:What do I do wrong? I cannot (don't know) how to start your plugin. (I created c:\uccnc\plugins and copied the .txt file into it.)

You need to create a button 6333

The text file in folder like you described
Post Reply