FazBear Posted May 5, 2009 Posted May 5, 2009 Morning All I have a lisp that will run a series of commands on multiple layouts which have standard layout names, problem is i am switching to each layout by specifying the layout name, but occasionally some of the layouts will be removed. so the lisp is running commands in error on those missing layouts. Does anyone know a better method than whay i am using. i was thinking somthing like (if (= [layoutname] "500") (command "-layout" "s" "500")) Cheers all. Quote
Patrick_35 Posted May 5, 2009 Posted May 5, 2009 Hi (member "500" (layoutlist)) And you can use ctab @+ Quote
Lee Mac Posted May 5, 2009 Posted May 5, 2009 As Patrick says, its better to use CTAB (if the version has it), so: (if (member "500" (layoutlist)) (setvar "CTAB" "500")) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.