RE: lingo-l MAC CD icon

2001-04-23 Thread Al Hospers

 Is there any way to give a Mac CD its own icon?

if I remember correctly you do it when you create the volume you are going
to burn. you paste it in in resedit.

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




RE: lingo-l please help my head is sore

2001-04-23 Thread Al Hospers

 I have tried and tried to scale the height of field cast
 members via lingo
 but i keep getting errors. could someone post an example please.

use the rect

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




RE: lingo-l Word Excel

2001-04-21 Thread Al Hospers

 I want to know that for Microsoft Word  Excel is having any
 Reader like
 Power point is having "Ppview32.exe". I want to open word  excel file
 but only for view not for modification.
 So please me Inform.

I suggest that you go to the Microsoft site  search there for Word  Excel
viewers. the same things that apply to the PP viewer, apply to those.

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




RE: lingo-l Open

2001-04-21 Thread Al Hospers

 I am having windowNt system so I can't run Ppview32.exe  i
 also i can't
 import *.ppt file so what I have to do Please help me to come out.


Mitesh

1 - I realize that you are not a native English speaker. that said, you need
to provide more information so that people don't have to _guess_ at how to
help you.

2 - you say you cannot run Ppview32.exe on NT, but you give no error
messages or details of your problem. I know that this is in fact not the
case because I have used this viewer on NT for projects before. however, you
cannot pas a path to the viewer that contains the SPACE character in it. you
will either need to make sure the full path to the application and the data
files do not contain any spaces. you can use the BUUDDY Xtra to do this. it
has a function called, I believe, baShortFileName() that performs this
function.

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




RE: lingo-l Search Path

2001-04-21 Thread Al Hospers

 I am trying to open file external but for that i want reader so i have
 to search the exe file path by lingo for that i want that script so if
 any one can know then please inform me.

While what you desire COULD be done with Lingo, it is far easier  faster to
do using an Xtra designed for that purpose. The MasterApp Xtra contains a
function specifically designed for that purpose named

  mappLocateExecutable()

It returns the path to the executable registered to handle the document at
the file path specified. MasterApp gives you broad control over other
applications from your Director presentation. The most common application
for MasterApp is building connectivity between your Director piece and
various Web browsers and Web pages. However, MasterApp is much more powerful
than this basic use, including dozens of methods for launching, monitoring
and controlling external applications.

Price: $299.00
Platforms: 32-bit Windows, Win 3.1, Mac
Director versions supported: Director 4,5,6,7,8
Author: Glenn Picher

MasterApp is a commercial Xtra sold by UpdateStage. You find out more
information, download an evaluation version or purchase the Xtra here:

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

I hope that this information is useful.

Cheers,

Al Hospers
Marketing Associate
UpdateStage
alhospersatupdatestagedotcom
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: lingo-l problem with handler

2001-04-21 Thread Al Hospers

 I've got a problem with a script.

I agree

 on collisionSprite me
   if me.spriteNum(bee shape).intersects sprite.(spider shape)THEN
 sprite.(spider shape).width * 1.1
 sprite.(spider shape).height * 1.1
 sprite.(bee shape).width * 0
 sprite.(bee shape).height  * 0
 end

 The error I'm getting is: Script error: Expected THEN.

wo. I'm surprised that is all you are getting

 Also, I'd prefer to have this part of the script actually
SNIP

1 - you should really read the documentation on what Sprite as a Lingo
keyword actually means. the following is directly from the online HELP:

Syntax  sprite(whichSprite).property

the property of sprite whichSprite

Description Keyword; tells Lingo that the value specified by whichSprite
is a sprite channel number. It is used with every sprite property.

A sprite is an occurrence of a cast member in a sprite channel of the
Score.

Example This statement sets the variable named horizontal to the locH of
sprite 1:

horizontal = sprite(1).loc

Example This statement displays the current member
in sprite channel 100 in the Message window:

put sprite (100).member


the thing to note here is that the parameter whichSprite is a NUMBER which
refers to the channel that the sprite is placed in. bee shape is
meaningless in this context. I assume that it is a member name, but in this
case it is clearly not a sprite. if we were to make the variable
whichSpriteNumber equal to the sprite in channel 10 and if you want to refer
to the member that is used to make a sprite you do it thus

  whichSpriteNumber = 10  -- channel 10
  sprite(whichSpriteNumber).member

