Hey,
I was fiddling with the face i recently made for my screencast, and it all works fine, but when i create an action, any other operation triggers a long stream of;
Error: Creating new objects in teh middle of an action can lead to unexpected results. Stop all actions and restart script
it might well be due to a script i have installed, but for example clicking undo, or opening a menu causes about 50 of these messages to scroll.
If i then reload the file its gone again (I can undo fine), until i create an action?
creating actions causes lua console madness
Moderators: Víctor Paredes, Belgarath, slowtiger
- funksmaname
- Posts: 3174
- Joined: Tue May 29, 2007 11:31 am
- Location: New Zealand
- funksmaname
- Posts: 3174
- Joined: Tue May 29, 2007 11:31 am
- Location: New Zealand
- Víctor Paredes
- Site Admin
- Posts: 5815
- Joined: Wed Jan 26, 2005 12:18 am
- Location: Barcelona/Chile
- Contact:
This exactly problem used to happen to me on version 6. It has to be a script in conflict, but never could identify it.
In version 7 I have few scripts installed and haven't seen the problem so far.
Sorry I have no solution, maybe you could try re-installing AS and putting each script one by one to detect which is making the conflict.
Sorry, I know that sounds worse than no solution
In version 7 I have few scripts installed and haven't seen the problem so far.
Sorry I have no solution, maybe you could try re-installing AS and putting each script one by one to detect which is making the conflict.
Sorry, I know that sounds worse than no solution







Moho co-owner
Previously Rigged animation supervisor: My father's dragon, Wolfwalkers & Star Wars Visions "Screecher's Reach"
My personal Youtube Channel
- funksmaname
- Posts: 3174
- Joined: Tue May 29, 2007 11:31 am
- Location: New Zealand
There's a tool script installed in your scripts folder that has "enable" code that checks if you are in an action and then displays the text. It is either a new or old script that might have that code in it.
You could open up all of your tool scripts in a text editor or check any new ones you installed recently. Look for the "enable" function near the top of the script. It should have a string in quotes that is the text you see in the lua console.
You want to fix that part of the script, comment out the action checking.
-vern
You could open up all of your tool scripts in a text editor or check any new ones you installed recently. Look for the "enable" function near the top of the script. It should have a string in quotes that is the text you see in the lua console.
You want to fix that part of the script, comment out the action checking.
-vern
Brilliant,
I still have the errors just like everyone else, but also I have now broken ( through my own coding inexperience and stupidity by trying to follow these cryptic clues) , the lm tools.
We only install these custom scripts because we need these basic and necessary functions that seem to be missing from Anime studio' Pro'
This is a constant complaint of mine, why aren't these very standard tools that have had to be created by enthusiast programmers and installed by us idiot animators, worked up by properly SM and actually included into the software?
We have a the business of animating to do, not searching through some mysterious code to 'comment out' (whatever that means- yeah I did google it and try) bad code, just to get the job done.
Come on Mike lets have some decent tools and bug fixes and stop 'farting' around with poser.
I am going to now reinstall , even though I know the all new crashes in 7 will continue to hound me
I still have the errors just like everyone else, but also I have now broken ( through my own coding inexperience and stupidity by trying to follow these cryptic clues) , the lm tools.
We only install these custom scripts because we need these basic and necessary functions that seem to be missing from Anime studio' Pro'
This is a constant complaint of mine, why aren't these very standard tools that have had to be created by enthusiast programmers and installed by us idiot animators, worked up by properly SM and actually included into the software?
We have a the business of animating to do, not searching through some mysterious code to 'comment out' (whatever that means- yeah I did google it and try) bad code, just to get the job done.
Come on Mike lets have some decent tools and bug fixes and stop 'farting' around with poser.
I am going to now reinstall , even though I know the all new crashes in 7 will continue to hound me
Yay
I fixed the lm tools that I messed up without reinstalling, but what the hell am I doing??
I am still getting the errors from the fa scripts (I think)
Here is my lame attempt to comment out
I don't expect so
I fixed the lm tools that I messed up without reinstalling, but what the hell am I doing??
I am still getting the errors from the fa scripts (I think)
Here is my lame attempt to comment out
is this right?if (moho.layer:CurrentAction() ~= "") then
return false --[[ creating new objects in the middle of an action can lead to unexpected results --]]
end
return true
I don't expect so