Re: set a behavior into a sprite with out drag & drop???

2002-01-29 Thread Daniel Plaenitz
At 03:54 28.01.2002 -0500, hoanglinh wrote: >Hello, >I'm a becomer and my English is not well. I have got a >question that I want to use the statement to set a behavior >into a sprite or much more. I tried to use the "sendsprite" >and "sendallsprites" statement but unsuccessfull. Somebody >help me

Re: Logic question...

2002-01-29 Thread Jason Je
Thanks Irv... I really appreciate your help... I wasn't really thinking of the list of all the possible solutions in the beginning... What I did was to see if any combinations of block make certain figures(such as three in a row or four in a column)... I think I got a great deal to go on wit

Re: AW: SMTI switch

2002-01-29 Thread the nightboy
>> Unfortunately it can't look pretty good, it has to look perfect. >> particularly given the size. What really slows the whole thing down is >> that the images that are animating over the video are 3MB each+. Like I >> said all of the images will be projected on a screen 100x100 feet so >> quali

AW: SMTI switch

2002-01-29 Thread Michael von Aichberger
> Unfortunately it can't look pretty good, it has to look perfect. > particularly given the size. What really slows the whole thing down is > that the images that are animating over the video are 3MB each+. Like I > said all of the images will be projected on a screen 100x100 feet so > quality, b

Re: SMTI switch

2002-01-29 Thread Terry R. Schussler
At 12:36 PM -0500 1/29/02, the nightboy wrote: >I am creating an application with Director that would be triggered by SMTI >time code. I am searching for xtras to bridge the two. Can anyone offer any >suggestions? Maybe you can implement a SMPTE to Midi event bridge and use the Sequence Xtra? ht

Re: SMTI switch

2002-01-29 Thread the nightboy
>So the vtr has midi connections? Then I'd look to the SequenceXtra -- I >think that can send midi machine control from smpte, could be wrong >though. But it does support system exclusive messages. Then, if it does >send smpte over midi, you just have your director app have a proplist >playlist wi

Re: SMTI switch

2002-01-29 Thread the nightboy
>Yeah, honestly this sounds like a hack - given the size of harddrives and >video cards today, I think any control of a laserdisc/vcr is pre '90. > >Can't you encode the movie and keep it uncompressed? I mean, an hour of >video is 12 gigs, right? Something like that? And honestly too, if you >even

Re: SMTI switch

2002-01-29 Thread grimmwerks
So the vtr has midi connections? Then I'd look to the SequenceXtra -- I think that can send midi machine control from smpte, could be wrong though. But it does support system exclusive messages. Then, if it does send smpte over midi, you just have your director app have a proplist playlist wit

RE: linked director movie question

2002-01-29 Thread the nightboy
I figured it out, incase anyone ever wants to do this, and I don't know why I had such a brain fart. The images are linked to the ldms in an external cast. so all the importFilInto deals with the external cast. Works Like butter. Still could use pointers for the smpte. Is the datatron pretty sim

Re: SMTI switch