and if you actually do want to set that sprite's height  width you do it
like

  whichSpriteNumber = 10
  sprite(whichSpriteNumber).width = 0
  sprite(whichSpriteNumber).height = 0

and if you want to move it off screen, which is what I assume you desire,
you would write

  sprite(whichSpriteNumber).locV = 1000

locV is the vertical location of the given sprite. this would then, move the
sprite to a position 1000 pixels from the top of the screen.

additionally your syntax in the handler you are writing is very incorrect.
for starters you left off the end if for your if...then statement. here is
an example from the online Help again

if (the commandDown) and (the key = q) then
cleanUp
quit
end if

note the end if closure. adding this into your handler  fixing the other
problems you might come up with

on collisionSprite me
 property SpriteNum  -- built in property getting the sprite number of the
 -- sprite we are attached to

 property spiderSpriteNumber  -- you have to put this in

 beeSpriteNum = spriteNum  -- we dropped this behavior onto the bee sprite

 spiderSpriteNumber = 10  -- you edit this number appropriately

  if sprite(beeSpriteNum ).intersects sprite.(spiderSprite)THEN
sprite.(beeSpriteNum ).LocV = 1000  -- move the bee sprite ofscreen
sprite.(spiderSpriteNumber).LocV = 1000  -- move the spider sprite
ofscreen
  end if

end

put this in a behavior script  drop it onto the bee sprite. you would have
to edit the spiderSprite number to the appropriate number.

what you are trying to do is not the most simple thing. I strongly urge you
to read the manual and look at some sample programs. perhaps go to the
www.mediamacros.com site  download some code samples. based on the code you
posted, you need to spend some time getting the fundamentals own. be sure to
also read about behaviors.

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




RE: lingo-l RE: Power Point

2001-04-20 Thread Al Hospers

 Not really. A Power Point show has a pps or ppt file
 extension.  You must to
 distribute Ppview32.exe with a presentation to make sure that
 the user can
 actually view it if he don't have Power Point installed.

actually it is just a bundle of all the stuff for a given slideshow. the
user will still need to have the PowerpointViewer, a freely distributable
player, or the full Powerpoint executable to play the file. thus

 Open xxx With yyy


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




RE: lingo-l director/flash cross concept

2001-04-19 Thread Al Hospers

 has anyone else used this before

sure, many times

 and if so is there a way to
 switch the
 video of a video member?

member("myMembername").filename = pathToNewFile

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




RE: lingo-l How u stop the HEAD of a movie?

2001-04-19 Thread Al Hospers

 I can't find a way thow to stop the head of the movie. When i
 play it, the
 head doesnt stay still in a frame. I assume that i need a bit
 of Lingo for
 this .Do i need to do anything with the Script channel or the
 transmition
 channel in the score window. Is it something to do with a
 movie script.

a behavior script in the script channel on the frame where you want to
"pause" that says:

on exitFrame

 go to the frame

end



that should do the job for you.

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




RE: lingo-l Open files Urgent.

2001-04-18 Thread Al Hospers

 I want to open pdf , Microsoft Excel , Microsoft Word, Microsoft Power
 point file.
 So how can i open it. For it i need any xtras or not  that name. And
 also I want script for open above files.

 If you know this then let me inform as fast as possible.

you may want to peruse the documentation for Director taking particular note
of the

  Open xxx With yyy

function

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




RE: lingo-l lingo.ini

2001-04-18 Thread Al Hospers

 You guys
 nowadays have
 it too easy. :)

and you walked 5 miles to school in a snowstorm every day daddy grin

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




RE: lingo-l text

2001-04-18 Thread Al Hospers

 if i want a user to be able to make notes while a
 movie is running do i use a text field? i tried
 putting a field on the stage but it won't let me type
 into it.

welll have you made it EDITABLE?

hmmm...

 also if i want to check for certain words in that text
 then say go to a marker how would i do this?

is there a button that makes this happen? if so then you may want to look at
the CONTAINS keyword in the manual. you know, like

  if xxx contains yyy then doWhatever

where xxx is a variable containing the contents of your text field, and yyy
is a variable containing what you want to match against.

que pasa?

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




RE: Re: RE: lingo-l find path

2001-04-18 Thread Al Hospers

 $299.00? For twice the price of the full version of Buddy, I
 hope it makes
 coffee, too.

I don't know about the coffee, but it feeds the dog  cat.

grin

Al Hospers
Marketing Associate
UpdateStage
alhospersatupdatestagedotcom
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: lingo-l Easy Mac Question

2001-04-17 Thread Al Hospers

 I'm just wondering what it takes to make a CD-Rom to work in
 PC's as well as
 Mac's. Do I need 2 different versions of my CD and 2
 different versions of
 Director, or can the 1 CD be cross-platformed?

as Tab says, this really isn't a Lingo question. you can create X-Platform
CD's, called hybrid's, using a program like Toast. go to the Adaptec web
site  look for it there. I suggest you also go to the Direct-L list digests
here

  http://listserv.uark.edu/archives/direct-l.html

search over the past year for CD hybrid. you should get a lot of hits.

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




RE: lingo-l Sel end, Sel start

2001-04-17 Thread Al Hospers

 how can i use SEL START and END to RETURN
 the file name on a given line..
 so i can use it to open a file

why use selStart/End? why not use the mouseLine?

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




RE: lingo-l error output

2001-04-17 Thread Al Hospers

 wasn't there some thread recently about using the ini file to
 write out
 error messages? i've got a bug that appears only when my movie is
 shocked. i'm using the alerthook, alert messages, and the
 tracelogfile,
 and they're all helping, but i thought i remember reading
 about another option...

bhakti

dunno if this is what you mean:

go to the Direct-L archives here

  http://www.mcli.dist.maricopa.edu/cgi-bin/search_digest.pl

search on

  debugging shockwave hospers

in Feb of 2001

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




RE: lingo-l downloading media

2001-04-16 Thread Al Hospers

 if i make a cd rom that has high quality video should
 i ask the user to download the movie files to their
 hard drive?

not unless you want to make them mad.

 where exactly should they download them
 to on pc and mac.

see previous

 then do i need to externally link
 to the files?

you should play them in the score. that's how it is done. it's in the
manual...

 what if they download them to the wrong place?

see question 1

 will this make the movies run better?

perhaps a little, but only if their CD is really slow. don't worry about it.

 shoould
 i make different versions of say quicktime and windows
 media for cross platform reasons?

do them all as Quicktime  be done with it. besides, if you have high
quality video you likely won't be able to have 2 sets of the same video in 2
different formats on 1 CD.

have you looked at any commercial CD's which contain video? that might be a
useful exercise. in fact I highly recommend it.

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




RE: lingo-l how to corrupt a cast

2001-04-15 Thread Al Hospers

 I was able to reproduce this aberrant behavior--with the same
 movie--under
 Mac OS 9 and under Windows, both with D8.

if you can reproduce this behavior you should certainly be sure to send it
in as a bug report ASAP as 8.5 is coming out very soon!

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




RE: lingo-l New Error On Script for Scaling Graphic

2001-04-14 Thread Al Hospers

 I would appreciate help to solve this.
 I will need to have a way to scale some of my bitmaps.

page 415 Lingo Dictionary - rect(sprite)



