3ds Max :: How To Run Macros And Script

Sep 14, 2011

I'm thinking of my next out lines for Master Classes and I have been asked about doing a Max Script 101 class. So a raw beginner class into script for those that have never done it in any language. This would cover what Max Script is, how to run Macros and scripts, how the editor and listener work and then get into the basics of creating useful scripts. Variables, arrays, simple functions.

View 9 Replies


ADVERTISEMENT

GIMP :: Create Macros In 2.8?

Jun 27, 2012

how to create macros in gimp 2.8.

View 1 Replies View Related

CorelDRAW X3 :: Document Contains Macros Although Deleted Them?

Dec 13, 2011

I've deleted my test macro from my .CDR file via Tools -> Visual Basic... But after closing Corel and opening that file again, it says that it "contains macros"

View 2 Replies View Related

AutoCAD LT :: Point Filters In Macros

Mar 6, 2012

I'm using LT 2011, and have made the following macros to move a piece of text onto the same Y value as another piece of text, but keep the X value as is:

^C^C_move;;.x;0;_ins;
^C^C_change;;.x;0;_ins;;;;;

The first macro works fine but the second brings up the message 'Point or option keyword required'.

View 1 Replies View Related

AutoCAD Inventor :: VBA Macros Very Slow?

Sep 21, 2011

I have made some macros and now with the 2012 version of Inventor it is very very slowly to open the dialog box to choose a macro. I have the windows cursor during 30 second in each time I want to select a macro.

When I have made a shortcut for one of my macros it goes good and quikly.

View 1 Replies View Related

AutoCad :: Macros Have Stopped Working

Jan 31, 2014

All of a sudden, my action macros aren't working. I'm getting "Unknown command" errors. I've checked my options, everything's pointing to the right folder, and the macro files are in the right folder. Why would I be getting this error?

View 4 Replies View Related

CorelDRAW Graphics Suite X5 :: Macros Are Not Working?

Mar 24, 2012

macros are all disabled and i remembered there is a command to disable all the events but i could not figure out where exactly it is located and even i tried to reinstall the using modiy and repair twice times to install the software but still persists to activate the macros.

all the macros are grayed out and even Alt F11 also not working.

View 2 Replies View Related

CorelDRAW Graphics Suite X3 :: Exporting Macros To New PC

Mar 9, 2011

Have new pc want to move macros... Have exported workspace but Macros did not come...

View 1 Replies View Related

CorelDRAW Graphics Suite X6 :: Shortcuts For Macros

Mar 25, 2012

Assigning shortcuts to macros? I did some but now the option to select macros has completely disappeared.

Correction - all my macros have disappeared. The macro manager is showing up empty. It's as if X6 can't see any macros at all. Delay Load is unchecked.

Just noticed the file name window is named "trial expired" - yet I can open a file.

View 8 Replies View Related

CorelDRAW Graphics Suite X6 :: Looping In Macros

Jul 4, 2013

Been meaning to make some more videos. Here's one I made today pertaining to looping.

[URL].........

[URL]......

[URL].........

View 1 Replies View Related

CorelDRAW Graphics Suite X5 :: No Macros In Customization

Aug 14, 2013

I am trying to switch from X3 to X5, I moved my macros to the X5 GMS folder but the macros don't show up under "Macros" in the customization dialog. I can do Menu>Tools>Macros>Run Macro... and run a macro like that but I would like t be able to assign shortcut keys to the macros and create tool bars, but so far no luck with that.

View 6 Replies View Related

CorelDRAW Graphics Suite X5 :: Why Are Macros Disabled

Jun 15, 2011

I installed the X5 suite and updates, set up my macros, and everything was working fine.  When I restarted Coreldraw, all my macros were disabled? I uninstalled, rebooted and reinstalled, and the same thing happened again.  Everything works fine in X4.

My OS is Vista Home Premium with Service Pack 1.

View 12 Replies View Related

AutoCAD Inventor :: How To Activate Macros In 2012

Mar 4, 2013

Macros in inventor drawing are not activating or it is not automatically generating vba codes.

when creating macros and i assign dimensions to objects but the macros are not generating any codes.

View 3 Replies View Related

AutoCad :: CUI Macros Had To Be Edited To Work Properly

Jan 11, 2012

Something strange happened recently where in order for my Right-Click Menu commands to work properly, and the double click ddedit to work, I had to take the "^C^C" out of the macro. All my related variables are set correctly, PICKFIRST, DBLCLKEDIT, etc...

What is happening is, I would get a selection set, right-click, copy with base point. Normally because the selection set is there, once a base point is selected, the command ends. In this case, after specifying the basepoint, I am asked to select objects again... This goes for ALL right click menu commands. Command line input is NOT affected.

View 5 Replies View Related

AutoCAD LT :: 2013 - Toolbar Macros Not Working

Apr 17, 2012

