Machsupport Forum

Mach Discussion => General Mach Discussion => Topic started by: poppabear on November 16, 2007, 09:52:05 PM

Title: VB Labels does anyone have them??
Post by: poppabear on November 16, 2007, 09:52:05 PM
Did anyone get the list of VB labels that Art released, and further, if you did, did you get any usage insturctions??
If so, can you post them up?

Scott
Title: Re: VB Labels does anyone have them??
Post by: poppabear on November 17, 2007, 10:38:46 AM
anyone, anyone, anyone.....Bueller, Bueller, Bueller???
Title: Re: VB Labels does anyone have them??
Post by: vmax549 on November 17, 2007, 09:57:31 PM
HI Scott, what do you mean by "labels"? I have a lot of docs stored away but am not sure what you are looking for.

(;-) TP
Title: Re: VB Labels does anyone have them??
Post by: zealous on November 18, 2007, 03:48:34 AM
Hey Scott,

In Flash to recive it's simply:

myvariable0 = _root.USERLABEL0
myvariable1 = _root.USERLABEL1

or to send:

Fscommand("_root.USERLABEL0", "this is sent to userlabel 0")
Fscommand("_root.USERLABEL1", "this is sent to userlabel 1")

I haven't had a chance to test these in VB but  this would be my quess.... not sure:

myvariable =GetUserLabel (0)
myvariable1 =GetUserLabel (1)
Title: Re: VB Labels does anyone have them??
Post by: poppabear on November 18, 2007, 08:52:11 AM
Didnt Art put something up about VB user labels? That was a list of all the labels??

Jay, do you have a copy?
and thanks for the Flash help on the screens sets I am building, really couldnt do it with out your Awesome knowledge.

to the Group:  Just a side note, Jay "zeolous", is with out dought the flash guru, I am working on some 5 axis flash screens, and every time I have hit a snag, or made mistakes (many), Jay has showed me the error of my ways and has helped to fix the issue.

If you guys are doing flash stuff and need help, I highly, highly recommend his services!!!

Scott
Title: Re: VB Labels does anyone have them??
Post by: Chaoticone on November 18, 2007, 12:03:16 PM
Scott, you tell it brother, tellllllllllllllllll  it. Jason is da man on flash.  ;D

Brett
Title: Re: VB Labels does anyone have them??
Post by: zealous on December 18, 2007, 12:46:19 PM
Thanks to the both of you....

I've been trying in VB to get the "getuserlabel 1" to work...I belive it should be working fine since its working in great in Flash side of Mach....any one get it to work for them? Also I'd be intrested in all of the label names as well :)

Cant get this to work any idea's

Code: [Select]
'set ticker
SetTicker 205, "sets ticker"

'set user label
SetUserLabel 12, "sets user labels"

'get user label as var pathsent
pathsent= GetUserLabel (1)

'send "getuserlabel 1" to userlable 2
SetUserLabel 2, pathsent