RE:

2001-07-31 Thread Natalia Tjelum

Hi
I did a project where I needed to simply go to a net page from a projecter,
but it had open with Internet Explorer, what I did, was using the Buddy api
xtra, and in the startmoviescript run a check if the user had Internet
Explorer installed, if he had, I would set the browerName()= the path of
where Internet Explorer was installed(returned by Buddy), and do my
gotonetpage. If he hadn't I would make him install it. :)

-Natalia


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of naga raj
Sent: 31. juli 2001 16:32
To: [EMAIL PROTECTED]
Subject:


Hello all,

I have done a project,which is basically a browser
based multimedia presentation. It runs through the
Internet Explorer only.It has a lot of videos and VO.
Now the client wants autorun facility.If i give
autorun and if the end user machine has Netscape as
the default browser the videos do not run.Because
Windows Media Player plugin for Netscape is not
available. All Videos are mpegs.

So now my problem is first i have to determine in
which drive the end user's default browser exists then
if it is Netscape then i have to given an alert.And if
the default browser is Internet Explorer then the
presentation will work normally.

I used browerName() andgotoNetpage commands. They work
fine because my machine has IE as the default
browser.But i don't know about the end user's.So
please help me. Any ideas or some code...

Cordially
Nagaraj.

__
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!]




lingo-l@penworks.com

2001-07-31 Thread Mark Jenkinson

Hi, I'm wandering how do you create .dxr movies, do you need the full non
educational version of  director?
Also is there some way to save text field data when jumping between movies,
I tried the updateMovieEnabled=TRUE but it won't work in Projector mode.

Thanks

Mark Jenkinson
Multimedia Project Officer
Kangan Batman Institute
Learning Research & Design
44 Buckley St, Essendon
Private Bag 299
Somerton VIC 3062
Telephone 03 9254 3073
Facsimile  03 9375 2726





***
IMPORTANT NOTICE: 
1.   Please scan this e-mail message and any attachments before opening 
for viruses.  Kangan Batman TAFE does not accept any responsibility for 
problems caused by viruses that have been conducted through its e-mail 
infrastructure. 
2.   When the document is printed or used on the recipient's equipment, 
it may lose styles or formats due to software incompatibility.  
This version was created using Microsoft Word 97. If you have different 
software, editing the document may corrupt it. 
3.   Opinions expressed in this e-mail message and any attachments are 
those of the originator and are not necessarily the opinions of 
Kangan Batman TAFE. 
4.   This e-mail message is intended only for the use of the individual 
or entity named above and may contain information that is confidential 
and/or privileged.  If you are not the intended recipient, you are 
hereby notified that any dissemination, distribution or copying of this 
e-mail message is prohibited.  If you have received this message in 
error please notify the person sending this message or by e-mail the 
[EMAIL PROTECTED] or telephone +61 3 9279 2566 and destroy the 
original message. 
5.   This document is subject to copyright.  No part of it should be 
reproduced without the consent of the copyright owner. 

Kangan Batman TAFE 
Visit our web site at http://www.kangan.edu.au 

*** 


