Forget about it, I’ve got it, didnt know that you could do a comparision in that form… it returns true or false if k is equal to the current tab, simp…
Great solution Denis as always… I just didnt get the sub_rollouts[k+1].visible = (k == e.TabPageIndex) part… arent you overriding the k in the for loo…
No, I had the same problem in mr Options. Create a global array or something containing the default values.
You could save the values in a global variable.
I’m starting to believe that DenisT is the Chuck Norris of Maxscript :bowdown:
Well, I guess the main “problem” is when you’re changing the render settings, I dont think Undo will revert that. I’m not sure but maybe before changi…
I didnt get one thing, you say Hold and then Fetch, work ? Or doesnt work the way you wanted? If it works, just use that, if you dont want to use that…
I think the problem is that he’s also trying to change that parameter in the target object of the light… which doenst have that property. Try this: …
Pure awesomeness
Yeah, I think in the case of the code Denis posted, mousetrack() would have the same effect, that’s why I talked about the WM_MOUSE or like Denis said…
Lol… see? Denis you the man But, does that catch the click or it catches while the button is pressed? One other thing, I thought that when using som…
I’ve research a little bit and I think you could do this by using Windows Hooks to monitor mouse messages (which I guess would give you access to the …
Another thought… not that I have a reasonable explanation for this but have you tried running the hiddenDosCommand in a different thread using Backgro…
Norman3D: Yes this works, but trying to pass arguments directly through Process.Start instead of using Process.StartInfo.Arguments fails. I have no…
How about if you remove the StartInfo ? Just run the Process.Start (“cmd.exe /C ” + Command) ?