Toolbar macros I've been using for several versions now are not working in LT 2013?

Here an example of one of the macros:

^C^C_select;_auto;\_copy;_p;;@;@;_move;_p;;\_rotate;_p;;@;\_redraw:

View 4 Replies View Related

CorelDRAW Graphics Suite X5 :: Where Recorded Macros Stored

May 2, 2013

I thought it would be in the same folder as custom media, but the GMS folder there is empty. I'd like to back them up. Where they are stored (in XP)?

View 8 Replies View Related

CorelDRAW X4 :: How To Combine 2 Macros Or Run A Batch Process On Each Macro

May 8, 2012

I have created a macro to change the Country of Origin text in a cd label file and I also have created a macro to remove some guide rings in the same label file but I am unable to combine the 2 macros into one macro I can run on the cd label file.  The code for each macro is as below.

Sub Rings()    ' Recorded 27/04/2012    ActivePage.GuidesLayer.Visible = True    ActivePage.GuidesLayer.Visible = False    ActivePage.Layers("Guidelines_2").Visible = True    ActivePage.Layers("Guidelines_2").Visible = False    ActivePage.Layers("Guidelines").Visible = False    ActivePage.Layers("Guidelines").Visible = True    ActiveLayer.Visible = False    ActiveLayer.Visible = True    ActivePage.Layers("Graphic Elements").Visible = False    ActivePage.Layers("Graphic Elements").Visible = True    ActivePage.Layers("Guidelines").Visible = FalseEnd Sub

'TextReplacePublic Function FindReplace(ByVal str As String, ByVal toFind As String, ByVal toReplace As String) As String    Dim i As Integer    For i = 1 To Len(str)        If Mid(str, i, Len(toFind)) = toFind Then   ' does the string match?            FindReplace = FindReplace & toReplace               ' add the new replacement to the final result            i = i + (Len(toFind) - 1)               ' move to the character after the toFind        Else            FindReplace = FindReplace & Mid(str, i, 1)        ' add a character        End If    Next iEnd Function

Public Sub TextTranslate()    Dim s As Shape    ActiveDocument.BeginCommandGroup "Text Translate"    For Each s In ActiveDocument.ActivePage.Shapes        If s.Type = cdrTextShape Then            s.Text.Story = FindReplace(s.Text.Story, "Recorded in Ireland", "Recorded in China")            s.Text.Story = FindReplace(s.Text.Story, "Printed in Ireland", "Printed in China")        End If    Next s    ActiveDocument.EndCommandGroupEnd Sub

how I could (1) join the 2 macros above or (2) create a batch macro for each macro above I could run to update all coreldraw cd label files in a folder.

View 7 Replies View Related

CorelDRAW X6 :: Create Formulas Similar To Excel Using Macros?

Jun 5, 2013

I have a form I'm creating in CorelDraw and I would like to be able to input numbers and have a table that performs calculations similar to what Excel does.  It's basically going to add up prices and then calculate tax.

View 1 Replies View Related

CorelDRAW X3 :: Macros Disabled After Updating To MS Office 2010

Mar 22, 2012

I work for graphics company who uses Corel heavily for all of our graphics work. We have custom built macros that were made to save our art into our database to then be accessed through Microsoft Access.

We've had these Macros running for many years and have never had any issues. Due to a mail server crash we moved to Office 365; a cloud based mail server. We then started updating our machines to Office 2010 to be able to use our new cloud based email locally. 

The issue is once we upgraded to MS Office 2010 our macro stopped working and we cannot see where the issue is being caused. The weird thing is it's on both XP and Win7 machines. 

We've uninstalled and re-installed Corel with no luck. I've changed permissions in Win7 and it has done nothing.

View 3 Replies View Related

CorelDRAW Graphics Suite X6 :: Using Shaping Commands From Macros

Jan 21, 2013

I'm wanting to cut a shape out of a rectangle from a macro.  I need to do this on hundreds of files.  I tried to do the following while recording a macro:

Select all shapes
Run Arrange->Shaping->Back Minus Front

However, this just results in this comment being recorded: "Recording of this command is not supported: ShapingCommand"

How to call the shaping commands from VBA?  I've dug through offline and online documentation and have come up with nothing.

View 4 Replies View Related

AutoCAD Inventor :: Engineer Notebook Disable Macros

Jul 5, 2012

Inventor 2010:

when i create a note in an assembly (accidentally, we never use them), all my macros refuse to run from the buttons in the "User Commands" panel.

Why? Bug? What's happening to cause this? Can we programmatically remove or disable the "Create Note" option from the right-click menu?

View 3 Replies View Related

AutoCAD Inventor :: Keyboard Shortcuts For VBA Macros Not Remembered?

Oct 23, 2012

If I set a keyboard shortcut for a macro, it will function properly until the session is closed. When Inventor is opened again, the shortcut will not be on the keyboard customization list. So far, all shortcuts for regular Inventor functions, and even Add-Ins, will stay present when the session is closed and opened. I've been able to reproduce this on a co-worker's computer, so I don't believe it is an issue related to my system.