[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: flash inside director with cursor

2001-07-31 Thread grimmwerks


Sure, do this

property pFlash

on beginsprite me
pFlash=sprite(me.spritenum)
end beginsprite me

on enterframe me
if pFlash.mouseOverButton then  
pFlash.cursor = 280
end if
end enterframe me



[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: playing multiple movies in a predefined order.

2001-07-31 Thread Sean Wilson

> I have about 20 separate movies. Each movie
> represents a
> slide in a presentation.
> Each slide has animation, interactivity and buttons to move to
> the previous
> and next slides.
>
> I want to store the order that the movies are played (ie: the order of the
> slides in the presentation)  in a text file, and have a projector
> that reads
> the text file and plays the slides in the correct order.

Did I miss something? You pretty well answered your own question.
Build a shell/stub projector that uses FileIO/budAPI (insert appropriate
xtra)to read your text file, build a (global) list of the movie names,
navigate to the first movie, reference the list to deal with next/previous
buttons.


[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: playing multiple movies in a predefined order.

2001-07-31 Thread John Trentini

All you need is to make a stub projector
(documentation at macromedia.com)

Place all of your movies in the same folder
as your projector.

For the navigation between movies, one way is to
hard code the buttons in each movie to take you
to the previous or next movie.

A more elegant way would be using a global list, unfortunately
I cannot help you with that (my lingo is not up to it yet) but some one
else from the list will be able to help you.

HTH
JohnT

nick langridge wrote:

> Here's my problem. I have about 20 separate movies. Each movie represents a
> slide in a presentation.
> Each slide has animation, interactivity and buttons to move to the previous
> and next slides.
>
> I want to store the order that the movies are played (ie: the order of the
> slides in the presentation)  in a text file, and have a projector that reads
> the text file and plays the slides in the correct order.
>
> Does anyone know how I can do this?
>
> I want to avoid publishing all the slides inside one projector so that more
> slides can be added without the need to re-publish.
>
> With flash I could load the slide movies in and out of the parent movie, but
> as far as I am aware you cant do that in director (?)
>
> Thanks
>
> Nick
>
> [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: changing hyperlink colour

2001-07-31 Thread Sean Wilson

James Newton has published a movie/behavior that allows this very easily.

http://perso.planetb.fr/newton/#text

Look for his "Custom hyperlink style" example movie.

[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!]




flash inside director with cursor

2001-07-31 Thread Mark

Hello All,
I need a kick start here...
I was looking for an easy solution for my cursor problem.
I have a director movie that contains a flash navigation bar.
What I am looking for is an easy solution to change the cursor into a
finger(anything!) when it is over the flash buttons. For some reason the
cursor change gets sucked up when the flash is playing back in director. I
was hoping to not have to call director every time a mouse event occurs in
flash...
Thanks for you help
Mark



[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: pdf xtra question...

2001-07-31 Thread grimmwerks


But is the older pdf xtra compatible with 5? Doesn't seem to be - at least
on mac; on windows you can have a workaround with includeing a 4.0 reader
on the cd.

On Mon, 30 Jul 2001, Dominic Villiard wrote:

> yes it's compatible
> 


[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: pdf xtra question...

2001-07-31 Thread Dominic Villiard

yes it's compatible

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 31, 2001 4:01 PM
Subject:  pdf xtra question...


>
> What's the new features with the 2.0 version? Is it compatible with
> Acrobat 5 (1 doesn't seem to be)can we still use 1 with acrobat reader
> 4 on a cd?
>
>
> [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: Accessing a large list of dates sorted into groups by team

2001-07-31 Thread Brian Romanko

Tony,

Actually, a more preferable way to approach this problem would be to use
a database like Valentina.  Here, the teams and games could be stored in
separate "tables" (collections of data about separate things).  Each row
in your team table would have information about one team, and each row
in the games table would have information about one specific game. (You
would also probably need a third lookup table if this is a many-many
relationship, but I'm not sure of the whole schema.)

Then, your director project could query these tables and sort them out
using any standard SQL sorts.  Something like: 

SELECT * FROM Teams, Games WHERE TeamID = 'theWhatevers' ORDER BY
GameDate

Now, this is assuming you have any idea how a database works, or what
SQL is.  If you haven't the foggiest what I am talking about, I can try
and give you a more detailed explanation of how databases and Valentina
work.  However, I think with a database, the list ordering and sorting
will be infinitely easier.


Brian Romanko
Lead Developer - Neo/SCI Corporation
Member - Greater Rochester Macromedia User Group



-Original Message-
Howdy all!

I can't seem to get my brain in gear on this one, so I thought I might
enlist some help.  
I have a list of game dates sorted by team.  I need to access the dates
first by team (a pref given by the user and then by the next upcoming
game, figured by referencing the system date) My issues are as follows:

1)Is a property list with dates nested, the best way to start to attack
this? 

I.E.

dateList = [ #team : "the whatevers", #dates [date_list_goes_here] 

2)Then access by team name?  

3)If so how do I sort the date issue out so as to get the next upcoming
game(or the next two)  to show?

4) Is there another way I'm not thinking of?

Any help is appreciated.  

Thanks,

Tony Eggleston
[EMAIL PROTECTED]


[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: updatestage.com

2001-07-31 Thread Daniel Devolder

>I'm curious to see if anyone's gotten the vlist to work with an image
>rather than a db?

What do you want to know exactly?


Daniel Devolder

Check my vList Xtra for saving Lingo lists with optional encryption

http://www.updatestage.com/xtras/vlist.html

[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: updatestage.com

2001-07-31 Thread grimmwerks


Correction then: a problem with IE on the MAC ;P

On Tue, 31 Jul 2001, Al Hospers wrote:

> Grimm dude...
> 
> dunno why you are having that problem. I probably go there 2-3x a day
> & have no problems in IE 5 on the PC.
> 
> Al Hospers
> Marketing Associate
> UpdateStage
> alhospersupdatestagecom
> http://www.updatestage.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!]




pdf xtra question...

2001-07-31 Thread grimmwerks


What's the new features with the 2.0 version? Is it compatible with
Acrobat 5 (1 doesn't seem to be)can we still use 1 with acrobat reader
4 on a cd?


[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: updatestage.com

2001-07-31 Thread Al Hospers

> Hey just wanted to point out that on IE, there's no link to 'mile
high
> table of xtras' on the xtra page, although it shows on
> netscape and icab - weird.

Grimm dude...

dunno why you are having that problem. I probably go there 2-3x a day
& have no problems in IE 5 on the PC.

Al Hospers
Marketing Associate
UpdateStage
alhospersupdatestagecom
http://www.updatestage.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!]




RE: closing MIAWs = a fatal error

2001-07-31 Thread Mark R. Jonkman

Hi John

Don't have the MIAW close itself, rather have it tell the stage to set
either a global or in D8+ a timeout object that can do the close at some
short distance in the future. You need to finish the tell command in its
entirety including the call back by the stage to the MIAW as it passes back
up the heirachy

ie.

on mouseDown
-> tell the stage to forget MIAW
-> THE STAGE -> forget the window
-> THE STAGE tells the MIAW okay I've executed your command -> 
NO MIAW to
get callback -> fatal error

so in D7 or below you would do

tell the stage to mCloseSomeWindow, someWindowName

in the stageMovie
on mCloseSomeWindow someWindowName
gCloseWindow = someWindowName
end mCloseSomeWindow

on exitFrame
if gCloseWindow <> VOID then
window( gCloseWindow ).forget()
gCloseWindow = VOID
end if
end exitFrame

where you would put the monitoring variable into every frame script where
the window in question would appear and then monitor it on exitFrame and
when it isn't void, close the window

Hope that helps

Sincerely
Mark R. Jonkman

> -Original Message-
> From: John Sproul [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 31, 2001 12:35 PM
> To: [EMAIL PROTECTED]
> Subject:  closing MIAWs = a fatal error
>
>
> I have a problem with a project and a number of its MIAWs.  I have tried
> a
> number of ways to close an MIAW
> 
> GLOBAL myMIAW
>
> on mouseDown
> tell the stage to forget myMIAW
> end
> 
>
> on mouseDown
>
> tell the stage to forget window "myMIAW"
> end
> ---
>
> on mouseDown
> forget window "myMIAW"
> end
> 
> and none of these have worked.  Has anybody had a similar problem and
> been
> able to solve it?  Thanks.
>
> John Sproul
> Vision Technologies Group
>
>
> [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!]




Accessing a large list of dates sorted into groups by team

2001-07-31 Thread Tony Eggleston

Howdy all!

I can't seem to get my brain in gear on this one, so I thought I might
enlist some help.  
I have a list of game dates sorted by team.  I need to access the dates
first by team (a pref given by the user and then by the next upcoming
game, figured by referencing the system date) My issues are as follows:

1)Is a property list with dates nested, the best way to start to attack
this? 

I.E.

dateList = [ #team : "the whatevers", #dates [date_list_goes_here] 

2)Then access by team name?  

3)If so how do I sort the date issue out so as to get the next upcoming
game(or the next two)  to show?

4) Is there another way I'm not thinking of?

Any help is appreciated.  

Thanks,

Tony Eggleston
[EMAIL PROTECTED]



[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: closing MIAWs = a fatal error

2001-07-31 Thread LePhuronn

Morgan is correct in saying that you do not close a MIAW directly. When
control to the originating script is passed, you will find that the MIAW
does not exist and the whole thing bombs out.

The only correct way to close a MIAW would be to set a global flag initially
set to "false" or some other descriptive value and put inside that variable
the name of the MIAW you want to close when required. The main movie can
check the staus of this variable during idle time and will close the
required window when the variable contains an appropriate value.

-- In the main movie
global gWindowFlag

on startMovie
  gWindowFlag = #nowindow
end

on idle
  if gWindowFlag <> #nowindow then
forget window gWindowFlag
gWindowFlag = #nowindow
end

-- In the MIAW close button
global gWindowFlag

on mouseUp
  gWindowFlag = the activeWindow
end

Or something like that...


[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:

2001-07-31 Thread nik crosina

Hi,

I found a 'quick and nasty'solution for my problem:
i am putting the pop-up in front with every exit frame
event. this cvreates a bit of flicker but works more or less...

if anyone has a better idea, or exoperience, please let me 
know!~!!!

thanks,
Nik

On Tue, 31 Jul 2001 09:38:03 -0500 jsweeney <[EMAIL PROTECTED]> wrote:
> on 7/31/01 4:31 AM, nik crosina at [EMAIL PROTECTED] wrote:
> 
> > Can this be changed, or over-ridden somehow? Does anyone have any experience
> > with that?
> > 
> > Many thanks,
> > Nik Crosina 
> 
> According to the documentation from Integration, the PDF will ALWAYS be on
> TOP of everything. You can't put anything over it. Kind of like the Direct
> to Stage function in Director.
> 
> L8R,
> JRS
> 
>  
> ===
> John R. Sweeney Jr.([EMAIL PROTECTED])
> Interactive Multimedia Developer/
> Digital Media Specialist
> 
> OnDemand - Interactive, Inc.
> 847.651.4469 (cell)  847.310.5959 (office/fax)
> === 
> 
> 
> [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: closing MIAWs = a fatal error

2001-07-31 Thread Slava Paperno

There was an extensive discussion of this subject around 3/23/2001. Search 
the Lingo-L archives for the phrase "closing miaw windows" (in the subject 
line). The archives are at http://www.mail-archive.com/lingo-l@penworks.com/

The essence of the issue is that the stage must close the MIAW, not the 
MIAW itself (although some members reported trouble-free operation with 
"forget the activeWindow" in the MIAW itself).

It is important to realize that if a handler in the MIAW tells the stage to 
forget the MIAW, that is not the same as the stage originating that 
command, because execution still tries to return to the MIAW--and it's no 
longer there, hence a crash. You'll know more when you read the archives.

The most elegant solution suggested at the time that I have adopted is to 
have the MIAW start a timeout object in the stage, and have that timeout 
object issue the forget command.

Slava

At 11:34 AM 7/31/2001 -0700, you wrote:
>I have a problem with a project and a number of its MIAWs.  I have tried a
>number of ways to close an MIAW
>
>GLOBAL myMIAW
>
>on mouseDown
>tell the stage to forget myMIAW
>end
>
>
>on mouseDown
>
>tell the stage to forget window "myMIAW"
>end
>---
>
>on mouseDown
>forget window "myMIAW"
>end
>
>and none of these have worked.  Has anybody had a similar problem and been
>able to solve it?  Thanks.
>
>John Sproul
>Vision Technologies Group
>
>
>[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: Index out of range error

2001-07-31 Thread Morgan Bonar


Var is going to be equal to the value of the integer in the list, not the
position, and when you use the brackets (I think) in accessing property
lists, it is looking for a positional value. So the first time thru the
repeat loop, it would work, because the var = 2 (which is a position in the
list), but the next time thru, var = 5 (which is outside the range of the
list)...


morgan-

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Gene Fritzinger
Sent: Tuesday, July 31, 2001 6:19 AM
To: [EMAIL PROTECTED]
Subject:  Index out of range error

Hello List,
I'm trying to set mSetCriteria from a list named gGeokeyList from within a
repeat loop. An example of what the list might look like is [2, 5, 7]. I
comment the line at which I get an "Index out of range" error.  Can anyone
see what I'm doing incorrectly?

on mouseUp
  closeTables
  closeDB
  set gDB = 0
  set gTable = 0
  set gDB = new(XTRA "V12dbe", the moviePath & "GEO.v12", "ReadWrite", "top
secret")
  CheckV12Error()
  set gTable = new(Xtra "V12table", mGetRef(gDB), "regmast")
  CheckV12Error()
  repeat with var in gGeokeyList
x = gGeokeyList[var]  --THIS IS WHERE I GET AN "INDEX OUT OF RANGE"
ERROR
mSetCriteria(gTable, "PARENT01", "=", x)
mOrderBy(gTable, "PARENT01")
mSelect(gTable)
put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", ",
return, "DESCRIPT") after field "RegionSelectedGeographies"
  end repeat

  go to "RegionPop"
  updatestage
end

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: closing MIAWs = a fatal error

2001-07-31 Thread Morgan Bonar

John,
I have had the same problem recently, and after some digging into
macromedia's site, found that you cannot initiate a closing of a MIAW window
from itself. Apparently, after you call the handler from the MIAW window, it
expects a return value internally, and if the window does not exist anymore,
it can cause some nasty crashes.

My workaround was to have an object in the main stage, and have a property
in that object that can set to true, therefore signaling the object to close
the window, not directly from the window itself.

Hope this helps...

Morgan-
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
John Sproul
Sent: Tuesday, July 31, 2001 11:35 AM
To: [EMAIL PROTECTED]
Subject:  closing MIAWs = a fatal error

I have a problem with a project and a number of its MIAWs.  I have tried a
number of ways to close an MIAW

GLOBAL myMIAW

on mouseDown
tell the stage to forget myMIAW
end


on mouseDown

tell the stage to forget window "myMIAW"
end
---

on mouseDown
forget window "myMIAW"
end

and none of these have worked.  Has anybody had a similar problem and been
able to solve it?  Thanks.

John Sproul
Vision Technologies Group


[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!]




Thanks Irv

2001-07-31 Thread Gene Fritzinger

Thanks again Irv !
_ _ _ _ _ _ _ 

You need to add a return character yourself.  Change:

 put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", 
", return, "DESCRIPT") after field "RegionSelectedGeographies"

to:

 put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", 
", return, "DESCRIPT") & RETURN after field 
"RegionSelectedGeographies"

Irv


[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: Is it possible

2001-07-31 Thread grimmwerks


You could do this with the multiuser xtra - there's a great example from
macromedia with one shockwave controlling webpages that the other
shockwaves see.


[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!]




closing MIAWs = a fatal error

2001-07-31 Thread John Sproul

I have a problem with a project and a number of its MIAWs.  I have tried a
number of ways to close an MIAW

GLOBAL myMIAW

on mouseDown
tell the stage to forget myMIAW
end


on mouseDown

tell the stage to forget window "myMIAW"
end
---

on mouseDown
forget window "myMIAW"
end

and none of these have worked.  Has anybody had a similar problem and been
able to solve it?  Thanks.

John Sproul
Vision Technologies Group


[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!]




Is it possible

2001-07-31 Thread Brian Farmer

Hello list members,

I have been asked to put together a presentation that would involve two computers. So 
for example, I would start the projector on both machines. (Controlling everything 
from one machine though.) Based on what is clicked on it would update on the other 
machine. Is this possible? If so, what do I need to be aware of?

Thanks!

Brian



[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: mpg files on cdrom

2001-07-31 Thread Kerry Thompson


>  Por favor ayudemen: deseo retirarme de la lista.

If you don't speak Spanish, he's asking to unsubscribe. Politely, at least.

Tab is aware now, if he wasn't before.

Cordially,

Kerry Thompson


[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: mpg files on cdrom

2001-07-31 Thread jorge moya

 Por favor ayudemen: deseo retirarme de la lista.
[EMAIL PROTECTED]







--- Robert Wingate <[EMAIL PROTECTED]>
escribió: > > WMP is just an application that uses the
> DirectShow technology, 
> > much like Tabuleiro's DirectMediaXtra
> 
> Thanks Mark for calling me on this one. I don't mean
> to evangelize WMP
> or anything. There are good alternatives, and my
> experience with
> Tabuleiro Xtras or support has never been anything
> less than excellent.
> 
> And I'm interested to learn that DirectMediaXtra &
> StreamingMediaXtra
> use DirectShow. Having done a couple of
> DirectShow-based console apps
> that I call from Director, I now wonder if I
> should've tried to do them
> as Xtras instead. Great -- now I'll be thinking
> about this all week!
> 
> Rob
> 
> /*
> * Rob Wingate, Software Human*
> * http://www.vingage.com *
> * mailto:[EMAIL PROTECTED] *
> */
> 
> [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!]
>  

___
Do You Yahoo!?
Yahoo! Messenger: Comunicación instantánea gratis con tu gente -
http://messenger.yahoo.es

[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: Exporting Image Files (Projector, not Shockwave)

2001-07-31 Thread Roy Crisman

At 05:19 PM 7/30/01 -0400, you wrote:
> > I use FileXtra3 to export content.  I don't the link off hand but it
> > shouldn't be too hard to find.  Try http://www.behaviors.com.
>
>Bill,
>
>you use FileXtra3 to export graphics files from Director? am I missing
>something here? it certainly does a lot of stuff, but I didn't think
>that was one of 'em.


I was going to ask that, too.  I took a second look at the FileXtra3 .pdf, 
and there doesn't seem to be any image writing part of it.



-
Roy Crisman
Senior Macromedia Programmer
(716)724-4054
[EMAIL PROTECTED]


[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-31 Thread naga raj

Hello all,

I have done a project,which is basically a browser
based multimedia presentation. It runs through the
Internet Explorer only.It has a lot of videos and VO.
Now the client wants autorun facility.If i give
autorun and if the end user machine has Netscape as
the default browser the videos do not run.Because
Windows Media Player plugin for Netscape is not
available. All Videos are mpegs. 

So now my problem is first i have to determine in
which drive the end user's default browser exists then
if it is Netscape then i have to given an alert.And if
the default browser is Internet Explorer then the
presentation will work normally.

I used browerName() andgotoNetpage commands. They work
fine because my machine has IE as the default
browser.But i don't know about the end user's.So
please help me. Any ideas or some code...

Cordially
Nagaraj.

__
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!]




updatestage.com

2001-07-31 Thread grimmwerks


Hey just wanted to point out that on IE, there's no link to 'mile high
table of xtras' on the xtra page, although it shows on netscape and icab -
weird.

I'm curious to see if anyone's gotten the vlist to work with an image
rather than a db?


[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: Thanx Irv - Re: Index out of range error

2001-07-31 Thread Irv Kalb

You need to add a return character yourself.  Change:

 put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", 
", return, "DESCRIPT") after field "RegionSelectedGeographies"

to:

 put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", 
", return, "DESCRIPT") & RETURN after field 
"RegionSelectedGeographies"

Irv


At 11:45 AM -0400 7/31/01, Gene Fritzinger wrote:
>Thanx Irv,
>This now works with only one small problem. When it loops from 2 to 
>4 and then 4 to 7, it doesn't add a return in the field so the field 
>displaying the results looks like this:
>
> from field member
>
>New York Region
>New England Region 
>Mid-Atlantic Region
>Great Lakes Region  North 
>Region   
>West Region
>Northwest RegionMilitary Region
>
> 
>
>North Region (which is the first value of 4) should appear above 
>West Region, and Military Region  (which is the first value of 7) 
>should appear below Northwest Region.
>Any ideas??
>
>Thanks again,
>g fritzinger   
>
>-
>I guessing that you want:
>
>repeat with var in gGeokeyList
>  mSetCriteria(gTable, "PARENT01", "=", var)
>
>Given gGeokeyList of [2, 4, 7], the above will loop three times, with
>var getting the values of 2, 4, and 7.  The way you had it, you were
>indexing into gGeokeyList twice.
>
>Irv
>
>
>At 9:19 AM -0400 7/31/01, Gene Fritzinger wrote:
>>Hello List,
>>I'm trying to set mSetCriteria from a list named gGeokeyList from
>>within a repeat loop. An example of what the list might look like is
>>[2, 5, 7]. I comment the line at which I get an "Index out of range"
>>error.  Can anyone see what I'm doing incorrectly?
>>
>>on mouseUp
>>closeTables
>>closeDB
>>set gDB = 0
>>set gTable = 0
>>set gDB = new(XTRA "V12dbe", the moviePath & "GEO.v12",
>>"ReadWrite", "top secret")
>>CheckV12Error()
>>set gTable = new(Xtra "V12table", mGetRef(gDB), "regmast")
>>CheckV12Error()
>>repeat with var in gGeokeyList
>>  x = gGeokeyList[var]  --THIS IS WHERE I GET AN "INDEX OUT OF 
>>RANGE" ERROR
>>  mSetCriteria(gTable, "PARENT01", "=", x)
>>  mOrderBy(gTable, "PARENT01")
>>  mSelect(gTable)
>>  put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ",
>>", return, "DESCRIPT") after field "RegionSelectedGeographies"
>>end repeat
>>
>>go to "RegionPop"
>>updatestage
>>end
>>
>>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!]


-- 

Lingo / Director / Shockwave development for all occasions. 
  
   (Home-made Lingo cooked up fresh every day just for you.)

[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: While shockwave is loading

2001-07-31 Thread Colin Holgate

>I want to keep the user busy while a shockwave movie is loading. I 
>figured I'll use the idleLoad while playing a small movie to check 
>if the desired members have arrived. When the cast members are 
>loaded I will start the main feature.
>
>I haven't been able to figure out from the documentation how to set 
>the idleLoadTag for the desired cast members.

You should be able to do what you want in a simpler way. Set the 
movie to Playback While Downloading, and then you could have multiple 
stages of your keep them amused sequence. Look at the mediaready of 
the last member that you need for the next scene, and then jump into 
it when it's ready, do whatever is entertaining, and check for the 
mediaready of the last member of the next part. Eventually you'll 
know that the last member for the whole movie is loaded.


-- 

[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!]




While shockwave is loading

2001-07-31 Thread Enrique Nivasch

Hi,

I want to keep the user busy while a shockwave movie is loading. I figured 
I'll use the idleLoad while playing a small movie to check if the desired 
members have arrived. When the cast members are loaded I will start the 
main feature.

I haven't been able to figure out from the documentation how to set the 
idleLoadTag for the desired cast members.

Can someone help?

Thanks,

Enrique

 
-
Sr. Enrique
Libros, Multimedia y Software en Castellano

Visite nuestra tienda online:
 http://www.SrEnrique.co.il
Dirección electrónica
 mailto:[EMAIL PROTECTED]
Teléfono y Fax:
 +972 9 744 4701
Dirección postal:
 Sr Enrique
 P.O. Box 875
 Ra'anana 43108
 Israel



[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!]




Thanx Irv - Re: Index out of range error

2001-07-31 Thread Gene Fritzinger

Thanx Irv,
This now works with only one small problem. When it loops from 2 to 4 and then 4 to 7, 
it doesn't add a return in the field so the field displaying the results looks like 
this:

 from field member

New York Region 
New England Region  
Mid-Atlantic Region 
Great Lakes Region  North Region
West Region 
Northwest RegionMilitary Region 

  

North Region (which is the first value of 4) should appear above West Region, and 
Military Region  (which is the first value of 7) should appear below Northwest Region. 
Any ideas??

Thanks again,
g fritzinger

—
I guessing that you want:

   repeat with var in gGeokeyList
 mSetCriteria(gTable, "PARENT01", "=", var)

Given gGeokeyList of [2, 4, 7], the above will loop three times, with 
var getting the values of 2, 4, and 7.  The way you had it, you were 
indexing into gGeokeyList twice.

Irv


At 9:19 AM -0400 7/31/01, Gene Fritzinger wrote:
>Hello List,
>I'm trying to set mSetCriteria from a list named gGeokeyList from 
>within a repeat loop. An example of what the list might look like is 
>[2, 5, 7]. I comment the line at which I get an "Index out of range" 
>error.  Can anyone see what I'm doing incorrectly?
>
>on mouseUp
>   closeTables
>   closeDB
>   set gDB = 0
>   set gTable = 0
>   set gDB = new(XTRA "V12dbe", the moviePath & "GEO.v12", 
>"ReadWrite", "top secret")
>   CheckV12Error()
>   set gTable = new(Xtra "V12table", mGetRef(gDB), "regmast")
>   CheckV12Error()
>   repeat with var in gGeokeyList
> x = gGeokeyList[var]  --THIS IS WHERE I GET AN "INDEX OUT OF RANGE" ERROR 
> mSetCriteria(gTable, "PARENT01", "=", x)
> mOrderBy(gTable, "PARENT01")
> mSelect(gTable)
> put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", 
>", return, "DESCRIPT") after field "RegionSelectedGeographies"
>   end repeat
>
>   go to "RegionPop"
>   updatestage
>end
>
>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!]




playing multiple movies in a predefined order.

2001-07-31 Thread nick langridge

Here's my problem. I have about 20 separate movies. Each movie represents a
slide in a presentation.
Each slide has animation, interactivity and buttons to move to the previous
and next slides.

I want to store the order that the movies are played (ie: the order of the
slides in the presentation)  in a text file, and have a projector that reads
the text file and plays the slides in the correct order.

Does anyone know how I can do this?

I want to avoid publishing all the slides inside one projector so that more
slides can be added without the need to re-publish.

With flash I could load the slide movies in and out of the parent movie, but
as far as I am aware you cant do that in director (?)

Thanks

Nick





[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:

2001-07-31 Thread jsweeney

on 7/31/01 4:31 AM, nik crosina at [EMAIL PROTECTED] wrote:

> Can this be changed, or over-ridden somehow? Does anyone have any experience
> with that?
> 
> Many thanks,
> Nik Crosina 

According to the documentation from Integration, the PDF will ALWAYS be on
TOP of everything. You can't put anything over it. Kind of like the Direct
to Stage function in Director.

L8R,
JRS

 
===
John R. Sweeney Jr.([EMAIL PROTECTED])
Interactive Multimedia Developer/
Digital Media Specialist

OnDemand - Interactive, Inc.
847.651.4469 (cell)  847.310.5959 (office/fax)
=== 


[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!]




browser detection

2001-07-31 Thread naga raj

Hello all,

I have done a project,which is basically a browser
based multimedia presentation. It runs through the
Internet Explorer only.It has a lot of videos and VO.
Now the client wants autorun facility.If i give
autorun and if the end user machine has Netscape as
the default browser the videos do not run.Because
Windows Media Player plugin for Netscape is not
available. All Videos are mpegs. 

So now my problem is first i have to determine in
which drive the end user's default browser exists then
if it is Netscape then i have to given an alert.And if
the default browser is Internet Explorer then the
presentation will work normally.

I used browerName() andgotoNetpage commands. They work
fine because my machine has IE as the default
browser.But i don't know about the end user's.So
please help me. Any ideas or some code...

Cordially
Nagaraj.

__
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!]




Re: Index out of range error

2001-07-31 Thread Darryl Cousins

>   repeat with var in gGeokeyList

Hi Gene,
I'm pretty new to Lingo but this the first time I've seen  var in
list syntax. I checked the Lingo dictionary under "in" and perhaps
thats the problem, we don't have this syntax in Lingo. It would also make
sense of the error.
You'd need to use repeat with var = 1 to gGeokeyList.count

Looking forward to reading other comments.

Blessings Darryl



[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: Index out of range error

2001-07-31 Thread Jakob Hede Madsen

At 9:19 -0400 2001_07_31, Gene Fritzinger wrote:

>   set gTable = new(Xtra "V12table", mGetRef(gDB), "regmast")
>   CheckV12Error()
>   repeat with var in gGeokeyList
> x = gGeokeyList[var]  --THIS IS WHERE I GET AN "INDEX OUT OF RANGE" ERROR

would that be: x = gTable[var]

Jakob


[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: no video playback on Win2000

2001-07-31 Thread pranavn


I thought you said that WM player correctly plays the files on Win2k also.

If you're getting the "unknown format" error for only a few files check
that they are indeed rendered with Cinepak and have not been corrupted
somehow.

Try using a different codec too. I've used Indeo 5.4 (I think that was the
name, I don't remember for sure) on a few projects before. They ran well
our target Win98 systems as well as the WinNT development platform. Check
how they work on Win2k.

Cordially,
Pranav Negandhi
New Media Applications.
Learnet India Limited, Mumbai.
Phone: 91-22-859 8042 Ext: 410




Windows media player doesn't even recognize ("unknown format") what codec
is
used (for different video's with different codecs...)

.

> Oh, I use Avi's with Cinepac codec... I have this codec installed and
> mediaplayer playes the files correctly on my win2000 system...





[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!]




Index out of range error

2001-07-31 Thread Gene Fritzinger

Hello List,
I'm trying to set mSetCriteria from a list named gGeokeyList from within a repeat 
loop. An example of what the list might look like is [2, 5, 7]. I comment the line at 
which I get an "Index out of range" error.  Can anyone see what I'm doing incorrectly?

on mouseUp
  closeTables
  closeDB
  set gDB = 0
  set gTable = 0
  set gDB = new(XTRA "V12dbe", the moviePath & "GEO.v12", "ReadWrite", "top secret")
  CheckV12Error()
  set gTable = new(Xtra "V12table", mGetRef(gDB), "regmast")
  CheckV12Error()
  repeat with var in gGeokeyList
x = gGeokeyList[var]  --THIS IS WHERE I GET AN "INDEX OUT OF RANGE" ERROR  
mSetCriteria(gTable, "PARENT01", "=", x)
mOrderBy(gTable, "PARENT01")
mSelect(gTable)
put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", ", return, 
"DESCRIPT") after field "RegionSelectedGeographies"
  end repeat
  
  go to "RegionPop"
  updatestage
end

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!]




Re: no video playback on Win2000

2001-07-31 Thread Martijn Janssen

I already tried that, but it means I have to reprogram part of my project
(which worked fine on the win98 machine...)
Windows media player doesn't even recognize ("unknown format") what codec is
used (for different video's with different codecs...)

what can I do? what am I missing...!?

Martijn

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 31, 2001 3:19 AM
Subject: Re: no video playback on Win2000


>
> Try importing the AVI's as QT cast members. Although you'll need to
install
> QuickTime to make them run, you'll be sure that they'll work without any
> anomalies.
> Don't forget to ship the QT Asset Xtra's too.
>
> Cordially,
> Pranav Negandhi
> New Media Applications.
> Learnet India Limited, Mumbai.
> Phone: 91-22-859 8042 Ext: 410
>
>
> 
> Oh, I use Avi's with Cinepac codec... I have this codec installed and
> mediaplayer playes the files correctly on my win2000 system...
> 
>
>
>
>
>
> [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!]

-
Pas de Deux
Van Mierisstraat 25
2526 NM Den Haag
tel 070 4450855
fax 070 4450852
http://www.pdd.nl
[EMAIL PROTECTED]
-

[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: changing hyperlink colour

2001-07-31 Thread Darryl Cousins

Hi Iain,
You need to set the useHypertextStyles property of a text member to FALSE
which turns off the automatic formatting and cursor change. Then if you do
want another color and/or cursor change you need to set that for each
individual word/link.
Blessings Darryl


> Hi list,
>
> Does anybody know how to change the colour of the defult blue hyperlink?
Any
> help would be much appreciated.
>
> thanks
>
> Iain



[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: Shape of MIAW

2001-07-31 Thread Darryl Cousins

Hi,
There's a article called "Non-rectangular MIAWs" on Director Online. I don't
have the URL but just do a search there.
Blessings, Darryl

>
> Hi All,
> I would like to know how to make the shape of the MIAW as you want, for
> example, I want the Miaw look like an Earth, how can I do? I saw someone
do
> that before but I cannot figure it out, please help.
>
> Thx all



[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 gui dumping

2001-07-31 Thread Daniel Devolder

>Is there a way in dump the entire (or parts of) director file to one big
>lingo script that could be editied, used to rebuild call the casts,
>properties, etc?
>
>This would be similar to Houdini being able to dump an entire .hip file
>using opscript.

Take a look at the vList Xtra. There is some Lingo code in the doc 
that may help you getting started (under the "Using the media of 
member with vList" heading).


Daniel Devolder

Check my vList Xtra for saving Lingo lists with optional encryption

http://www.updatestage.com/xtras/vlist.html

[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!]




changing hyperlink colour

2001-07-31 Thread Iain Sheild

Hi list,

Does anybody know how to change the colour of the defult blue hyperlink? Any
help would be much appreciated.

thanks

Iain

[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: no video playback on Win2000

2001-07-31 Thread pranavn


Try importing the AVI's as QT cast members. Although you'll need to install
QuickTime to make them run, you'll be sure that they'll work without any
anomalies.
Don't forget to ship the QT Asset Xtra's too.

Cordially,
Pranav Negandhi
New Media Applications.
Learnet India Limited, Mumbai.
Phone: 91-22-859 8042 Ext: 410



Oh, I use Avi's with Cinepac codec... I have this codec installed and
mediaplayer playes the files correctly on my win2000 system...






[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: no video playback on Win2000

2001-07-31 Thread Martijn Janssen

Oh, I use Avi's with Cinepac codec... I have this codec installed and
mediaplayer playes the files correctly on my win2000 system...

thanks & cheers,
Martijn
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 31, 2001 2:36 AM
Subject: Re: no video playback on Win2000


>
> You haven't mentioned what kind of videos you're playing. If it's avi,
then
> you'll need to install that specific codec on your system. Check the
> properties of the video files in Media Player.
>
> If you're using QT movies, you're going to have to install QuickTime on
> your system.
>
> Cordially,
> Pranav Negandhi
> New Media Applications.
> Learnet India Limited, Mumbai.
> Phone: 91-22-859 8042 Ext: 410
>
>
> 
> I use Director 8 on a win2000 system and video's don't play in a movie...
> On other systems with win98, it works 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!]

-
Pas de Deux
Van Mierisstraat 25
2526 NM Den Haag
tel 070 4450855
fax 070 4450852
http://www.pdd.nl
[EMAIL PROTECTED]
-

[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-31 Thread nik crosina

I amworking with the PDF Xtra on a project that involves a little search engine for 
the PDF files (ca 30). The search results are to be displayed in a small pop up window 
(miaw) but:

after appearing briefly on top of my full screen main movie (the one that also 
displays the PDF files) it disappears into the backgrund behind the man movie as soon 
as the pdf is loaded by the pdf xtra.

Normally pop up windows tend to stay in front of the main window and look like an 
inactive window, but with the pdf xtra they are pushed into the background.

Can this be changed, or over-ridden somehow? Does anyone have any experience with that?

Many thanks,
Nik Crosina 

[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!]




R: Shape of MIAW

2001-07-31 Thread roberto

you have to create a 1 bit bitmap castmember with the shape you want to use,
then
window mywindow.mindowtype = member "mymember"
it works only by projector

roberto

-Messaggio originale-
Da: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Per conto
di Eric Choy
Inviato: martedl 31 luglio 2001 11.14
A: [EMAIL PROTECTED]
Oggetto:  Shape of MIAW


Hi All,
I would like to know how to make the shape of the MIAW as you want, for
example, I want the Miaw look like an Earth, how can I do? I saw someone do
that before but I cannot figure it out, please help.

Thx all

_
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: no video playback on Win2000

2001-07-31 Thread pranavn


You haven't mentioned what kind of videos you're playing. If it's avi, then
you'll need to install that specific codec on your system. Check the
properties of the video files in Media Player.

If you're using QT movies, you're going to have to install QuickTime on
your system.

Cordially,
Pranav Negandhi
New Media Applications.
Learnet India Limited, Mumbai.
Phone: 91-22-859 8042 Ext: 410



I use Director 8 on a win2000 system and video's don't play in a movie...
On other systems with win98, it works 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!]




Re: Shape of MIAW

2001-07-31 Thread Nicolas MAREY

you must use a 1 bit mask and the command
set the windowtype of window "POPUP" to member "maskPopUp"


-
Nicolas MAREY
ADELIS - Développeur Multimédia
-
- Original Message -
From: "Eric Choy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 31, 2001 11:14 AM
Subject:  Shape of MIAW


> Hi All,
> I would like to know how to make the shape of the MIAW as you want, for
> example, I want the Miaw look like an Earth, how can I do? I saw someone
do
> that before but I cannot figure it out, please help.
>
> Thx all
>
> _
> 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!]




Shape of MIAW

2001-07-31 Thread Eric Choy

Hi All,
I would like to know how to make the shape of the MIAW as you want, for 
example, I want the Miaw look like an Earth, how can I do? I saw someone do 
that before but I cannot figure it out, please help.

Thx all

_
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!]




RE: RE: Tab's New Book (was: South Africa or something)

2001-07-31 Thread Karina Steffens


> No offence meant... I just thought it was a humorous typo.

None was ever taken :)




[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 video playback on Win2000

2001-07-31 Thread Martijn Janssen

Hi all,

I use Director 8 on a win2000 system and video's don't play in a movie...
On other systems with win98, it works fine...

any clue? I have mediaplayer 6.4.09.1109 on my system...

cheers,
Martijn

-
Pas de Deux
Van Mierisstraat 25
2526 NM Den Haag
tel 070 4450855
fax 070 4450852
http://www.pdd.nl
[EMAIL PROTECTED]
-

[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!]