Re: lingo-l Flash Bitmap Problem

2004-10-01 Thread Jeremy Aker
When I see a jerk, I usually try one of the following: turn off the Presidential Debate, Leave the boss' office, or stop talking to my ex. Seriously, can you provide more detail. What version of Director? What Flash file export version? Can you describe this jerk in more detail? -Jeremy Aker

lingo-l Opening Word

2004-09-29 Thread Jeremy Aker
Hello LINGO-Lers, Anyone know if it is possible to open a Microsoft Word document to a specific line, anchor, or page via LINGO? I'm concerned mostly with doing this on the Windows platform. -Jeremy Aker [To remove yourself from this list, or to change to digest mode, go to http

Re: lingo-l Hyperlinks in LDM and stage bleed through

2004-07-26 Thread Jeremy Aker
I think what you want to do is change the cursor not change the cursor of the sprite. -- Set to pointer cursor = 0 -- Set to finger cursor cursor = 280 -Jeremy On Jul 26, 2004, at 11:28 AM, Baker, Geoff wrote: Situation: Text member on stage with a hyperlink which opens an LDM with a hyperlink

Re: lingo-l All those DLLs

2004-07-15 Thread Jeremy Aker
, this goes back to D5 or D6, but wasn't documented by MACR until D7. Jeremy Aker On Jul 15, 2004, at 11:12 AM, Stephen Ingrum wrote: ummm what dll files? I've never included those dll's with any project before- is this a MX 2004 thing? Thank you, Stephen Ingrum [EMAIL PROTECTED

Re: lingo-l Text question

2004-06-28 Thread Jeremy Aker
Yes, but it usually results in quite a performance hit. -Jeremy Aker On Jun 28, 2004, at 1:16 PM, Matt Wells wrote: In a editable text member, can you edit the format on a word or words while the movie is playing? So, in the statement (Hello, World) changing the word Hello to a different color

Re: lingo-l Open a specific page within a pdf

2004-06-16 Thread Jeremy Aker
I believe you can do it with the PDF Xtra (http://www.integrationnewmedia.com/products/pdfdirector/) Jeremy Aker mailto:[EMAIL PROTECTED] On Jun 16, 2004, at 9:02 AM, Tim Welford wrote: I had this problem too, The only way I could find was to open the pdf with buddyapi wait for the ok

Re: lingo-l Dot syntax for 'delete the last char of...'

2004-05-26 Thread Jeremy Aker
try: delete myString.char[myString.length] Jeremy Aker http://www.uthd.com/ mailto:[EMAIL PROTECTED] On May 26, 2004, at 1:59 PM, Tom Jacobs wrote: Is there a way of expressing delete the last char of myString using dot syntax? Thanks, Tom

Re: lingo-l Framing text

2004-04-01 Thread Jeremy Aker
There is for a field member, check out the Field tab in the property inspector when you have a field member open or selected. You can not do this for a text member, you'll have to use a shape or bitmap to simulate a border. -Jeremy Aker On Apr 1, 2004, at 3:22 PM, Kerry Thompson wrote

Re: lingo-l FileIO Xtra File Path Limit

2004-03-31 Thread Jeremy Aker
characters you're screwed. -Jeremy Aker On Mar 31, 2004, at 3:59 AM, Des Marron wrote: Hi All, Has anyone ever come accross a limit to the number of of characters in a file path that can be used in the file IO Xtra to open a file? The limit for the path seems to be 126 characters. After

Re: lingo-l Classic Mac and xtras

2003-12-17 Thread Jeremy Aker
Are both the Classic and OS X versions of the Xtra named the same and in folders with the same name? -Jeremy Aker On Dec 17, 2003, at 2:25 AM, grimmwerks wrote: I've been trying to build a classic projector from MX with the Budapi xtra embedded; I've got the xtra in the classic mac xtras

Re: lingo-l stereo sound applescript ?

2003-12-16 Thread Jeremy Aker
If you can live without it being QT and can bring it in as a sound, then you can use the lingo command sound(whichChannel).pan Or how about using two QT members and switching them out? On Dec 16, 2003, at 11:59 AM, jean-louis valero wrote: hello list I need, on mac OS X and 9, to hear only the

Re: lingo-l bulleted lists in text members

2003-12-09 Thread Jeremy Aker
In Mac OS it is Option + 8 On Dec 9, 2003, at 12:16 PM, Slava Paperno wrote: I know this line of lingo will create a bulleted list in the text member: member(1).html = html ullione/lilitwo/li/ul /html But does someone know how to *type* a bulleted list in Dir MX's text editor? Thanks,

Re: lingo-l Passing prop lists between Director and flash.

2003-12-02 Thread Jeremy Aker
).setVariable(variableName, newValue) Jeremy Aker Under the Hood http://www.uthd.com/ mailto: [EMAIL PROTECTED] On Dec 2, 2003, at 3:33 PM, Mendelsohn, Michael wrote: Hi all... Hope everyone is having an incredible day. How exactly do I pass a property list back and forth between Director and Flash