[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 New Error On Script for Scaling Graphic

2001-04-14 Thread Al Hospers

 That is why I was asking what that error message was signalling.
 That is what I couldn't figure out OR read about.

 One parameter expected
 wide=sprite(1,"pictures").width

it means that sprite(1,"pictures") doesn't mean anything. a sprite number is
only 1 parameter!

 OR read about

p 473 Lingo Dictionary

 sprite(whichSprite).property

do you have the documentation to the program?



[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 New Error On Script for Scaling Graphic

2001-04-14 Thread Al Hospers

 I thought the script was considering the member and not the
 sprite. I wanted
 to work with membernum 1 in castlib. "pictures"

then put member(1, "pictures") not sprite(1, "pictures")

 From: "Al Hospers" [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: RE: lingo-l New Error On Script for Scaling Graphic
 Date: Sat, 14 Apr 2001 15:10:01 -0400
 
   That is why I was asking what that error message was signalling.
   That is what I couldn't figure out OR read about.
 
   One parameter expected
   wide=sprite(1,"pictures").width
 
 it means that sprite(1,"pictures") doesn't mean anything. a
 sprite number
 is
 only 1 parameter!
 
   OR read about
 
 p 473 Lingo Dictionary
 
   sprite(whichSprite).property
 
 do you have the documentation to the program?
 
 
 
 [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


 [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 Lingo Cowboys (was timer)

2001-04-12 Thread Al Hospers

 Can you imagine, trying to reconcile a totally OOP approach
 with a linear
 score? The brain hurts just thinking about it :)

rant
sorry, but I just don't agree with this. coding-wise I use a very OOP
approach to things. however, many times it makes absolutely no sense to
approach some animated portion of a project in a single frame OOP
Lingo-controlled manner. unless of course you just want to rack up the
billable hours.

what I mean is, use the right approach for a given job. Director does a
pretty good job at playing linear animations, use it for that when it is
appropriate. it also does a moderately good job at the OOP encapsulated code
thing. use that when appropriate.

appropriate is the operative word here. I do a lot of work fixing and
enhancing projects done by others. it's probably 40% of my business. I see
way too many ones done by "Lingo Cowboys" who insist on doing everything in
1 frame and OOP code. it's is generally overly complex  way hard to work
on. (not to mention that there are usually no comments  bad variable
names - but that's another rant grin)
rant/

just my NSHO,

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




RE: lingo-l Cd sound

2001-04-10 Thread Al Hospers

 I need the script buttom for stop and play the sound on Cd. I
 have buttoms
 with sound.go to the Penworks site. look for the CDXtra. it's free.

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




RE: lingo-l Cd sound

2001-04-10 Thread Al Hospers

go to the Penworks site. look for the CDXtra. it's free.

sorry this was not clear before

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




RE: lingo-l Chat Rooms

2001-04-10 Thread Al Hospers

 I'm trying to write a Chatroom in Director.
 Does anyone know of any scripts that are available.
 or any information on how to start.

you might want to go to the Macromedia site  search on MultiUser Server.
there is lots of sample code available. that's how I would start!

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




RE: lingo-l NetDone - MacOS

2001-04-10 Thread Al Hospers

 Indeed, I do have something very similar to that. Here's a snippet:
 Again -- my problem only occurs on the MacOS side of things.
 Everything is
 fine on the PC side.

SNIP

can you type in a getNetText in the message window using a file in a known
location  get a netID and then do a netDone(gNetID) and then get a valid
netTextResult on the Mac? if you cannot then I would look at the Mac's
connection to the Internet.

also, are you testing this in a DSWMEDIA folder?

this stuff works.

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




RE: lingo-l The number of sound channels

2001-04-10 Thread Al Hospers

 I have always read that there are only 4 sound channels, 2
 accessible by the
 score and 2 by lingo.  But today I became suspicious and
 tested to see how
 many there are.  There are 8!  (6 accessible by lingo.)  Why
 aren't these
 documented?  Does anybody know if there's anything special about the 4
 undocumented ones(5, 6, 7,  8)?

they're kinda documented in the Director.ini file

;MixMaxChannels=8
; Maximum number of channels supported by the sound mixer. The actual
; number you can mix depends on the processing power of your computer.
; Must range from 1 to 8.

interesting...

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




RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Al Hospers

 I'm wondering if there is a way or of any xtras that will
 allow you to write
 Rich Text Format files and HTML files.

well an HTML file is just text, so there is no reason why you could not use
FileIO to write an HTML file.

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




RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Al Hospers

 If you stored them as HEX then you could write them out as
 text files and
 not have to worry about any binary files. But if you are familiar with
 binary then that would also work. In general, if you have the
 files as blobs
 of HEX or binary then yes your idea would work.

Hi guys,

If you need to read or write binary files then the BinaryIO Xtra from
UpdateStage may be what you need. BinaryIO was designed to read, write and
edit binary files on the Mac and the PC. As you know, Director's built-in
FileIO Xtra was designed to work with text files. You cannot use it to
successfully read binary files because data in the binary file will look
like formatting characters to FileIO. BinaryIO contains many methods for
reading and converting data values. These methods aid in creating or reading
media files to conform to a file specification.

BinaryIO can handle Mac, as well as PC files, with ease. There are several
methods that enable Mac-specific operations, such as writing to the data or
resource fork and setting Finder attributes.

 Price: $149.00
 Platforms: 32-bit Windows,Win 31,Mac
 Director versions supported: 5,6,7,8

For more information or to purchase BinaryIO go to

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

Cheers,

Al Hospers
Marketing Associate
UpdateStage
alatcambersoftdotcom
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: lingo-l translating keystrokes

2001-04-08 Thread Al Hospers

 BTW, regarding the joke in your signature, there's  a longer version.

 Professor: There are languages where a double negative makes
 a positive.
 A Russian student: Net, net! (an emphatically negative statement)
 Professor: But there are no languages languages where a
 double positive
 makes  a negative.
 A Russian student: Da, da... (equivalent to Yeah, right!)

thanks Slava, that's funny.

Al



[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 Neterror text?

2001-04-06 Thread Al Hospers

 Is there a way to show the neterror() explanation rather than
 the number?

something like this is what I use...

 LINGO FOLLOWS

n NetErrorString me, errorCode

  case (errorCode) of
"OK": return "OK"
0: return "OK"
4: return "Bad MOA Class"
5: return "Bad MOA Interface"
20: return "Internal error"
905: return "Bad URL"
4144: return "Failed network operation."
4145: return "Failed network operation."
4146: return "Connection could not be established with the remote host"
4147: return "Failed network operation."
4148: return "Failed network operation."
4149: return "Data supplied by the server was in an unexpected format"
4150: return "Unexpected early closing of connection"
4151: return "Failed network operation."
4152: return "Failed network operation."
4153: return "Failed network operation."
4154: return "Operation could not be completed due to timeout"
4155: return "Not enough memory available to complete the transaction"
4156: return "Protocol reply to request indicates an error in the reply"
4157: return "Transaction failed to be authenticated"
4159: return "Invalid URL"
4160: return "Failed network operation."
4161: return "Failed network operation."
4162: return "Failed network operation."
4163: return "Failed network operation."
4164: return "Could not create a socket"
4165: return"Requested Object could not be found (URL may be incorrect)"
4166: return "Generic proxy failure"
4167 : return "Transfer was intentionally interrupted by client"
4168: return "Failed network operation."
4242: return "Download stopped by netAbort(url)"
4836: return "Download stopped for an unknown reason."
  otherwise
return "unknown error"
  end case
end



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




RE: lingo-l Neterror text?

2001-04-06 Thread Al Hospers

 Thanks Al; I just thought there'd be a built in thing rather
 than typing out
 all that...but at least you did it FOR me!

you're welcome. you're right that it would be nice if there was a verbose
setting for the error codes tho.

cheers,

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




RE: lingo-l diplay of html in projector

2001-04-04 Thread Al Hospers

nik wrote:

 I am part of team putting together a Kiosk (including
 touchscreen) for the postoffice and am wondering how to best
 display html on stage. top and bottom of the stage aill be
 navigation bars done in flash, inbetween web xtra sprite
 dsiplaying styled xml. That seems to work fine on most occasions.

 Problem: On some screens use a virtual keyboard done in flash
 that pops up frm th bottom nav bar. this is used to populate
 forms in the html displyed by the web xtra - or so we hope.
 we cannot seem to be able to send events from the flash
 keyboard to the html page with the form fields.

 does any one have any ideas or experience with this? i am
 currently exporing some hunches regarding MasterApp?

I don't know why you are architecting this mixing HTML, Flash  Director but
I personally would not do it that way. do the whole thing in Director or at
least Shockwave. if you want to use cute Flash stuff do so, but do all the
keyboard input stuff in Director. forget trying to communicate reliably
between Flash  HTML. once you have the input in the form you built in
Director, this is a piece of cake since the user can just type into fields
on the stage, then collect it all up ans just send it to your CGI script on
your server.

there is an article on DOUG about sending stuff to CGI scripts on the
server. search for CGI.

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




RE: lingo-l fileIO headaches woes

2001-04-03 Thread Al Hospers

 is fileIO not
 allowed in movies
 over the net? if so, is it simple to find an alternative?

no fileIO is not allowed in Shockwave and no there is no alternative. if you
need to save something like user preferences than you can do it using
getPref and setPref. you could store data on a server as well usinv CGI
calls. that's about it.

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




RE: lingo-l Re: fileIO headaches woes

2001-04-03 Thread Al Hospers

 i think maybe cgi calls are more what im looking for. i dont
 need to store any information on the user computer; i just
 need to read  write txt from  to the server. how would i go
 about implementing cgi in a shockwave movie?

go here

  http://www.director-online.com/

search on CGI. there are 4 articles that will help you get started.

good luck

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




<    1   2   3   4