PDA

View Full Version : Session Variables



JamieMX
April 9th, 2005, 09:52 AM
Hi Everyone,

I am currently using to in a sound player in an on the homepage of an html/asp website. At the moment it plays some welcome audio when the visitor arrives on the site (index.asp), however it does get an little annoying when it plays everytime you go onto the homepage.

Is their any way of setting a session variable in actionscript that only plays the audio once when using the site?

Thanks in advance
j

ghjr
April 9th, 2005, 02:36 PM
Store a cookie (ASP) or a Shared Object (flash) on the users computer so that way you can check to see if it's his first time accessing the site or not.

EDIT: If you want it to play everytime the user logs in, but just once, then start a session with ASP wheven he logs in and when he accesses the page again if the session is created don't play the sound.

Cheers!