Re: lingo-l scriptList vs. scriptInstanceList

2003-11-11 Thread Jeremy Aker
(mySprite).scriptInstanceList[i] = VOID end repeat sprite(mySprite).scriptInstanceList = [] Jeremy Aker On Monday, November 10, 2003, at 05:14 PM, Irv Kalb wrote: The scriptlist tells you what scripts are attached to a sprite, AND the value of the parameters that have been set in each

Re: lingo-l Mpeg advance on the fly - register?

2003-11-10 Thread Jeremy Aker
Yes, you can use the command register(member x, registrationnumber) although I have not tested to see if this lingo command work in Projector mode. -Jeremy Aker On Monday, November 10, 2003, at 09:52 AM, grimmwerks wrote: I'm creating new mpeg advance members on the fly, and it seems

lingo-l scriptList vs. scriptInstanceList

2003-11-10 Thread Jeremy Aker
What is the difference between sprite(x).scriptList and sprite(x).scriptInstanceList? -Jeremy Aker [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 PROTECTED] (Problems, email [EMAIL

lingo-l Flash in Director

2003-11-07 Thread Jeremy Aker
on keyDown script in Director no longer gets called. Anyone know a way around this? Jeremy Aker [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 PROTECTED] (Problems, email [EMAIL PROTECTED

RE: lingo-l using an non standard shape as a button (USED VECTOR) thanks

2003-09-03 Thread Jeremy P. McKay
Thanks to all. I ended up using a png file. Everything I am working with is coming from flash, so a vector file was the obvious solution, that I did not see. [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

lingo-l using an non standard shape as a button

2003-09-02 Thread Jeremy P. McKay
Hi All, I want to use a star shape for mouse events? Is there any way to do this other than using a bunch of squares and rectangles? - Jeremy [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

lingo-l Imaging lingo

2003-06-03 Thread Jeremy
Anyone have some imaging lingo that will anti-alias an image? Thx Jeremy [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 PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L

RE: lingo-l Imaging lingo

2003-06-03 Thread Jeremy
Sorry let me rephrase, I'm looking for some imaging lingo that will blur the whole image, rather than just the edges. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Sent: Monday, June 02, 2003 8:35 PM To: [EMAIL PROTECTED] Subject: lingo-l Imaging

RE: lingo-l Imaging lingo

2003-06-03 Thread Jeremy
Excellent. I added setAlpha and useAlpha in order to preserve my transparency but other than that it works great. Appreciate the help. Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Colin Holgate Sent: Monday, June 02, 2003 10:44 PM To: [EMAIL

lingo-l Dynamic scripts?

2003-06-03 Thread Jeremy
When creating dynamic sprites with puppet = true and setting the member and all, is there a way to then assign a script to the sprite so that I can give it rollover and mouse behaviors? Thanks. J [To remove yourself from this list, or to change to digest mode, go to

lingo-l Embedded fonts

2003-03-24 Thread Jeremy Farnham
I am using a font (univers) that I need to embed into a project that I am doing. I went to Insert--Media Elements--Fonts. I selected the font that I needed and deleted the * from the font name. When I went back to my stage, all the fonts are now a different face. I've never had this problem

RE: lingo-l Embedded fonts

2003-03-24 Thread Jeremy
it. Someone correct me if I'm wrong on this plz. Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Farnham Sent: Monday, March 24, 2003 5:19 PM To: [EMAIL PROTECTED] Subject: lingo-l Embedded fonts I am using a font (univers) that I need to embed

lingo-l External casts

2003-03-19 Thread Jeremy
Do external casts not get loaded if the project is published and used on a web page? Or do I need to do something special? Thx J [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 PROTECTED]

RE: lingo-l on hyperlinkClicked

2003-03-19 Thread Jeremy
The only way I've dynamically created hyperlinks is: sprite(4).member.word[1].hyperlink = http://whatever; Have you tried putting the hyperlink of your text member in the message window to see if it actually has a hyperlink assigned to it? -Original Message- From: [EMAIL PROTECTED]

lingo-l Multi-user server script

2003-03-06 Thread Jeremy
Does anyone know how I can create a handler for a multi-user server script that acts like an exitframe or stepframe, so that it can be doing things each frame? I've tried putting stepframe and exitframe in the server script and they don't seem to be used by the server. It's easy to create handlers

lingo-l Multi-user server-side script

2003-02-22 Thread Jeremy
I'm writing a server side script to store character info for an RPG I'm working on. The problem I am having is that the getNthfilenameInFolder handler doesn't seem to be supported in the server-side script. Anyone know why? Or know of an alternative to this command so I can grab a list of files

RE: lingo-l Multi-user server-side script

2003-02-22 Thread Jeremy
To Clarify, since I didn't in the original post. The server side script is for the Multi-User Server. Anyone able to help me out? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Sent: Saturday, February 22, 2003 4:00 AM To: [EMAIL PROTECTED

RE: lingo-l modelsUnderRay problem

2003-02-10 Thread Jeremy
I've only used modelsUnderLoc to get what models are clicked on, but have been able to get multiple models under the loc. The commands work the same way. Which model of the 3 is it giving you? Sounds like the ray is shooting the wrong dir. -Original Message- From: [EMAIL PROTECTED]

RE: lingo-l projecter running very slow from cd.

2003-02-06 Thread Jeremy
Sounds like the datarate on the mpeg is more than the cdrom is capable of showing, should check it to see. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of nitin sharma Sent: Friday, February 07, 2003 12:38 AM To: [EMAIL PROTECTED] Subject: Re: lingo-l

lingo-l Director MX( 8.5) bug

2003-02-05 Thread Jeremy
I have reported what I believe to be a bug to macromedia, and decided to send out a copy to the list just so people are aware. It's not a show stopper or bad one by any means, but it doesn't hurt to be made aware of it. Here is a simple copy/paste from my bug submission to macromedia. It effects

RE: lingo-l Director MX( 8.5) bug

2003-02-05 Thread Jeremy
I can understand calling whatever trim white space does if its enabled, but its really lame for director to square off the image with jacked up dimensions if it is disabled. Just by disabling it, that doesn't mean I want director adding stuff to my bitmap. I don't see how that could not be a bug,

RE: lingo-l Movie transparency

2003-02-03 Thread Jeremy
Thanks a lot! I forgot the RGB + Alpha setting, knew it was something simple. J -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Mathew Ray Sent: Monday, February 03, 2003 9:42 AM To: [EMAIL PROTECTED] Subject: Re: lingo-l Movie transparency Jeremy

lingo-l Movie transparency

2003-01-30 Thread Jeremy
What type/format can I render out a movie in after effects in order to have transparency within director? J [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 PROTECTED] (Problems, email

RE: lingo-l Movie transparency

2003-01-30 Thread Jeremy
I made a completely green map for a game, and outputted bitmap sequences of some demos I recorded, because I just want the models. What I want to do is key out the green, which I have done in after effects, but I want a transparent background in the sequence when I render it back out into a png

RE: lingo-l Movie transparency

2003-01-30 Thread Jeremy
(*.dcr) imported into your current movie) or flash. Charlie Fiskeaux II Media Designer The Creative Group www.cre8tivegroup.com 859/858-9054x29 - Original Message - From: Jeremy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 2:52 PM Subject: RE: lingo-l Movie

Re: lingo-l QT xtras in Shockwave

2003-01-21 Thread Jeremy Aker
by people with a fast connection then I wouldn't worry about it not working through dial-up - it's not a valid test. Hope that helps. Jeremy Aker On Tuesday, January 21, 2003, at 11:14 PM, Alan Neilsen wrote: Hi list I am building some video editing simulations in Shockwave for delivery over

RE: lingo-l re: 3d shockwave collision detection

2003-01-14 Thread Jeremy
The easiest way to do as you describe is to use the havok physics that is built into director. If you would like to email me I can send you a small dir file that is a very simple example of using havok. Or you can IM me ICQ:13463220 or AIM: whatshisnutz6979 -Original Message- From: [EMAIL

RE: lingo-l Rotating 3d model

2003-01-14 Thread Jeremy
I suggest attaching the model together before exporting it so that it is 1 object in director, and then you can use that behavior, otherwise you may need to make your own custom behavior. You could also rotate the camera around world origin, and assuming you have the scene pretty much centered on

lingo-l Any mySQL guru's on the list?

2002-12-10 Thread Jeremy
I'm going out on a limb here and wanna ask a mySQL question in the hopes that there is a mySQL guru among us that can help me out. First off heres what I'm doing. I have a director project that loads a lot of information from a mySQL database that holds the spawn information for game. Basically

RE: lingo-l Any mySQL guru's on the list?

2002-12-10 Thread Jeremy
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Robert Tweed Sent: Tuesday, December 10, 2002 4:35 PM To: [EMAIL PROTECTED] Subject: Re: lingo-l Any mySQL guru's on the list? - Original Message - From: Jeremy [EMAIL PROTECTED] Finally, heres the issue

RE: lingo-l Hyperlinks in text members BUG?

2002-12-09 Thread Jeremy
, Jeremy wrote: Scrollbars are always Direct To Stage.. hh thanks for that info. As far as the hyperlink, all my on hyperlinkclicked handlers are on the sprites themselves(the text members). Do you mean they are behaviors attached in the score, or written as cast member scripts directly

RE: lingo-l Hyperlinks in text members BUG?

2002-12-09 Thread Jeremy
? Jeremy wrote: Bahaviors attached to the sprites. Perhaps if the sprite thats populated dynamically is in a higher sprite channel and expands over the other sprite its trapping the mouseup? Brad [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo

RE: lingo-l Clearing text member values on start up ... how to?

2002-12-08 Thread Jeremy
Theres a couple options that I am familiar with. You can create a script, change it to a movie script in the property inspector, then add something like the following. On preparemovie me put into member(text1) put into member(text2) put into member(text3) End OR you

RE: lingo-l Hyperlinks in text members BUG?

2002-12-08 Thread Jeremy
sticking around if you have code turning visibility on/off of text members. The sprite channel will clearly be off but the scroll bar remains, even though you cant click on it. J -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Jeremy Sent: Saturday

lingo-l Hyperlinks in text members

2002-12-07 Thread Jeremy
Anyone know of a reason why a text member on stage will only allow me to click the links once when I run the project, then I cant click the links again, even though they stay blue w/underline and visible? [To remove yourself from this list, or to change to digest mode, go to

RE: lingo-l New learner: how do write a handler that inserts text memebers in the cast?

2002-12-06 Thread Jeremy
Try: mTextMember = new ( #text, castlib(Internal) ) mTextMember.name = blah -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of John Lodge Sent: Thursday, December 05, 2002 10:26 PM To: [EMAIL PROTECTED] Subject: Re: lingo-l New learner: how do write a

RE: lingo-l New learner: how do write a handler that inserts text memebers in the cast?

2002-12-06 Thread Jeremy
Try: mTextMember = new ( #text, castlib(Internal) ) mTextMember.name = blah -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of John Lodge Sent: Thursday, December 05, 2002 10:26 PM To: [EMAIL PROTECTED] Subject: Re: lingo-l New learner: how do write a

RE: lingo-l Framerate in lingo?

2002-12-05 Thread Jeremy
Thanks a bunch -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Agustín María Rodríguez Sent: Thursday, December 05, 2002 2:53 AM To: [EMAIL PROTECTED] Subject: Re: lingo-l Framerate in lingo? Jeremy escribió: Anyone know how to get the framerate

lingo-l keycode

2002-12-05 Thread Jeremy
Is there no keycode for the insert button? [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 PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with

lingo-l Tab code?

2002-12-04 Thread Jeremy
How would I insert tabs between 2 strings through lingo? Any help appreciated. Thanks [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 PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L

RE: lingo-l Tab code?

2002-12-04 Thread Jeremy
Thanks, I also had to adjust the tabs property to get it to tab more than a spaces worth. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Colin Holgate Sent: Wednesday, December 04, 2002 9:53 PM To: [EMAIL PROTECTED] Subject: Re: lingo-l Tab code? How

lingo-l Framerate in lingo?

2002-12-04 Thread Jeremy
Anyone know how to get the framerate the movie is playing at with lingo, specifically from a 3d cast member. [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 PROTECTED] (Problems, email

lingo-l Php postNetText

2002-12-01 Thread Jeremy
I have a director app retrieving from a mysql database using php and postnettext. It works great when it just needs to return something from the database. However I want to pass it a value or 2 that will then be used to make more specific searches. The example in the lingo dictionary shows the

lingo-l Director databases

2002-11-25 Thread Jeremy
Anyone know of a cheap/free method of communicating to mySQL databases with director, and/or some tutorials? Thanks [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 PROTECTED] (Problems,

lingo-l Any spreadsheet type xtras?

2002-11-18 Thread Jeremy
Are there any xtras that allow a sort of spreadsheet type media element to be used in director and accessed through lingo? Or does anyone know of a way to simulate one. Thanks J [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To

Re: lingo-l Re: Lingo-l digest, Vol 1 #556 - 15 msgs

2002-11-17 Thread Jeremy Aker
They need to be loaded... I always do better when I'm loaded [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 PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and

RE: lingo-l Sw3d exporter figured it out.

2002-11-15 Thread Jeremy
.fcgnetworks.net]On Behalf Of Jeremy Sent: Friday, November 15, 2002 11:49 AM To: [EMAIL PROTECTED] Subject: lingo-l Sw3d exporter Ok, I'm running out of ideas and hoping that someone can help me. I am trying to get a model from 3dsmax 5 into director using the shockwave exporter. I zipped up

lingo-l Sw3d exporter

2002-11-14 Thread Jeremy
Ok, I'm running out of ideas and hoping that someone can help me. I am trying to get a model from 3dsmax 5 into director using the shockwave exporter. I zipped up the files so that anyone willing to take a look can possibly help me find what the problem is. It's a pretty large model, not made by

RE: lingo-l jaguar and director

2002-11-06 Thread Jeremy
You might get a kick out of this one as well. http://www.briarskin.com/humor/ibrator/ -Original Message- From: [EMAIL PROTECTED] [mailto:lingo-l-admin;mail4.fcgnetworks.net] On Behalf Of Brad Hile Sent: Wednesday, November 06, 2002 7:34 AM To: [EMAIL PROTECTED] Subject: RE: lingo-l jaguar

RE: lingo-l Editing binary files?

2002-11-06 Thread Jeremy
Thanks a bunch for the links. appreciate it. -Original Message- From: [EMAIL PROTECTED] [mailto:lingo-l-admin;mail4.fcgnetworks.net] On Behalf Of Fraser Campbell Sent: Wednesday, November 06, 2002 2:01 AM To: [EMAIL PROTECTED] Subject: Re: lingo-l Editing binary files? You can use

lingo-l Editing binary files?

2002-11-05 Thread Jeremy
Is there a way(in an Xtra or otherwise) I can do the equivelant of hex-editing a binary file to alter data within the file? [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 PROTECTED]

RE: lingo-l Editing binary files?

2002-11-05 Thread Jeremy
Arggg, do you know of an extra that is freeware that will do similar binary editing. I can't justify $150 for a hobby project when I'm a full time student living off financial aid. Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:lingo-l-admin;mail4.fcgnetworks.net] On Behalf Of

RE: lingo-l Editing binary files?

2002-11-05 Thread Jeremy
Well, the idea is for a small utility for a game, and if I can pull it off I would like to release it(for free of course). I assume I would have to register to release it? -Original Message- From: [EMAIL PROTECTED] [mailto:lingo-l-admin;mail4.fcgnetworks.net] On Behalf Of Kendall

RE: lingo-l jaugar and director

2002-11-05 Thread Jeremy
Can someone explain how its microsofts fault if the mac version of software, in this case director, doesn't work properly under osX ? Just wanting to understand this. -Original Message- From: [EMAIL PROTECTED] [mailto:lingo-l-admin;mail4.fcgnetworks.net] On Behalf Of Ron Woodland Sent:

lingo-l Text or field

2002-09-25 Thread Jeremy
Which renders faster, a text media element or a field? [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 PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping

lingo-l Text parsing

2002-08-30 Thread Jeremy
type look for other words, just having trouble with these kill messages. Any advice on parsing appreciated. Thanks. Jeremy [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 PROTECTED

Re: lingo-l MPG file

2002-08-29 Thread Jeremy Aker
You can find the Direct Media Xtra at http://xtras.tabuleiro.com/products/direct/index.tdb IMHO - The best way to play MPEG on Windows. This Xtra is rock solid! You CAN use QuickTime to playback MPEG on Mac OS, but not Windows. -- Jeremy Aker 5010 Sweetbriar Drive Raleigh, NC 27609 home: (919

RE: lingo-l Parsing log and creating objs (was: OT: Heather and beyond)

2002-08-29 Thread Jeremy
the whole list of player objects and query each one. Hope this helps, Irv At 6:43 PM -0700 8/27/02, Jeremy wrote: I have a game log parsing project creating objects to store statictics that it gathers from readin a log file(big text file) When it encounters a new item in the log, it creates a script

RE: lingo-l Parsing log and creating objs (was: OT: Heather and beyond)

2002-08-29 Thread Jeremy
Awesome, that was the prob.. Thank you much! Got another question. Does lingo have any equivelant to 2 dimensional arrays? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Irv Kalb Sent: Thursday, August 29, 2002 6:43 PM To: [EMAIL PROTECTED] Subject:

lingo-l behaviors

2002-08-27 Thread Jeremy
to the object so it will store its own name(this snip some more Would I just use: script(playerscript).changename(oldname,newname) ? Hoping I explained enough to get some help. Thanks Jeremy [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com

lingo-l Publish settings

2002-08-26 Thread Jeremy
settings but it cuts off the right and bottom rather than scaling the assets. Anyone have a solution other than manually scaling everything down? Thanks Jeremy [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

lingo-l Flash shockwave

2002-08-25 Thread Jeremy
list of Shockwave and Flash? I've heard that shockwave can do much of the same stuff. I'm curious as to what either can/can't do that make them desirable. Thanks Jeremy [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages

RE: lingo-l Flash shockwave

2002-08-25 Thread Jeremy
if theres anything spectacular there is to gain in flash when already knowing director. I'm looking forward to the flash class also, but like you said, I am annoyed so often by flash intros on sites it kinda gets me thinking about it vs shockwave. Thanks for the info. Jeremy -Original Message

lingo-l Director problem

2002-08-25 Thread Jeremy
the game and attempt to play it via the html file it generates, it shows the white areas around the edges, which should be matted out as it is when played in director. Can anyone help with this please. Jeremy [To remove yourself from this list, or to change to digest mode, go to http

RE: lingo-l Director problem

2002-08-25 Thread Jeremy
25, 2002 4:42 PM To: [EMAIL PROTECTED] Subject: RE: lingo-l Director problem Hi Jeremy Check your compression settings for the balls, if you are using JPEG compression, then the most likely case is that some of your white fringe is pixels who's color has been changed as a result

Re: lingo-l Time Stamping in Code at Publish Time

2002-03-18 Thread Jeremy Aker
reasonably close to the publish date time assuming that you would publish just after testing your last fix. You might use something like: on stopMovie member(timeStamp).text = the date the time end -Jeremy Aker Watson, Christopher wrote: Here's an interesting one. We've got several

Re: lingo-l Imaging Lingo

2002-01-30 Thread Jeremy Aker
You should check out archived articles on Director Online User's Group (D.O.U.G.) at http://www.director-online.com/ There are some very good articles with examples and code there. Jeremy Aker John At Home wrote: on 1/30/02 10:35 AM, Jean Legault at [EMAIL PROTECTED] wrote: Can anybody