Edit: Forgot to add, using Inventor 2012

View 3 Replies View Related

AutoCAD Inventor :: 2012 Freeze When Macros Should Load Or Run

Oct 16, 2012

Working with inventor pro 2012, whenever I try to run a macro, the program freezes.  It happens when I press the tools/macros buttonand it can take 30 sec or more before the macros dialog release and active or I can try to run windows job list which seems to release the jam too.It also happens when I try to run my macro with shortcut key or customized button. It freezes before the macro even loads. If I open the macros editor and run the macro from there (run sub) then there is no delay at all!    

Autodesk Inventor 2012 SP1 64-bit, win 7 

View 1 Replies View Related

AutoCAD Inventor :: Icons / Display Text For Macros

Oct 7, 2013

Short of converting to an add-in is there any way to place macro's into toolbars where you can set the Text of the button to something other than the macro name?

I mean, while to those who write them, there's nothing wrong (really) with a command button titled Invoke_This_Fuction or InvokeFunction, it looks quite odd to everyone else.

If the only way is via add-in, that's fine (though a friendly display name should be an option). Just trying to find out before I spend a boatload of time only to figure out you can't

Also, do all add-ins 'have' to be installed? Or is there a way you can just drop a file in the correct path and it'll appear on next running of Inventor?

View 9 Replies View Related

AutoCAD Inventor :: Macros / VBA Editor Button Not Working

Jun 22, 2011

I have a users machine that is displaying some odd behaviour.  Their Macros and VBA Editor buttons have stopped working.  We have tried several things already but nothing appears to have any effect.

View 9 Replies View Related

AutoCAD Inventor :: Add Macros To Quick Access Toolbar

Sep 21, 2012

We have a problem at work with buttons disappearing from the quick access toolbar.

I already looked around and it is being said that it is a bug, wich can be fixed with a service pack. I work in a big company, and they are refusing to do the service pack.

So the next best thing I can figure is to make a macro, wich will add all the macros I want to the quick access toolbar in assembly level, part level, sketch level and drawing level.

View 1 Replies View Related

AutoCAD Inventor :: 2012 Freeze When Macros Should Load Or Run?

Oct 16, 2012

Working with inventor pro 2012, whenever I try to run a macro, the program freezes. It happens when I press the tools/macros button and it can take 30 sec or more before the macros dialog release and active or I can try to run windows job list which seems to release the jam too. It also happens when I try to run my macro with shortcut key or customized button. It freezes before the macro even loads and it is very frustrating. If I open the macros editor and run the macro from there (run sub) then there is no delay at all!    

Autodesk Inventor 2012 SP1 64-bit, win 7 

View 9 Replies View Related

Photoshop :: Find Details Of Existing Macros / Batch Jobs?

Mar 27, 2012

Back with photoshop after some time away and a while back i set up a few macros/batch jobs to add frames to photos and had a few set up depending on the resolution of the photo, portrait/landscape. 

I know how to create them again - but obviously would rather not! so question is how do i find out what Function keys I mapped the different batches to?

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Looping In Keyboard Macros

Jan 9, 2013

I have created the following keyboard macro:

^C^C_.MOCORO \ C X R

It launches move-copy-rotate, allows me to pick 2 items (in my case a electrical symbol and its associated tag), copies the entities to the desired location then rotates.  It works perfect, however after the rotate I need to repeat the process indefinitely starting before the "C".

I know that I can usu an asterisk at the beginning to loop the entire macro, however I don't want to re-select, just continue on with the MCR function using the already selected entities.  Any GOTO function in macros?

I suspect that I might need LISP for this but I not familiar with writing that code.

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Create Macros Of A Drawing

Aug 6, 2012

How to create macros of a drawing and then hw can we change the drawing by editing the macro. E.g.. I have drawn a circle of 30 mm dia.. than need to crate macros for same and then by changing the dia of circle in macros I want to create new circle of 50 mm dia.

Another thing I wanted to ask is what is difference between visual lisp and visual basic. Which is easier??

View 7 Replies View Related

AutoCAD 2010 :: Macros For Moving Text Based On Relative Coordinate

Oct 25, 2012

I am using AutoCad 2012, with CADDUCT. On my runs of duct that go vertical, I like to stack my tag numbers beside the riser in order, so our installers can easily identify the order without a ton of section views. I am trying to figure out a macro that will do numerous things. Since my tags come out at different rotation angles, I would like to do the following commands.

Rotate object text "TAG #" to 0 degrees

move object text "TAG #" to "Snap from" & "snap insert" 6" below the tag above it

I want the numbers to align by their insert locations up and down the page, and exactly 6" on center vertically from one another. The tag numbers have a node justified to the center up and down of the text.

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved