thatoneguy
@thatoneguy
New Member
Joined: Feb 14, 2024
Topics: 77 / Replies: 395
Reply
RE: MAXscript used for interapplication communication…

Were you aware of Max’s COM interface? If not I would take a good look at that and see if it doesn’t solve a lot of the problems you were encountering…

16 years ago
Forum
Reply
16 years ago
Forum
Reply
RE: MS noobquestion: passing a variable

I always pass in the obj to the function. That avoids any and all scope issues. Most of my functions are in a global scope. So the variable can be pas…

16 years ago
Forum
Reply
RE: Weird format to:stringstream problem…

One case I run into which constitutes about 90% of this error is when I try to format a filestream or stringstream to a filestream or stringstream. H…

16 years ago
Forum
Reply
RE: Idea for altering a Bobo script – will it work?

I think he wants VRay or MRProxies. Which can’t be placed except with Bobo’s script. Adjusting the script to choose a random source object should be …

16 years ago
Forum
Reply
RE: UV coord to mapfaces

This is where Bobo’s DVD would come in really handy. He has a thorough tutorial on how to do this.

16 years ago
Forum
Reply
RE: Export Settings?

Aha! Found the answer from Adam Fletcher on The Area: getDir #plugcfg + “\\gw_objexp.ini”

16 years ago
Forum
Topic
16 years ago
Forum
Replies: 1
Views: 11
Reply
RE: Limit an edit-box to Integer/float value.

Is there an easy way to filter for only good characters? fn goodstringchars stringvar goodchars = ( for i = stringvar.count to 1 by -1 do (if not …

16 years ago
Forum
Reply
RE: Limit an edit-box to Integer/float value.

try (destroydialog RolloutBob)catch() fn FilterNumbers t = ( badchars = ” ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz/?>,<+=-_)([]{}*&…

16 years ago
Forum
Reply
RE: Ignoring % in a format?

Well I have a function: let’s say fn bob ( data = stringstream “” format “C:\ObjName_%04d.obj” to: data data ) bigdata = stringstream “” format b…

16 years ago
Forum
Reply
RE: Ignoring % in a format?

bob = stringstream “” tim = “[\\\%]” format tim to:bob bob seek bob 0 filepos bob (readvalue bob ignorestringEscapes:true) – Compile error: Illega…

16 years ago
Forum
Reply
RE: Ignoring % in a format?

escape strings were my first try… but it gets added to like 10 stringstreams. So each time I would have to go through and add a \ in front of each one…

16 years ago
Forum
Topic
Forum
Replies: 7
Views: 20
Reply
RE: Best way to force arbitrary code execution order? A -> B -> C

Case. I like it. I always forget about case.

16 years ago
Forum
Page 5 / 32