Re: lingo-l Urgent suggestions needed I-move

2001-12-12 Thread Chris Aernoudt

Euh; I 'm not sure, but I don't think this is the smoothmove support area...

- Original Message - 
From: mark verhoef [EMAIL PROTECTED]

SMOOTHMOVE ERROR CANNOT OPEN SPECIFIC FILE
I/O ERROR.


[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 programming Lingo.  Thanks!]








Re: lingo-l free xtra: daychecker - testers needed

2001-08-23 Thread Chris Aernoudt

Your LAN-thingie reports an error, MMX manufacturer remains blank, media
types info and browser info hangs the projector.
- Original Message -
From: andy [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 10:39 PM
Subject: lingo-l free xtra: daychecker - testers needed


 hey all,
 i have taken all the cool little lingo routines that i have created over
the
 years and stuck them all in an xtra. daychecker is also available as an
 .exe...

 It includes the following features:
 * Hardware and Software diagnostic info including cpu, ram, video, os, and
 network checkers...
 * Media Type checker to find default players (and there versions) for each
 * MailServer and Email checkers
 * Sound controls
 * Printer controls
 * Font list checkers
 * Xtra list and movie xtra list checkers (only useful in the xtra format)
 * Variable checker that will list out all current variables and their
 values. Also, you can directly change their values. (only useful in the
xtra
 format)
 * Color Palette Toys including converters between rgb, 24-bit, hex, and
 index values. a fun little slider bar toy that will give you the rgb
values
 of the color you created
 * Browser checker that list out all installed browsers on the machine and
 their versions (note: if you have alot of browsers installed on your
machine
 then this is an extreemly slow process before it displays on the screen.)
 * and an assortment of other useful and un-useful tools


 i have posted the latest version at:
 www.mindspring.com/~geter/daychecker/

 it is free

 please feel free to take a look at it and let me know what ya think :)

 thanks,
 andy



 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l OT: Giving away your lingo

2001-08-23 Thread Chris Aernoudt

By the way, don't you think most people in here learned a great deal thanks
to the people who share their findings???

Books are one thing - but books can't tell you everything, unless you've got
the time to read em all - I know I don't.
And still yet, the books would be quite useless without code snippets.

I bet our lives would be hell without this far-out cooperation...

Give something, and get loads in return.
- Original Message -
From: Karina Steffens [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, August 23, 2001 10:53 AM
Subject: RE: lingo-l OT: Giving away your lingo


  Give them the code. What are they going to do with it?
 
  1. Hire some other dir developer who is equal to or beyond
  you in ability,
  and will likely just toss your code in the dumpster while
  replicating the
  functionality in his own style.
 
  2. Is not as good of a coder, and will struggle to understand why his
  modifications cause crashes.

 LOL again :) That is just so true!
 I sometimes even dump my own code in great disgust and start all over
again
 (being a better programmer then I was last week...) - never mind other
 people's code.

 Karina



 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: RE: lingo-l mouseLoc or?Han not def.

2001-08-21 Thread Chris Aernoudt

Install buddyApi !
You can get it at :
www.mods.com.au

