Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Addie W webforumsuser@macromedia.com #1
email program wants a list??
mail program isn't working it says that there's a list required where there is already a list.
getRandomState
--randomZoneNumber = random(4)
randomZoneNumber = gSerialPort.readString()
if randomZoneNumber = 0 then go to frame 12
zoneList = ["PST","MST","CST","EST"]
chosenZone = getat (zoneList,randomZoneNumber)
that's where it is in the "zoneList" that's apparently not working because "getat (zoneList,randomZoneNumber) doesn't work. So does anyone know what I need to do to get it working again?
if you want to see the actual .dir check out the referring url
Referring URLs
[url]http://gladstone.uoregon.edu/~awagenkn/email.dir[/url]
Addie W webforumsuser@macromedia.com Guest
-
Email program won't send in Windows 2003 - Queue_Manager
Hello, I have a client that just switched to Windows 2003 server. Their website has always run fine under Windows 2000, using an email program... -
Change email program used to send notifications
I need to change the email program that Contribute uses to send draft notification emails. When we send a draft for review and choose to also send... -
actionscript for call email program
I have a flash frame with buttons. I want one of the buttons to start the email program to send a message. I can't seem to find a script that is... -
php Email Program
Does anyone know of a php or even cold fusion based script out there for accessing email that can be customized? Right now I use SquirrelMail... -
How to sent an email from VBScript program under ASP/PWS?
Hello, I am learning ASP/VBScript using PWS under Win98SE. To send an email I need CDO object. In a book I am reading (very old one) it says that... -
Rob Dillon #2
Re: email program wants a list??
Many times Director error messages dont' accurately state the problem.
Sometimes they don't even accurately show the line at fault.
Since your random function can return zero and there is never a zero
item in a list in Director, the problem may be when randomZoneNumber =
0. Your getAt function will be trying to retrieve a non-existant
element from the list.
You could fix that by changing the line above:
if randomZoneNumber = 0 then
go to frame 12
exit
end if
That will end the function at that point and not allow the function to
try and retrieve item zero from the list.
There may be some other problem, I didn't look at the original file.
--
Rob
_______
Rob Dillon
Team Macromedia
[url]http://www.ddg-designs.com[/url]
412-243-9119
[url]http://www.macromedia.com/software/trial/[/url]
Rob Dillon Guest
-
Doug Golenski #3
Re: email program wants a list??
Just a thought, randomZoneNumber seems to be a string, you need to convert
it to an integer to use it in a getAt statement.
hth,
Doug
"Addie W" <webforumsuser@macromedia.com> wrote in message
news:bqeg6v$bhe$1@forums.macromedia.com...there is already a list.> mail program isn't working it says that there's a list required wherebecause "getat (zoneList,randomZoneNumber) doesn't work. So does anyone>
> getRandomState
> --randomZoneNumber = random(4)
> randomZoneNumber = gSerialPort.readString()
> if randomZoneNumber = 0 then go to frame 12
> zoneList = ["PST","MST","CST","EST"]
> chosenZone = getat (zoneList,randomZoneNumber)
>
> that's where it is in the "zoneList" that's apparently not working
know what I need to do to get it working again?>
> if you want to see the actual .dir check out the referring url
>
>
>
> Referring URLs
> [url]http://gladstone.uoregon.edu/~awagenkn/email.dir[/url]
>
>
>
>
Doug Golenski Guest



Reply With Quote