2002-01-29 Thread the nightboy
it will definitely be using midi. b Brian Douglas (:ub) [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROT

Re: SMTI switch

2002-01-29 Thread Colin Holgate
>>I have described the scenario incorrectly. I want the vcr to send the smpte >>to the application. Then based on the timecode, it would execute a command. > >H. Well, you'd need a VTR that can send timecode to begin >with, and then connect it to a computer that has a serial port >capabl

Re: linked director movie question

2002-01-29 Thread Howdy-Tzi
At 15:26 -0500 01/29/2002, the nightboy wrote: >We are building an aplication that incorporates animations and video. >Because the video file, if used in director = 2 Gigs +, we can't compress >it as it is going to be projected on a screen 100x100 feet. Ouch! Yes, that can be a problem, all righ

Re: SMTI switch

2002-01-29 Thread grimmwerks
Yeah, honestly this sounds like a hack - given the size of harddrives and video cards today, I think any control of a laserdisc/vcr is pre '90. Can't you encode the movie and keep it uncompressed? I mean, an hour of video is 12 gigs, right? Something like that? And honestly too, if you even c

Re: SMTI switch

2002-01-29 Thread Howdy-Tzi
At 14:56 -0500 01/29/2002, the nightboy wrote: >I have described the scenario incorrectly. I want the vcr to send the smpte >to the application. Then based on the timecode, it would execute a command. H. Well, you'd need a VTR that can send timecode to begin with, and then connect it to

RE: linked director movie question

2002-01-29 Thread Stephane Comeau
Try the approach in the second example. Import the file in the main movie then pass the media to the ldm. >I think this works, but I'm not current on LDM quirks: > >tell sprite(intLinkedMovieSpriteNum) > importFileInto member("toImportinto", "internal"), strFileName >end tell > >A number of d

Re: linked director movie question

2002-01-29 Thread the nightboy
>At 13:52 -0500 01/29/2002, the nightboy wrote: > >>I am trying to importFilInto a member of one of the movies that is linked >>internally to the main movie. >> >>Something akin to a MovieClip in flash, but I do not know how to target the >>cast and/or members of this internal movie. > >You can't,

RE: linked director movie question

2002-01-29 Thread grimmwerks
I'm coming in late on this thing - but you're trying to link a member in a LDM on the fly? Are all the LDM in the same path? Are the linked members? Can you put teh path in a global and each LDM links a member via member.filename=global & "membername"? On Tue, 29 Jan 2002, the nightboy wrote

Re: SMTI switch

2002-01-29 Thread grimmwerks
What kind of connection does the vcr have? On Tue, 29 Jan 2002, the nightboy wrote: > >Well that's a good point - does the thing you want to control generate > >smpte? If it does, then what kind of connections does it have? For > >instance, my da88 can send/receive smpte commands, but it does i

RE: linked director movie question

2002-01-29 Thread Stephane Comeau
Does importFileInto not work from an LDM? If that's the case then this might work: on importFile, strfileName mbrTemp = new(#bitmap) importFileInto mbrTemp, strFileName imgMedia = mbrTemp.media tell sprite(intLinkedMovieSpriteNum) member("toImportinto", "internal").media = imgMedia

RE: linked director movie question

2002-01-29 Thread the nightboy
>I think this works, but I'm not current on LDM quirks: > >tell sprite(intLinkedMovieSpriteNum) > importFileInto member("toImportinto", "internal"), strFileName >end tell > >A number of different ways to set this up, but the basic thing to remember >is that between "tell" and "end tell" the conte

Re: linked director movie question

2002-01-29 Thread Howdy-Tzi
At 13:52 -0500 01/29/2002, the nightboy wrote: >I am trying to importFilInto a member of one of the movies that is linked >internally to the main movie. > >Something akin to a MovieClip in flash, but I do not know how to target the >cast and/or members of this internal movie. You can't, AFAIK, a

Re: SMTI switch

2002-01-29 Thread the nightboy
>Well that's a good point - does the thing you want to control generate >smpte? If it does, then what kind of connections does it have? For >instance, my da88 can send/receive smpte commands, but it does it over the >midi on the sync card, so any midi device can send midi machine control. > I hav

RE: Projector Error: Does the .INI file exist?

2002-01-29 Thread Todd Culley
Sorry about all the posts, wasn't sure if my e-mail client was posting or not. Seemed to take a long time. I realized my e-mail was set to html and not plain text and tried again. Apologize for any inconvenience. No I know. Todd SCRIBNERmedia 1341 Galaxy Way, Suite E Concord, CA 94520 t: 925

Re: SMTI switch

2002-01-29 Thread grimmwerks
Well that's a good point - does the thing you want to control generate smpte? If it does, then what kind of connections does it have? For instance, my da88 can send/receive smpte commands, but it does it over the midi on the sync card, so any midi device can send midi machine control. [To re

Re: Director .ini error

2002-01-29 Thread Howdy-Tzi
At 10:34 -0800 01/29/2002, Todd Culley wrote: >Don't know if anyone else has gone up to XP but what are some common >tools do you use for this purpose? Hmm, haven't you asked that enough times already today? ;) Has XP evolved to the point that it allows you to use native tools to modify icons?

RE: Projector Error: Does the .INI file exist?

2002-01-29 Thread Howdy-Tzi
At 13:48 -0500 01/29/2002, Colin Holgate wrote: >This is the fourth message today from Todd that begins this way. I >don't think they are repeats, because the content then changes after >that. Mostly it's just the spacing. Strange, huh? And this after you were lamenting the fact the lists were

AW: SMTI switch

2002-01-29 Thread Michael von Aichberger
> >What is it you're looking to do, tie in a projector with a VCR? > YES Maybe the worst since most complicated solution, but at least ONE solution to your problem: Use on top of director another system that can read timecode AND control director: We have done that with DATATON TRAX (www.data

RE: creating shortcut

2002-01-29 Thread Kerry Thompson
> But what is more important is that your programs should *never*, under > *any circumstances*, modify a user's system without telling them > first. > I agree, most emphatically, with Warren. I absolutely detest a program that does anything I don't tell it to. I've even stopped using Yahoo as my

Re: SMTI switch

