Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: Re: FLASH: Flash variable posting to ASP
From: Helen Triolo
Date: Tue, 30 May 2000 14:43:21 +0100

Stephen Tan wrote:
>
> I'm trying to set up a sendmail from ASP, and here's where I encountered a
> problem.
>
> On (Release)
> Get URL
> ("http://maxisnetwww:5000/ads/chicken_form.asp?name="&your_name,
> window="_blank", vars=POST)
> End On
>
> Why will this working Flash?
> On (Release)
> Get URL ("http://www.mysite.com/myform.asp?name="&game_name,
> window="_blank", vars=POST)
> End On
> (Output -> http://www.mysite.com/myform.asp?name=spacejunkie)
>
> And this gives me a syntax error in Flash (Hint: has something to do with
> more than two " )?
> On (Release)
> Get URL
> ("http://www.mysite.com/myform.asp?name="&game_name"&score="&game_score"&lev
> el="&game_level,
> window="_blank", vars=POST)
> End On
> (Trying to get output ->
> http://www.mysite.com/myform.asp?name=spacejunkie&score=94&level=3)
>
> Anyone has any work around for that?

Stephen,

If you're using vars=POST, then Flash will automatically send whatever
variables are on the current timeline to the asp file, so you don't need
to give them as parameters in the call. If you've defined variables
game_name, game_score and game_level in the Flash movie, then just do

On (Release)
Get URL ("http://www.mysite.com/myform.asp", window="_blank",
vars=POST)
End On

and they'll be sent. (Retrieve them with request.form, not
request.querystring in asp).

Regards,
Helen
----------------------------------------
helen triolo � http://i-technica.com
designerati-technica [dot] com � 301-424-6037
----------------------------------------

flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
World Animation Celebration - Big Internet Animation Pow Wow Discount Offer

Register before May 25 mention flasher and save 25%!! www.wacfest.com

Be discovered, get a job or have your web series picked up. A big talent search for Shockwave
and Flash animators is happening May 30-June 4 in Hollywood. Featuring Rob Burgess, Matt
Groening, Brad Bird and more. www.wacfest.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  FLASH: Eval (variable), Stephen Tan
  FLASH: Flash variable posting to ASP, Stephen Tan

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]