- Original Message -
From: mark verhoef [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 10:13 AM
Subject: Re: RE: lingo-l mouseLoc or?Han not def.


 thanks Kurt.BUT Director says to me `HANDLER NOT
 DEFINED(baPlaceCursor(pLastLoc.locH, pLastLoc.locV)wHAT SHOULD I do???

 [EMAIL PROTECTED]
 kloosterleuter str.31-19
 3961 AX Wijk bij Duurstede
 tel:06-51922532



 From: Kurt Griffin [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: RE: lingo-l mouseLoc or?
 Date: Mon, 20 Aug 2001 12:48:17 -0400
 
   You can use BuddyAPI to restrict the movement of the cursor...
  
   RestrictCursor
  
   Description:baRestrictCursor restricts the cursor to a specified
 part of
   the screen.
  
   Usage:baRestrictCursor( Left, Top, Right, Bottom  )
 
 That raises an interesting question, though - how do you exclude the
cursor
 from a rect, not contain it within a rect, as in this case, where the
 cursor
 needs to stay outside of a QT?
 
 It seems to me that baPlaceCursor() might be a better fit (FWIW,
 restrictCursor() is not available on the Mac side, anyway) in this case.
 Either way, though, you're going to need to do some polling of the
 mouseLoc.
 
 Try this (attach to the Quicktime sprite):
 -
 -
 property pMySprite
 property pMyRect
 property pLastLoc
 -
 on beginSprite me
pMySprite = sprite(me.spritenum)
pMyRect = pMySprite.rect
 end
 -
 on exitFrame me
currentCursorLoc = the mouseLoc
if inside(currentCursorLoc, pMyRect) then
  baPlaceCursor(pLastLoc.locH, pLastLoc.locV)
else
  pLastLoc = currentCursorLoc + point(the stageLeft, the stageTop)
end if
 end
 -
 -
 
 
 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]
 


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l the position of cursor in a field?

2001-08-21 Thread Chris Aernoudt

1. Yes, with selStart or selEnd, there might be some other options, dunno,
never needed to
2. member(hoursMinsSecsField).text =
yourHours:yourMins:yourSecs --- or whatever

- Original Message -
From: Lauri Puisto [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 2:21 PM
Subject: lingo-l the position of cursor in a field?


 Hi,

 Is there any way to find out where the blinking cursor is in a field?
 I want to do a field where user can write the time for CD-player. I want
the
 field to look like 0:00:00 the propblem is that I don't know how to
 automaticly put : in to the right place? Any ideas what is the best way
to
 solve this problem?

 Lauri Puisto

 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l Opening PDF from Flash

2001-08-21 Thread Chris Aernoudt

Use getURL, but you can forget about the with thing,
and since it is a browser thing, you'll always have to confirm for opening.

Or you can put your flash thing into a html page, then you could open the
pdf in the browser window.

- Original Message -
From: Florian Bogeschdorfer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 2:13 PM
Subject: lingo-l Opening PDF from Flash


 Hi everybody!

 I have a flash animation and would like to open a .pdf file with the
 Acrobat Reader after the flash animation. Is this possible? How? I know
 I can open an application, but I need something similar to Directors'
 open file with application, otherwise I will have to do it in D8 and
 this makes it a lot more work.

 best regards, Florian

 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l tight situationPLEASE HELP

2001-08-20 Thread Chris Aernoudt

try turning off direct to stage in the prop. inspector for yer QT 
flashies
- Original Message -
From: Alex Macleod [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, August 20, 2001 2:34 PM
Subject: lingo-l tight situationPLEASE HELP


 Firstly,
 Hi, this is my first posting and hope that you are fine and the weekend
 hangovers are'nt too bad.

 I have a BIG problem, I have a flash interface and have been building it
for
 a couple of weeks now and have putting a lot of time and effort into
making
 it. I have used director a few times before but I am by no means an
expert.
 I wanted to include some quicktime videos in the piece to play over the
 flash stuff.. but its all gone pear shaped. The QT movies are
flickering
 really badly and this is BAD. I really need a fix to stop them doing this
 but I have been exhausting myself to find one to no avail.
 If anyone can point me the right way I would be VERY apprieciative .

 Sorry for the desperate post, but I am scared of losing weeks of work to a
 technical hitch..

 Thank you
 Regards
 Alex MacLeod
 _

 Qd (London) Ltd
 TV/Radio, Music Video, New Media, Design
 http://www.qotd.co.uk
 [EMAIL PROTECTED]
 +44 (0)20 7462 1700
 _

 The contents of this message may be confidential and
 should be treated as such unless otherwise stated.
 _
 _


 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l mouseLoc or?

2001-08-20 Thread Chris Aernoudt

I don't think you can do that, unless if you use a fake cursor that you move
around.
- Original Message -
From: mark verhoef [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, August 20, 2001 11:32 AM
Subject: lingo-l mouseLoc or?


 Hello,I got the following question.
 I've got A Qt movie on stage.But I don't want the mouse to enter it
 I want the mouse to stay just outside of the movie.
 How do I do this.

 thanks...

 [EMAIL PROTECTED]
 kloosterleuter str.31-19
 3961 AX Wijk bij Duurstede
 tel:06-51922532


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l tight situationPLEASE HELP

2001-08-20 Thread Chris Aernoudt

Static flash navigation would suck, no??
Try not to put the QT over the flash thingie...
Maybe you can solve it in another manner - is the QT really necessary???
If it is a small number of frames, you should consider breaking up the
movie.
- Original Message -
From: Jorge Pena [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 4:15 PM
Subject: RE: lingo-l tight situationPLEASE HELP


 Try setting the Static property of the flash member to true

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
 Behalf Of Alex Macleod
 Sent: Monday, August 20, 2001 9:35 AM
 To: [EMAIL PROTECTED]
 Subject: Re: lingo-l tight situationPLEASE HELP


 thanks chris,
 I have tried this to no avail :(
 I'm desperately trying to salvage my work is there anything else i could
 try??
 Thanks
 Alex MacLeod

 --
 From: Chris Aernoudt [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: lingo-l tight situationPLEASE HELP
 Date: Mon, Aug 20, 2001, 11:58 am
 

  try turning off direct to stage in the prop. inspector for yer QT 
  flashies
  - Original Message -
  From: Alex Macleod [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Monday, August 20, 2001 2:34 PM
  Subject: lingo-l tight situationPLEASE HELP
 
 
  Firstly,
  Hi, this is my first posting and hope that you are fine and the weekend
  hangovers are'nt too bad.
 
  I have a BIG problem, I have a flash interface and have been building
it
  for
  a couple of weeks now and have putting a lot of time and effort into
  making
  it. I have used director a few times before but I am by no means an
  expert.
  I wanted to include some quicktime videos in the piece to play over the
  flash stuff.. but its all gone pear shaped. The QT movies are
  flickering
  really badly and this is BAD. I really need a fix to stop them doing
this
  but I have been exhausting myself to find one to no avail.
  If anyone can point me the right way I would be VERY apprieciative .
 
  Sorry for the desperate post, but I am scared of losing weeks of work
to
 a
  technical hitch..
 
  Thank you
  Regards
  Alex MacLeod


 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l adding text to an image

2001-08-18 Thread Chris Aernoudt

Hello Dominic,

Sorry for the late reply, but I'm still on vacation :)   (I check my mail
like once a week)
And yes you can add text to an image - don't know about the tiltle thing, I
never used printomatic, but I suppose you can...

OK, for the text thing...

Make a new text member and name it tempTxt (or wathever).
Now for some code... (this will add it to the bottom, centered)
Don't know if it works, haven't tested... but I suppose it does.

--


on addText currentImage -- currentImage is a string that represents the
membername

  member(tempTxt).text = currentImage -- you'll have to decide how to
obtain currentImage
  textToAdd = member(tempTxt).image

  MySpacing = 5 -- spacing from the bottom


  MyImageWidth = member(currentImage).width
  MyImageHeight = member(currentImage).height

  MyTextWidth = textToAdd.width
  MyTextHeight = textToAdd.height


  MyLeft = (MyImageWidth / 2) - (MyTextWidth / 2)  -- I suppose you can
figure out this simple math
  MyTop = (MyImageHeight) - MySpacing - MyTextHeight   -- to adjust it to
your needs
  MyRight = (MyImageWidth / 2) + (MyTextWidth / 2) -- BTW...This is for
calculating the destination rect
  MyBottom = (MyImageHeight) - MySpacing

  MyDestRect = rect(MyLeft, MyTop, MyRight, MyBottom)  -- make a new rect
with the values obtained
  MySourceRect = member(tempTxt).rect-- Just for clarity

  member(currentImage).image.copyPixels(textToAdd, MyDestRect, MySourceRect,
[#ink: 8]) -- you can change the ink if you want a background or something


end addText


---

Have fun, I know I will ;)

Chris

- Original Message -
From: Dominic Villiard [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 08, 2001 9:22 PM
Subject: lingo-l adding text to an image


 i have many images that i can print using printomatic xtra
 the title is missing

 the thing is i want to add the name of the image (the member name) on the
 image just before printing
 the images are not all the same size and i don't want the text to appear
 right on the image but on the top or the bottom.

 can i add a text member on a bitmap member?
 can i give a title to the document to print?
 how could i do?

 thanx






 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l Imaging Lingo 2 response1

2001-08-06 Thread Chris Aernoudt

Sorry for my slow response, but I'm on holiday and I try to keep away from
my laptop ;)

Allow me to mangle in again,

You assign the image of your cast members to a var - this does NOT create a
reference to the member - so this does NOT manipulate the member in question
in any way.

All you have to do is reassign the data to the image of the member you want
to change when you have completed your manipulation.

You could also directly manipulate the image without intermediate variable -
but it is best to do the former if you do a lot of stuff because vars are
faster.
This way you can also control when the image is updated.

So - after your changes - simply do this:
member(mnum1).image = mnum1

One last remark; try to use more descriptive names for your vars - and use
seperate vars for like for instance your membernums and your images.
That way you can use them later on.

HTH,

Chris (lots of sunshine to you).

- Original Message -
From: Locke Morgan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, August 05, 2001 6:51 AM
Subject: lingo-l Imaging Lingo 2 response1


 Yes, the destination member did return an error in the paint editor, but
 when I allowed it to continue (making it editable in the paint window),
there
 results were still the same.  I did the same thing with the source image,
 with no results.

 Date: Fri, 3 Aug 2001 21:34:35 -0400
 From: Colin Holgate [EMAIL PROTECTED]
 Subject: Re: lingo-l Imaging Lingo 2
 
 There are some things about your code that make it seem odd. For
 example, using the same variable to represent the member one moment,
 and then the member's image another makes it harder to follow. For
 now I'm assuming that it ought to work, so something that could upset
 our plans is that the JPEG destination member may not be available
 for changing. Open that member in the paint window and try to erase
 part of it. Do you get an error message?

 ~~~
 Property psourceImage, pdestImage, psourceChannel

 on getPropertyDescriptionList
 description =[:]
  snip 
 addprop description, #psourceImage,[#commentSource Image,#format#bitmap,
 #default#VOID]
 addprop description, #psourceChannel,[#commentSource Channel
 ,#format#integer, #default0]
 addprop description, #pdestImage,[#commentDestination Image
 ,#format#bitmap, #default#VOID]
 return description
 end

 on exitFrame me
  snip
 set mnum1 = (member(pdestImage).membernum)
 set mnum2 = (member(psourceImage).membernum)
 set mnum1 = member(mnum1).image
 set mnum2 = member(mnum2).image
 r1 = sprite(psourceChannel).rect
 r2 = sprite(the currentSpriteNum).rect
 mnum1.copyPixels(mnum2,r2, r1)
 end
 

 W. Locke Morgan
 New Orleans, LA - USA


 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: lingo-l Acrobat Reader v5 does not play off CD-ROM

2001-08-06 Thread Chris Aernoudt

Hey Warren --- how's the large PDF thing coming on?
- Original Message - 
From: Warren Stolow [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, August 03, 2001 8:55 PM
Subject: RE: lingo-l Acrobat Reader v5 does not play off CD-ROM


 Hello Nik and MR Grimmwerks,
 
 Now, our developers are still testing to confirm this, but
 I can tell you that if you return to using the version 4
 of the Reader-off-a-CD-Rom, then you will experience no
 complications :) Because if no version of Acrobat
 or Reader is found on the target workstation, then the
 Reader-off-a-CD-Rom will launch, but if a version 4 or 5
 of either is on the target machine then they will correctly
 launch too. 
 
 The problem appears to be with the version 5 of the
 Reader-off-a-CD-Rom app - but I say appears as tests 
 are still being undertaken. Our main developer DID get
 Reader-off-a-CD-Rom version 5 to work!!
 
 Feel free to contact me with any additional questions or
 comments you might have
 
 Enjoy your weekend Lingoists :)
 -Warren.
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: August 3, 2001 10:27 AM
 To: [EMAIL PROTECTED]
 Subject: Re: lingo-l Acrobat Reader v5 does not play off CD-ROM
 
 
 
 I'm doing something similar right now, and from what I understand version
 5 will NOT play off of a cdrom. Instead, switch it wiht a reader 4
 directory adn you should be fine.
 
 
 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]
 
 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]
 
 


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l bug on czech windows?

2001-07-27 Thread Chris Aernoudt

There is the antialiasing bug

If Unicode codepage is enabled, with Central European support and you use
chars above ASCI 128 and you antialias them you get a fatal error.

Have fun.

HTH,

Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Tab Julius
Sent: Thursday, July 26, 2001 9:28 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: lingo-l bug on czech windows?



One thing you might czech (sorry, couldn't resist) is if the problem is
really due to Czech Windows, or if that's just a decoy, and it's really due
to their configuration.

If it was Director related, the bug would probably also occur on languages
similar to Czech.  Director itself is not localized to Czech, so it's
something on the Czech configuration.

Do you know what the script error is?

Do you have the source?  If so, you can start tracking down to find the
line of the error.

I'd try to get the source and narrow down the offending line (maybe running
the .DIR directly will help - you can do this), and work from there.

- Tab

At 11:56 AM 7/26/01 -0700, Stephane Comeau wrote:
Hi,

I've got a bug report that I'm trying to track down where a shockwave
movie that works well otherwise will generate a script error and then a
C++ runtime error when played back on a Czech version of windows with
system locale and default language set to Czech.  No user input other
than mouse clicks in involved, and apparently the error happens before
user interaction in any case.

I'm just starting to try to debug this (ie. next step, install czech os
on a test box) and was wondering if this issue might sound familiar to
anyone, particularly you European types.

Thanks,

Steph


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l mac stub dir 8.5

2001-07-25 Thread Chris Aernoudt

Economical or not, you'll have to buy it, because you don't have the right
to ditribute without a license.



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Rama krishnan
Sent: Wednesday, July 25, 2001 1:47 PM
To: [EMAIL PROTECTED]
Subject: lingo-l mac stub dir 8.5


Hi list
 I'm doing asmall  hybrid project, i have the copy
of director 8.5 for windows I need a stub for mac.
For this samll project buying the mac version of
director 8.5 is not economical, so anybody can send me
stub.
pls revert to me so i can give the specifications

thanks
rk

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l mac stub dir 8.5

2001-07-25 Thread Chris Aernoudt

You're right, but then you would have to send him a bill, and at the rate we
charge here, he'd be better of buying D8.5 mac. :))

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Florian Bogeschdorfer
Sent: Wednesday, July 25, 2001 2:17 PM
To: [EMAIL PROTECTED]
Subject: Re: lingo-l mac stub dir 8.5


That's an interesting question. What if he pays another developer (like
you or me) for producing a stub projector, which he will then
ditsribute. You don't need to pay a license fee for the runtime stuff.
Therefore this should be legal. It's the same as if a customer orders a
CD-production. He won't be the license holder.



regards, Florian

Chris Aernoudt wrote:

 Economical or not, you'll have to buy it, because you don't have the right
 to ditribute without a license.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf
Of
 Rama krishnan
 Sent: Wednesday, July 25, 2001 1:47 PM
 To: [EMAIL PROTECTED]
 Subject: lingo-l mac stub dir 8.5

 Hi list
  I'm doing asmall  hybrid project, i have the copy
 of director 8.5 for windows I need a stub for mac.
 For this samll project buying the mac version of
 director 8.5 is not economical, so anybody can send me
 stub.
 pls revert to me so i can give the specifications

 thanks
 rk

 __
 Do You Yahoo!?
 Make international calls for as low as $.04/minute with Yahoo! Messenger
 http://phonecard.yahoo.com/

 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]

 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]

[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Controlling Flash Buttons?

2001-07-24 Thread Chris Aernoudt

Carl,

Why do it in lingo??
You could also set a toggle variable in your flash movie, check from
within and set your button accordingly.
You can then use getURL(lingo:) to set a var in director so that you'd
know wether it has been clicked or not.

//Make a movie clip, and use 2 frames, the first one an upstate (= button -
with overstate) and on the second frame a depressed state, then attach this
to your movie clip

onClipEvent (mouseUp)
{
if (depressed = 0)
{
depressed = 1;
this.gotoAndStop(2);
} else //dont know if you want to toggle
{
depressed = 0;
this.gotoAndStop(1);
}

}


//you can use the buttons in the movie clip to put your stuff to do on.
//simple huh


HTH,

Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Carl West
Sent: Tuesday, July 24, 2001 2:30 AM
To: [EMAIL PROTECTED]
Subject: lingo-l Controlling Flash Buttons?


Dear List,

In D8. Cross-platform.

I have some .SWF members that are Flash buttons. Can I control them from
Lingo?

What I'd like to do is make it stick in the 'down' state when clicked.

I can play with the buttonsenabled property, and that's a start, but
setting the .frame doesn't finish the job, and nothing else seems
applicable.

Is this possible? Have I missed something? Or should I just have them as
straight Flash animations that I _can_ control with Lingo? I bet it's no
harder than trying to mess with the buttons on the fly.

--
Carl West[EMAIL PROTECTED]
617.262.8830 x246

Depend upon it, there comes a time when, for every addition of
knowledge, you forget something that you knew before. It is of the
highest importance, therefore, not to have useless facts elbowing out
the useful ones.
  -Sherlock Holmes in 'A Study in Scarlet'

[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l child object

2001-07-24 Thread Chris Aernoudt

It works, it's just a nasty rotten server
;)
no offence, Irv...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Pascal Deraed
Sent: Tuesday, July 24, 2001 1:30 PM
To: [EMAIL PROTECTED]
Subject: Re: lingo-l child object


Karina

Do you know if http://www.furrypants.com/loope/)  has another link.
they seem to not be active anymore.

pascal

- Original Message -
From: Karina Steffens [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, July 24, 2001 10:36 AM
Subject: RE: lingo-l child object



  thanks! i´m going to order this book now!

 Please don't... For one thing, you're not ready for it, for another, the
 free online OOP book to which I sent you the link
 (http://www.furrypants.com/loope/) is a much better introduction into OOP
 then the often confusing Lingo Sourcery.

 Karina



 [To remove yourself from this list, or to change to digest mode, go to
 http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
 email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
 Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l integer to RGB

2001-07-20 Thread Chris Aernoudt

Indeed

Thank you Colin !!!


Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Colin Holgate
Sent: Friday, July 20, 2001 5:53 AM
To: [EMAIL PROTECTED]
Subject: RE: lingo-l integer to RGB


Ur welcome Chris
I think Colin deserved some thanx too...he _wrote_ it! :-)

Why thanks!


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l integer to RGB

2001-07-19 Thread Chris Aernoudt

Hi,

Anyone have a script to convert an integer value to RGB components??

TIA,

Chris

*
Chris Aernoudt
Multimedia, Web  Application Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l integer to RGB

2001-07-19 Thread Chris Aernoudt

Thanks Pranav,

I knew I saw it somewhere...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, July 19, 2001 3:44 PM
To: [EMAIL PROTECTED]
Subject: Re: lingo-l integer to RGB



Here's something Colin had posted on the list a while back...

on inttorgb int
   b = int mod 256
   int = int / 256
   g = int mod 256
   int = int / 256
   r = int mod 256
   return rgb(r,g,b)
end

Regards,
Pranav
---
Samuel Colt - the inventor of the point and click interface.



snip
Anyone have a script to convert an integer value to RGB components??
snip





[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




No Subject

2001-07-17 Thread Chris Aernoudt

Try the behaviors that ship with director.

Look under Window-Library palette.

Lot's of basic interactivity stuff there.

Try going through the tutorials if you don't know where to start.

*
Chris Aernoudt
Multimedia, Web  Application Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l request about website

2001-07-17 Thread Chris Aernoudt

Why not in flash??
The shockwave plugin is a disaster to download, it's massive.

Anyway,
All I see is just layers of 50 % opacity on top of each other with a bit of
offset.
Ai'nt too hard.

Experiment a bit...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Awais Irshad
Sent: Tuesday, July 17, 2001 7:24 AM
To: [EMAIL PROTECTED]
Subject: lingo-l request about website





  Hello List,

  I have to design a website in Macromedia
Director. i m new in lingo and i do'nt know how to do
that which i want. if some body have some time please
check the website.

 www.barneys.com

please check this website and tell me how can i make
this tpye of effect in director like moving sprite and
on roll over i should stop no that frame. if u will
check the site u can under stand my problem

Thanks

  Muhammad Awais

__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l RE: help with the interactivity stuff

2001-07-17 Thread Chris Aernoudt

sorry, forgot the subject line

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Chris Aernoudt
Sent: Tuesday, July 17, 2001 9:07 AM
To: lingo
Subject:


Try the behaviors that ship with director.

Look under Window-Library palette.

Lot's of basic interactivity stuff there.

Try going through the tutorials if you don't know where to start.

*
Chris Aernoudt
Multimedia, Web  Application Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l nt

2001-07-13 Thread Chris Aernoudt

Indeed, what Al says is very correct.
I wrote one yesterday, and it works fine on both platforms.

You must have overlooked something, like putting the Xtras on the same
level, or maybe you've put the mac xtra's on the PC side???

You should double-check the whole thing, it works for sure.
I use toast deluxe 4.2, and I never had problems, except for having to write
the CD again because I had forgotten a file here or there.

Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Al Hospers
Sent: Thursday, July 12, 2001 11:42 PM
To: [EMAIL PROTECTED]
Subject: RE: lingo-l nt



It's been a while since I've built a XPlat CD, but from what I
remember this is not correct. each projector needs to be in its own
platform specific partition with its Xtras. the data and movies may be
shared however.



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l PIXEL ISSUE

2001-07-09 Thread Chris Aernoudt

Indeed, this is a fact of life.
Explanation : transitions suck %}

Nothing to do about it, except tweak the thing until it looks about the
same.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
the nightboy
Sent: Monday, July 09, 2001 3:35 PM
To: [EMAIL PROTECTED]
Subject: lingo-l PIXEL ISSUE


My client made me use transitions, which I hate, and for some reason,
desolve bits fast uses larger bits on a PC than a Mac. Could someone please
explain.

thanks,

bd


 Brian Douglas  (:ub)


AS/L/JS

6'2 170lbs. eyes:bwn  hair:bwn  nose hair:well groomed

Imaginary Studio
212-239-4393 x 204


http://www.imaginarystudio.com --check it out!






[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l a faster way to draw than using setpixel ??

2001-07-04 Thread Chris Aernoudt

Thanks for letting us pick over your code!

I kinda did this thing too see how fast (or slow) lingo really is.
I think i've got my answer
I hope the MM folks are planning to do something about that.

If anyone wants to use this code, feel free to do so, it's fun to play
with...

Thanks for your insights, and for bothering.

Chris.


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l masking

2001-07-04 Thread Chris Aernoudt

Sure,
Use the mask ink effect.

You can even use 8bit grayscale images as masks.

See the online help for details.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
natalie
Sent: Wednesday, July 04, 2001 10:16 AM
To: [EMAIL PROTECTED]
Subject: lingo-l masking


Is it possible to mask stuff
like Flash in Director 8.5


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l a faster way to draw than using setpixel ??

2001-07-03 Thread Chris Aernoudt

Hi all,

I've made me a mandelbrot fractal generator in lingo.
I use setpixel, a 320 by 200 points stage, and an 8 bit palette.
I do the setPixel ops on a variable wich i have initialised as an image.

However a mandelbrot with scale set to 0.02 wich fits the 320x200 image
takes 30 secs to render.
I'm doing this on a mac G4 450 with 512 Mb RAM.

Is there a faster way to plot an image than using setpixel??

Is there a line execution speed difference between movie and stage scripts?

which one is faster - a*a or power (a,2) ?
(In c it's the latter, but I am not so sure about lingo.)

TIA,

Chris.

*
Chris Aernoudt
Multimedia, Web  Application Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Director 8.5

2001-06-28 Thread Chris Aernoudt

Not in a projector, in authoring mode.
All I get is: " A fatal error has occured, click OK to quit."

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Al Hospers
Sent: Wednesday, June 27, 2001 4:51 PM
To: [EMAIL PROTECTED]
Subject: RE: lingo-l Director 8.5


 I have the exact same problem on win 2k server, even when I
 try to type text
 director 8.5 halts immediately.
 On 98 on the same comp it works fine.

I don't understand this. are you saying that if you try typing into a
text field on the stage in a projector created in Director 8.5 the
projector exits or crashes immediately? are there any error messages,
or does it just close?

this is not typical behavior. I am personally running Windows 2000
Advanced Server and have not noticed this behavior at any time. I
suggest updating the video drivers. some have experienced similar
problems caused by HP printer drivers, however I have an HP 882C
printer  do not have this problem. if you have an HP printer attached
to that machine try uninstalling it  seeing what happens.

hth

Al Hospers
CamberSoft, Inc.
alatcambersoftdotcom
http://www.cambersoft.com

A famous linguist once said:
"There is no language wherein a double
positive can form a negative."

YEAH, RIGHT




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l How many global variables are too many

2001-06-28 Thread Chris Aernoudt

Hello Gene,

Depends on what you put in them.
In theory the use of global vars is only limited by system memory.

You should really consider using V12. It's a great tool in managing large
projects plus it gives you the advantage that you can change your content
very fast.

We use it all the time - e.g. for projects that need to be converted to
other languages.

Learning V12 ain't that hard - the code looks a bit like SQL and other DB
acces prog. langs.
Plus there's enough sample material on the website that can be easily used
to make your project work.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Gene Fritzinger
Sent: Thursday, June 28, 2001 2:56 PM
To: [EMAIL PROTECTED]
Subject: lingo-l How many global variables are too many


Hello List,

I'm creating a simulated version of a software package for use in a CBT.
There are many MIAWs and much information shared between movies as global
variables.  I estimate that by the time I'm through with project, there may
be over one hundred global variables, some of which will be saved to disk.
I will also be copying a Cast to user's hard drive to save selections and
other field members.  My question is, is 100 (or so) global variables too
many?  Should I consider another approach, such as saving information in a
database or field members off-stage?  I have the V-12  DBE Xtra, but I'm not
sure my schedule will allow the time necessary for the learning curve.
Please consider sharing your thoughts and opinions on the best way to handle
this situation.


Thanx in advance,
g fritzinger


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Can I program a MIAW to control the cursor?

2001-06-28 Thread Chris Aernoudt

Just hide the cursor ( set cursor to 0), and move a sprite around.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Gene Fritzinger
Sent: Thursday, June 28, 2001 3:21 PM
To: [EMAIL PROTECTED]
Subject: lingo-l Can I program a MIAW to control the cursor?


Hi Folks,
I've created a simulated version of a complex software package for use in a
CBT.  There are many MIAWs and field members, drop-down menus, radio
buttons, check boxes, etc.  This simulated software version will be used for
tutorials where we will instruct the user how to perform different functions
as well as involved exercises.  My idea is to monitor their progress with a
moveable talking head MIAW.  This MIAW will try to guide the user through
the exercises.  But if the user gets stuck, I'd like the talking head MIAW
to take control and actually do that part of the exercise for them.  Since
there so many menu items, radio buttons, etc. , it seems the easiest way for
the MIAW to take control would be to be able to control the cursor.  Move it
across the screen, click on a menu item, click in a field to activate it,
then enter text, push buttons, all the things an instructor would do, if
needed by a user that just wasn't getting it. So my question is, can a MIAW
control the cur!
sor to this extent?  I'm afaid the answer is NO, please let me know your
thoughts.

Thanx in advance,
g fritzinger


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Can I program a MIAW to control the cursor?

2001-06-28 Thread Chris Aernoudt

It makes a lot of sense, but I'm afraid I have to reply with I don't think
so.
Since you cannot set properties like the mouseLoc - I don't see how.
I think faking the cursor and a lot of extra handlers is the only
alternative - but who am I to say so.

Unless you write a VB proggie or something to control the cursor externally.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Gene Fritzinger
Sent: Thursday, June 28, 2001 3:53 PM
To: [EMAIL PROTECTED]
Subject: RE: lingo-l Can I program a MIAW to control the cursor?


Thanks Chris,
But can this sprite simulate mouse clicks and other mouse functions.  So all
I have to do is program the cusor.  A simple example would be moving a
cursor over a button with a roll-over behavior attached to it.  If I can
just control the cursor by moving it over a button, the roll-over will occur
on it's own.  As opposed to having to program the movement of an artificial
cursor, then program the roll-over. That example isn't that much extra
coding, but what if I want to simulate moving the cursor up to the FILE
menu, clicking on it to open the menu, scrolling down the menu items while
the various menu items become hilited, then selecting a menu item which in
most cases opens another MIAW.  Again, if I can just control the cursor, all
those functions will occur on their own, as opposed to having to program in
all of those functions.  Does this make sense?

Thanks again,
g fritzinger

- - - - - - - - - - - - - - - - - - - - - - -
Just hide the cursor ( set cursor to 0), and move a sprite around.
- - - - - - - - - - - - - - - - - - - - - - -
Hi Folks,
I've created a simulated version of a complex software package for use in a
CBT.  There are many MIAWs and field members, drop-down menus, radio
buttons, check boxes, etc.  This simulated software version will be used for
tutorials where we will instruct the user how to perform different functions
as well as involved exercises.  My idea is to monitor their progress with a
moveable talking head MIAW.  This MIAW will try to guide the user through
the exercises.  But if the user gets stuck, I'd like the talking head MIAW
to take control and actually do that part of the exercise for them.  Since
there so many menu items, radio buttons, etc. , it seems the easiest way for
the MIAW to take control would be to be able to control the cursor.  Move it
across the screen, click on a menu item, click in a field to activate it,
then enter text, push buttons, all the things an instructor would do, if
needed by a user that just wasn't getting it. So my question is, can a MIAW
control the cur!
sor to this extent?  I'm afaid the answer is NO, please let me know your
thoughts.

Thanx in advance,
g fritzinger


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Director 8.5

2001-06-27 Thread Chris Aernoudt

I have the exact same problem on win 2k server, even when I try to type text
director 8.5 halts immediately.
On 98 on the same comp it works fine.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Roman Pekarek
Sent: Wednesday, June 27, 2001 9:42 AM
To: [EMAIL PROTECTED]
Subject: Re: lingo-l Director 8.5


 It is quite likely 3d related.
 Can you give details about the following ?

 -OS version  DirectX version installed


Win2000 SP1 , DX8


 -Proc Speed


Intel Celeron 433


 -Ram


256M ram


 -Video card : Mfr - driver version  any ram on card



Matrox G400 , 32M Ram , latest drivers ..



 Also, check the Unsupported driver list on the MACR website.

http://www.macromedia.com/support/director/ts/documents/3d_rendering/udl.htm

 Also, Tech Support should be able to help you if you have registered.







 - jp
 
 J.Powers
 Androidmedia
 [EMAIL PROTECTED]
 

 Im trying to look for any new features in Director 8.5.

 Im opening learning/8.5_Tutorial/magic_start.dir

 It will open OK ..

 After go to Frame 10 in score , director crash ...

 Why ?

 Pytkin



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Flash and Director

2001-06-26 Thread Chris Aernoudt

--Make a string with your vars in director, send them and separate them into
an array in flash.
--Something like this:

on transmitVars
stringVar = var1,var2,var3
setVariable(sprite(1),stringInFlash,stringVar)
sprite(1).play()
end

--in your flash movie, put an action on the first frame where you init your
var like this:

stringInFlash = ;

--third frame:

stop();

--fifth frame:

resultArray = stringInFlash.split(,);

--Now you've got an array of your director vars
--You can also make handles execute in director from flash like this:

getURL(event: handlerName,\parameter\);

--note that you must escape chars like quotes and stuff.

Hope this helps.

Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
John Horn
Sent: Monday, June 25, 2001 5:41 PM
To: Lingo Group
Subject: lingo-l Flash and Director


I need to pass about 10 different variables from Flash into Director any
suggestions as to how to accomplish this without having to send each one
seperately?



-
John Horn
Interactive/Web Developer
[EMAIL PROTECTED]

Graphica
www.graphicadesign.com
937-866-4013 x.150
-


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Flash and Director

2001-06-26 Thread Chris Aernoudt

Oops, got the question wrong %}
just reverse the whole thing ...

use + to concatenate and pass the string as a parameter in
getURL(event:

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
John Horn
Sent: Monday, June 25, 2001 5:41 PM
To: Lingo Group
Subject: lingo-l Flash and Director


I need to pass about 10 different variables from Flash into Director any
suggestions as to how to accomplish this without having to send each one
seperately?



-
John Horn
Interactive/Web Developer
[EMAIL PROTECTED]

Graphica
www.graphicadesign.com
937-866-4013 x.150
-


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l Projector created in Director 8 not running in Windows NT

2001-06-25 Thread Chris Aernoudt

What do you mean, cannot play??
Do you get an error message?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Damian Lopez
Sent: Sunday, June 24, 2001 5:31 PM
To: [EMAIL PROTECTED]
Subject: lingo-l Projector created in Director 8 not running in
Windows NT


hi all

i have created a projector in Director 8 which on executing in Windows 95, 
98  2000 can play the movie(projector) but cannot play in Windows NT. 
can anyone suggest me.

i am targetting only windows

thanks in advance

damian


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l inverse cosine

2001-06-22 Thread Chris Aernoudt

Big thanks to everyone for your input.
Have a very nice day.

Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Bruce Epstein - Zeus Productions
Sent: Thursday, June 21, 2001 6:43 PM
To: Lingo-L Digest
Subject: lingo-l inverse cosine


Inverse cosine isn't built in but can be derived from atan()

This is covered in Chapter 8 of Lingo in a Nutshell. If you don't own LiaN,
you can download what you need from:

http://www.zeusprod.com/nutshell/chapters/lian08.html

Is there an inverse cosine function in lingo?
I've looked and didn't find it.

Anyone enough of a mathwiz to tell me how to calculate it if there's no
such
function available?




[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l inverse cosine

2001-06-21 Thread Chris Aernoudt

Is there an inverse cosine function in lingo?
I've looked and didn't find it.

Anyone enough of a mathwiz to tell me how to calculate it if there's no such
function available?

TIA.


*
Chris Aernoudt
Multimedia, Web  Application Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: lingo-l passing an array (AKA list) to a flash 5 member

2001-06-15 Thread Chris Aernoudt

Oops...
It ain't quite solved yet.
It seems the whole thing is being passed as a string, not an array.
When i get the array from flash in director, it looks OK, but it doesn't
quite work.
Is it even possible?

I initialize the array in flash with four values, to make sure.
When I do a getVariable, I get the following:

put getVariable (sprite(8),resultArray)
-- one,two,three,four - these are all strings (for clarity's sake)

When I play the flash member in director, it displays the values in the
array.

When I change them with setVariable, I get the following :

setVariable (sprite(8),resultArray,three,two,one,zero)
put getVariable (sprite(8),resultArray)
-- three,two,one,zero

Though the output appears to be identical,
when I play it, it won't display the values.

I've set a getURL in flash with the lingo: thing that sends the value of
the array in flash to the put command so it displays in the message
window.

This is the output :

sprite(8).play()
-- Void Void Void Void

WTH???
Why ain't this working???
PS : When I pass more elements, the number of Void 's increases to a
match.
So apparently flash knows it's supposed to be an array - but still it
doesn't work.
Does anyone have experience with this???
Please please help.

TIA.

Chris.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Chris Aernoudt
Sent: Thursday, June 14, 2001 9:29 AM
To: [EMAIL PROTECTED]
Subject: RE: lingo-l passing an array (AKA list) to a flash 5 member


Thanks for your input, that solved it.

Chris.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
g r i m m w e r k s
Sent: Wednesday, June 13, 2001 5:12 PM
To: Lingo
Subject: Re: lingo-l passing an array (AKA list) to a flash 5 member



Believe you have to pass the whole thing as a string (obviously) ie
sprite(5).setVariable(thearray, (blah, blah, blah, blah)) but I'm not
sure how each blah would read

Perhaps you'd need to do (  QUOTE  blah  QUOTE  ,.etc


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]



[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l passing an array (AKA list) to a flash 5 member

2001-06-13 Thread Chris Aernoudt

Is it possible to pas an array from director 8.5 to a flash 5 member?
Using setVariable??
I get handler not defined when i try to smack a list through setVariable.

Please help.
TIA

*
Chris Aernoudt
Multimedia, Web  Application Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l Adding a value to a list if it's not already there

2001-05-17 Thread Chris Aernoudt

Hello

Can someone tell me how to go about checking a list for a value,
and adding it only if it isn't in it yet?

Thanks a lot.

*
Chris
Multimedia  Web Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




lingo-l Thank you for answering so quikly

2001-05-17 Thread Chris Aernoudt

Thanks again.

*
Chris
Multimedia  Web Developer

Pixellink nv
Interactive Communication Projects

Noorkaai 22
B-8870 Izegem
Belgium

Tel.: + 32 (0)51/32 02 25
Fax.: + 32 (0)51/32 02 26
email : [EMAIL PROTECTED]
http://www.pixellink.be
*
This email is confidential and intended solely for the use of the individual
to whom it is addressed.
If you are not the intended recipient, be advised that you have received
this email in error and that any use, dissemination, forwarding, printing,
or copying of this email is strictly prohibited.
You are explicitely requested to notify the sender of this email that the
intended recipient was not reached.
*


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]