2002-01-29 Thread grimmwerks
Well, if you want to control a vcr or laserdisc, there's a freebie extra on the mac - check updatestage.com On Tue, 29 Jan 2002, the nightboy wrote: > >At 12:36 -0500 01/29/2002, the nightboy wrote: > > > >>I am creating an application with Director that would be triggered by SMTI > >>time cod

RE: linked director movie question

2002-01-29 Thread Stephane Comeau
I think this works, but I'm not current on LDM quirks: tell sprite(intLinkedMovieSpriteNum) importFileInto member("toImportinto", "internal"), strFileName end tell A number of different ways to set this up, but the basic thing to remember is that between "tell" and "end tell" the context of l

RE: Projector Error: Does the .INI file exist?

2002-01-29 Thread Colin Holgate
>A while ago I saw someone post a problem about director and an .ini >error message as follows: > This is the fourth message today from Todd that begins this way. I don't think they are repeats, because the content then changes after that. Mostly it's just the spacing. Strange, huh? -- [To

linked director movie question

2002-01-29 Thread the nightboy
another question. I am using a technique I saw on DOUG. Linked external movies. I am trying to importFilInto a member of one of the movies that is linked internally to the main movie. Something akin to a MovieClip in flash, but I do not know how to target the cast and/or members of this intern

RE: Projector Error: Does the .INI file exist?

2002-01-29 Thread Todd Culley
A while ago I saw someone post a problem about director and an .ini error message as follows:   (Unable to load movie playlist. Does the .INI file exist?  It must contain a section '[Movies]' with an entry 'Movie01=Pathname.dir')   I have recently upgraded to Windows XP professional, currently run

Re: SMTI switch

2002-01-29 Thread the nightboy
>At 12:36 -0500 01/29/2002, the nightboy wrote: > >>I am creating an application with Director that would be triggered by SMTI >>time code. > >Do you mean SMPTE time code? YES >What is it you're looking to do, tie in a projector with a VCR? YES Brian Douglas (:ub) =

Director .ini error

2002-01-29 Thread Todd Culley
A while ago I saw someone post a problem about director and an .ini error message as follows:   (Unable to load movie playlist. Does the .INI file exist?  It must contain a section '[Movies]' with an entry 'Movie01=Pathname.dir')   I have recently upgraded to Windows XP professional, currently ru

Re: SMTI switch

2002-01-29 Thread Howdy-Tzi
At 12:36 -0500 01/29/2002, the nightboy wrote: >I am creating an application with Director that would be triggered by SMTI >time code. Do you mean SMPTE time code? What is it you're looking to do, tie in a projector with a VCR? -- Warren Ockrassa | http://www.nightwares.com/

Director .ini error

2002-01-29 Thread Todd Culley
A while ago I saw someone post a problem about director and an .ini error message as follows: (Unable to load movie playlist. Does the .INI file exist? It must contain a section '[Movies]' with an entry 'Movie01=Pathname.dir') I have recently upgraded to Windows XP professional, currently

Re: SMTI switch

2002-01-29 Thread grimmwerks
Do you mean smpte code? Maybe the sequence xtra could send mtc over midi? On Tue, 29 Jan 2002, the nightboy wrote: > I am creating an application with Director that would be triggered by SMTI > time code. I am searching for xtras to bridge the two. Can anyone offer any > suggestions? > > b >

Director .ini error

2002-01-29 Thread Todd Culley
A while ago I saw someone post a problem about director and an .ini error message as follows: (Unable to load movie playlist. Does the .INI file exist? It must contain a section '[Movies]' with an entry 'Movie01=Pathname.dir') I have recently upgraded to Windows XP professional, currently

SMTI switch

2002-01-29 Thread the nightboy
I am creating an application with Director that would be triggered by SMTI time code. I am searching for xtras to bridge the two. Can anyone offer any suggestions? b Brian Douglas (:ub) [To remove yourself from th

sending images from shockwave

2002-01-29 Thread James Tu
How do I send an image from a shockwave movie? I've been doing some research and it seems like the way to go is to use the Multiuser server. sendNetMessage can send the picture of a member. The questions is...how do I decode it on the other side and save it as a JPEG or GIF for example... Ja

Re: Logic question...

2002-01-29 Thread Irv Kalb
Jason, The answer to your question depends a great deal on how you are representing your 5 by 5 matrix (i.e. are you using a single 25 element list, or a list of 5 lists where each sublist contains 5 elements). But if you can do the proper translation, here's an approach. Pe-calculate all p

RE: is there any body out there?

2002-01-29 Thread Ken Prat
> In an unusual set of circumstances (I've loaned my PowerBook G3 to a > colleague, my PowerBook G4 is being fixed, and I've been sick since > Friday), I've just gone over three days without reading e-mail. I > have loads to read on other lists, but a couple of lists show no new > messages. Is the

Re: is there any body out there?

2002-01-29 Thread Agustín María Rodríguez
Colin Holgate wrote: > In an unusual set of circumstances (I've loaned my PowerBook G3 to a > colleague, my PowerBook G4 is being fixed, and I've been sick since > Friday), I've just gone over three days without reading e-mail. I have > loads to read on other lists, but a couple of lists show

Re: type conversion string to rect, list, whatever

2002-01-29 Thread Randy Smith
on 1/29/02 6:21 AM, Cornelius at [EMAIL PROTECTED] wrote: > Allright, help! > > I have a bunch of prefs as key/value pairs in an external file > some of the values are lists, rects, etc. > > I need to get these back as their original types. They are all strings > however. > Hi Cornelius, Chec

Statistical Data for General Computer usage?

2002-01-29 Thread Geoffrey B. Holland
Anyone know where I may get a hold of some statistical data in regards to general population system info such as RAM, processor speed, operating system used, etc. The purpose of this data is going to be a guideline for testing our interactive CD's for playability and compatibility. Any help woul

Re: creating shortcut

2002-01-29 Thread Howdy-Tzi
At 13:13 +0100 01/29/2002, Tom Vandenbossche wrote: >That's the point I would use Install Vise either but the client doesn't want >an installer. The shrtcuts has to be placed without user notcie For startres you have to use *something* to make the shortcuts. I believe FileXtra3 (which ships wit

RE: creating shortcut

2002-01-29 Thread Brian Romanko
Tom, You can use Buddy API to create Start Menu groups and icons. Check out CreatePMGroup and CreatePMIcon. BuddyAPI can be found at www.buddyapi.com, and if you only use two functions it is free. Brian Romanko Lead Developer - Neo/SCI Corporation Member - Greater Rochester Macromedia User Gro

RE: type conversion string to rect, list, whatever

2002-01-29 Thread Brian Romanko
Cornelius, Check out the value function. For example: a = rect(3,4,5,6) put a -- rect(3, 4, 5, 6) b = string(a) put b -- "rect(3, 4, 5, 6)" c = b.value put c -- rect(3, 4, 5, 6) Brian Romanko Lead Developer - Neo/SCI Corporation Member - Greater Rochester Macromedia User Group > -Or

Re: type conversion string to rect, list, whatever

2002-01-29 Thread Daniel Plaenitz
At 12:21 29.01.2002 +0100, Cornelius wrote: >I have a bunch of prefs as key/value pairs in an external file >some of the values are lists, rects, etc. > >I need to get these back as their original types. They are all strings >however. > >Anyway to do this? > The value() function may be of hel

Re: creating shortcut

2002-01-29 Thread Tom Vandenbossche
That's the point I would use Install Vise either but the client doesn't want an installer. The shrtcuts has to be placed without user notcie > From: Colin Eyre <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Tue, 29 Jan 2002 10:57:19 + > To: <[EMAIL PROTECTED]> > Subject: Re: creat

type conversion string to rect, list, whatever

2002-01-29 Thread Cornelius
Allright, help! I have a bunch of prefs as key/value pairs in an external file some of the values are lists, rects, etc. I need to get these back as their original types. They are all strings however. Anyway to do this? TIA Cornelius [To remove yourself from this list, or to change to dige

Re: creating shortcut

2002-01-29 Thread Colin Eyre
I use Install Vise from Mind Vision (www.mindvision.com). It will place short-cuts on the desktop and the start menu. it's available for mac and Pc and you can also create custom install screens as well as bundling an uninstaller with the setup program. ---

Re: CD Autostart on a Mac

2002-01-29 Thread shine karth
--- alistair <[EMAIL PROTECTED]> wrote: > I am trying to make a presentation from Director, > which automatically starts > when the CD is inserted into the drive. I know how > to do this on the PC, but > on the Mac I am have trouble with the fact that I am > using Toast 5 under > System 9.1, and t

RE: AW: AW: Quicktime ? Best compression program

2002-01-29 Thread Richard Tribe
Hiya, Related topic was: A little OT but following on from the earlier inquiry... Has anyone else found that adding tracks in QtPro is very unstable if the video track was compressed with Sorenson 3? I've contacted Sorenson about

Re: creating shortcut

2002-01-29 Thread duchai
You can use some function of BudApi xtra to create shortcut. Original message >Date: Tue, 29 Jan 2002 08:32:27 +0100 >From: [EMAIL PROTECTED] (Tom Vandenbossche) >Subject: creating shortcut >To: direct-l <[EMAIL PROTECTED]>, Lingo > >How can I create shortcuts of several demo apps th