RE: lingo-l Create text field - I can't find info about it

2003-01-22 Thread Brad Hile
Uni wrote: I'm trying to make a list of words with the equal translation next to those words. i.e. makan : to eat tidur: to sleep duduk : to sit etc... Because I have about 100 words, I guess it is not very effective if I have to type every single words... So, I was

Re: lingo-l Create text field 2

2003-01-22 Thread universal2001
Thank you very much for the reply (Brad) yes, it helps. Actually I'm trying to make like a language learning presentation where students can hear the pronunciation of words listed. Now I just have to familiarize myself with this OOP - new(type,castLib) because I'm relatively new to this area.

Re: lingo-l Create text field 2

2003-01-22 Thread Andreas Gaunitz
At 18.46 +1000 03-01-22, universal2001 wrote: Thank you very much for the reply (Brad) yes, it helps. Actually I'm trying to make like a language learning presentation where students can hear the pronunciation of words listed. Now I just have to familiarize myself with this OOP -

lingo-l 2 cdrom project

2003-01-22 Thread Francesco Scarfato
i've a lot of pdf and jpg files so i must share my project on 2 cdrom i use pdfxtra to read pdf files and i've a dummyjpg link external to the projector to import (changing the filename property's member) on the fly the selected jpg that i've another jpg files called legenda that i show in a miaw

lingo-l bluring rounded bitmaps

2003-01-22 Thread Quixadá
hi, imaging lingo gurus out there i´m trying to simulate the effect of an image that goes in and out of focus according to the lens position on a telescope. you can see it at http://planeta.terra.com.br/arte/quixada/mast/tele.htm. the problem is that the image must be rounded, and when the blur

Re: AW: lingo-l create a mask of an image

2003-01-22 Thread Carl West
Andreas* Gaunitz* wrote: http://lumpymuffins.home.attbi.com/masking It's a little bit rude, it's on a tight repeat loop, but it listens at the end of a cycle. -- Carl West [EMAIL PROTECTED] http://eisen.home.attbi.com Looks nice! It closed it's own window immediately and then

Re: lingo-l 2 cdrom project

2003-01-22 Thread Tab Julius
Unless you have two CD drives in your machine, if you want to have a program that spans multiple CDs, you will need to install the program on the hard drive. Most programs do not load all up into memory upon startup. The operating system will go back to your CD-ROM drive looking for your

Re: lingo-l bluring rounded bitmaps

2003-01-22 Thread Kurt Griffin
hi, imaging lingo gurus out there i´m trying to simulate the effect of an image that goes in and out of focus according to the lens position on a telescope. you can see it at http://planeta.terra.com.br/arte/quixada/mast/tele.htm. the problem is that the image must be rounded, and when the

lingo-l loading different cast members

2003-01-22 Thread Mindis
hello list members, i have one question: i'm creating online game with tow parts. user name textbox, settings etc are in the first part and W3D member in the second. i want to make preloader for the first part and when user are ready he presses a button and then folows preloader of W3D member. i

Re: lingo-l Create text field 2

2003-01-22 Thread universal2001
Thanks Andreas, is there any complete tutorials for this? I'd like to know more about this. Any help is appriciated. Thanks again! Uni - Original Message - From: Andreas Gaunitz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 7:46 PM Subject: Re: lingo-l

Re: lingo-l content of the TextMember

2003-01-22 Thread Agustín María Rodríguez
universal2001 escribió: What is the syntax to get the first word of a sentence in a textMember? HHmm... easy one: firstWord = member(text).text.word[1] HTH -- Agustín María Rodríguez | [EMAIL PROTECTED] | www.OnWine.com.ar [To remove yourself from this list, or to change to digest mode, go

Re: lingo-l 2 cdrom project

2003-01-22 Thread Rodrigo Peres
recently I had almost the same problem in a project that ended in 6 cd's :-/ To solve my problem I've made an application that runs from the hd and have an index of all images and it's cd. when the user clicks I look in the index and if not the right cd ask the other one. Rodrigo on 1/22/03

Re: lingo-l content of the TextMember2

2003-01-22 Thread universal2001
Thanks, but I have 4 cast libabries and the one that I want is the first word of the first member of the 4th castLib I tried but I have no luck. thanks! - Original Message - From: Agustín María Rodríguez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 10:12 AM

Re: lingo-l content of the TextMember2

2003-01-22 Thread Agustín María Rodríguez
universal2001 escribió: but I have 4 cast libabries and the one that I want is the first word of the first member of the 4th castLib You have to tell wich one of the casts by name or by number: firstWord = member(text, some cast).text.word[1] firstWord = member(text, 3).text.word[1] C´ya --

Re: lingo-l content of the TextMember2

2003-01-22 Thread Carl West
universal2001 wrote: ... but I have 4 cast libabries and the one that I want is the first word of the first member of the 4th castLib This worked for me: firstWord = (member text of castlib 2).text.word[1] -- Carl West [EMAIL PROTECTED] http://eisen.home.attbi.com I have no

RE: lingo-l content of the TextMember2

2003-01-22 Thread Brad Hile
Just reference the cast firstWord = member(text,4).text.word[1] you can also use firstWord = member(1,4).text.word[1] but if you move your text member it will break Look up member chunk in the help files for more information HTH Brad [To remove yourself from this list, or to change to digest

Re: lingo-l content of the TextMember3

2003-01-22 Thread universal2001
I got an error message: Script error: Object Expected I put the script firstWord = member(text,4).text.word[1] on a mouseUp even and I attch it to a text member. what should I do now? Uni - Original Message - From: Brad Hile [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

lingo-l Change ScreenRes in Win XP

2003-01-22 Thread mike cash
Hey all, Trying to simply change the user's screen res using DMX and Win XP. Tried BuddyAPI, no luck --- tried changeres from DMTools, again, no luck. ;( Any tips would be great. TIA. _ Add photos to your messages with MSN 8.

Re: lingo-l content of the TextMember3

2003-01-22 Thread Agustín María Rodríguez
universal2001 escribió: I got an error message: Script error: Object Expected I put the script firstWord = member(text,4).text.word[1] on a mouseUp even and I attch it to a text member. In case that your text member isn´t called text, this should work: --behavior attached to the text sprite

RE: lingo-l content of the TextMember3

2003-01-22 Thread Brad Hile
You will need to ensure that your text member is either named text or that you change that part of the code to the name of your text member. The object it expects is a member called text in castLib 4. Brad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf

Re: lingo-l Change ScreenRes in Win XP

2003-01-22 Thread roy crisman
don't know how to do it, and am greatly suspicious of people who think they ought to change my screen resolution (1600x1200 or greater) and move all my damn icons around. roymeo At 10:36 PM 1/22/2003 +, you wrote: Hey all, Trying to simply change the user's screen res using DMX and Win

lingo-l Re: 2 cdrom project

2003-01-22 Thread Francesco Scarfato
thanks for your answer! :-) the strange thing is that sometimes i can swap 2 cdrom without no error message, on winNT 2000 Xp systems (on win 95/98 system when i eject a cdrom immediately OS tell me to re-insert it into the drive [blue screen] and stop the program itself :-((( ... ) i've see that