Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Graphic Design, Digital Imaging, and Multimedia
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Graphic Design, Digital Imaging, and Multimedia Working in two, three, and four dimensions

Reply
 
LinkBack Thread Tools
Old 06-06-2008, 07:01 AM   #1 (permalink)
Registered User
 
Join Date: Jun 2008
Posts: 1
OS: XP


3d max 9 error help!!

Hello, i am new to the forums!
I am currently doing a rigging project and I need help on a couple of errors 3d max 9 is giving me. This is a a bit urgent since this is related to a final i must turn in. I would gladly appreciate any help.


First of all, Max is giving me an annoying error. When i open the reaction manager, it tells me an error and opens up the script window. Sometimes it closes instantly. I am not sure how it happened, and when i open my earlier files it doesn't come up. At the first time.... when i open it again, the error occurs. I have to go almost 6 files back to avoid it. I was lucky enough to copy the script before max shut down, so i hope this will help some how. /*

***************************************************************************
Macro_Scripts File
Author: Adam Felt
Macro_Scripts that implement some animation specific methods

Revision History
May 26, 2004 - Adam Felt - Created
December 14, 2004 - Nicolas Léonard - added ToggleLimits

-- MODIFY THIS AT YOUR OWN RISK
***************************************************************************

*/

macroScript DeleteSelectedAnimation
enabledIn:#("max", "viz")
buttontext:"Delete Selected Animation"
category:"Animation Tools"
internalCategory:"Animation Tools"
tooltip:"Delete Selected Animation"
(
On isEnabled Return
(
$selection.count != 0
)


On Execute Do
(
maxOps.deleteSelectedAnimation()
)
)

macroScript OpenReactionManager
enabledIn:#("max")
buttontext:"Reaction Manager"
category:"Animation Tools"
toolTip:"Reaction Manager"
(
reactionMgr.openEditor()
)

macroScript OpenAnimationLayers
enabledIn:#("max")
buttontext:"Animation Layers"
category:"Animation Tools"
toolTip:"Animation Layers"
(
animLayerManager.showAnimLayersManagerToolbar true
)

macroScript ToggleLimits
enabledIn:#("max")
buttontext:"Toggle Limits"
category:"Animation Tools"
toolTip:"Toggle Limits"
(
Fn toggleAnimLimits anim &limitTab &toggleValue =
(
local ILimitControl
if anim != undefined do
(
if (ILimitControl = getInterface anim #limits) != undefined do
(
if toggleValue and anim.IsEnabled() do
(
toggleValue = false
)
append limitTab anim
)

for i = 1 to anim.numsubs do
(
toggleAnimLimits (getSubAnim anim i) &limitTab &toggleValue
)
)
)

On isEnabled Return
(
$selection.count != 0
)

On Execute Do
(
local limitTab = #()
local toggleValue = true
for s in selection do
(
toggleAnimLimits s &limitTab &toggleValue
)
for limit in limitTab do
(
limit.SetEnabled toggleValue
)
)
)

-- END OF FILE



Second when i close my application, it gives me this every time!
http://img367.imageshack.us/img367/4...onerrorqg4.jpg
I always save before i close but it continues to give me the error. I have tried rebooting and reinstalling the program. Nothing That i know seems to work. This also has been happening for a few files now.

Third, Max doesn't like new files. when i create a new file max gets weird. the colors are not right and i can hardly click on anything i want. the camera gets wonky and the see through mode turns blue. its uncomfortable to work in.
The only way i can avoid it is if i open up an old file, delete what is in there, and save as. Its no biggie, its just a bit annoying sometimes.
I also tried rebooting and reinstalling to fix this. Nada.

I hope you can help me with this.

Thank you for your time
safetybunny is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 07:02 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85