ActionScript 3.0 :: Telling If An User Is Online?
Feb 21, 2009
tell if a user is online, once they log in I set something in the database that say's they're online, when they log out change that. And set something up so they will d/c after 5-10 minutes of inactivity in case they log off any other way besides hitting "log out" However, I'm not exactly sure how I would do this, because the only way that I can think of wouldn't work, because say if they just closed their browser, then it would stop running my application, and thus stop running my check to check for inactivity..
how I can make sure if a user is already logged in accurately?
View 2 Replies
Similar Posts:
Feb 20, 2009
In a game, how would I go about keeping records if a user is online or offline? I know when they logged in it could set something in the database that would indicate that they are online, however how would I know when they logout in any other method than pressing the "logout" button? Say if they just closed their browser..
View 2 Replies
Jul 31, 2009
I'm working on an online editing website. how to receive the image after the user edit it (change colours, add text) in to my email (as a PDF, JPEG, PNG,...??)?
View 2 Replies
Sep 20, 2011
I'm working on e-learning project using ASP.NET,C#,SQL Server and Windows XP.I'm developing an interactive videoconferrencing using WebCam and at the same time i want to share the user desktop screen. Through FMS videoconferrencing(WebCam) is working fine. But i'm unable to share screen to online user
View 3 Replies
Feb 15, 2010
whats the best way to track user clicks within a swf running online(AS3)?
View 2 Replies
Sep 13, 2009
I just launched the second version of my Flash chat framework for developers.I believe I have succeded creating one of the easiest and most customizable Flash chat components on the web .Check out the DEMO chatroom >>
View 6 Replies
Apr 14, 2010
I have developed a simple chat room but how do I go about showing who is online and what happen if the user close the web browser without disconnect, will the user name in the online list be remove immediately? I use mx.messaging.channels.StreamingAMFChannel and set <subscription-timeout-minutes>3</subscription-timeout-minutes>
View 1 Replies
Dec 29, 2011
Both F4V and MP4 files have "video/mp4" as their MIME type. However, I'm working on a Wordpress blog where I want uploaded F4V files to be shown using a Flash video Player, and MP4 files using the HTML5 [video] tag. Obviously, I can't tell them apart using their MIME type. Is there any other way I could do it, aside of the file extension?
View 1 Replies
Nov 6, 2003
Is there a way to tell a movie clip to way a number of frames from a specific action being executed (say a button being pushed) before it starts playing?
View 2 Replies
Mar 29, 2009
I have got a button that is disabled and an alpha Tween that last for 300 frames, how do I enable the button when the Tween has finished?
View 4 Replies
May 10, 2010
I am trying to make a little application to allow to record actions within a Flash and Silverlight application. In such manner that you can compile your interactive application in test-mode and then be able to click on elements which then passed the action to Selenium IDE which then adds this command to the testcase.I am curious if this even possible and how I can achieve this in Firefox?
View 1 Replies
Nov 3, 2009
From my main timeline actions, how can I tell a dynamic text box inside a movieclip to update? I have a movie clip with the dynamic text box called catalog. The instance name for the text box is catalogtext. On the main time line, I am using a loop to repeatedly attach the catalog movie clip. I want the dynamic text to show the value of i, and each time the movie clip is reproduced, increase by 1 each time.
Here is my current attempt:
for (i=1; i<=9; i++) {
container.attachMovie("catalog","catalog"+i+"_mc", i+200);
mycatalog_mc = container["catalog"+i+"_mc"];
[code]....
Everything works fine, but the text box won't show the value of i. I must not be calling it correctly?
View 2 Replies
Sep 23, 2010
I have a shell swf that is loading a swf. How do you have the loaded swf tell the parent loader to unload itself after the loaded swf finishes playing?
View 3 Replies
Jul 7, 2004
I have a parent movie that loads a swf(events.swf) file into a movie clip with an instance name of container. (container.loadMovie("events.swf");) It loads fine and seems to work great.
events.swf has a movie clip inside of it called design_mc that contains the content. In that movie clip I have a button that needs to target the parent movie and tell it to gotoAndPlay("eventsout"); which is on the _root of the parent movie. However, anything I try will not target the parent movie. I've tried _parent, _parent._parent, _root, and even assigning the parent movie this._lockroot = true; . Nothing seems to target the parent movie.
View 4 Replies
Feb 28, 2007
I have a main movie(main.swf). I've loaded a movie into it(loaded.swf). I need the loaded movie to finish playing once a button is clicked in the main.swf. So basically i need something like
when a button in the main.swf is pressed, finish playing "loaded.swf"
View 6 Replies
May 23, 2002
Is there a way of telling a null value in the _droptarget property?
Basically I've got 9 draggable objects, and what I want them to do is if there is no _droptarget when you release the drag, flick back to it's riginal position.
View 2 Replies
Apr 29, 2009
I'm moving a movie clip using actionscript (as2) instead of a motion tween (because I want to save file size) and I have this code on the first frame of the main timeline ("stone" is the movieclip instance name) and it tells the movie clip how many pixels to move in the x direction:
Code:
xTargetstone = 600;
I have this code on the movie clip itself ("stone" is the mc instance name) to handle the actual moving of the movie clip:
Code:
onClipEvent (enterFrame) {
xstone = getProperty(_root.stone, _x);
movestone = _root.xTargetstone - xstone;
setProperty(_root.stone, _x, xstone + (movestone/5));
}
The movement works fine, but the issue is that it starts out fast and then slows down over time (even though that amount of time is small). The result is that the movie clip seems to wiggle and vibrate before it stops. Is there a way for me to change the code so that it doesn't wiggle and vibrate? perhaps something with the math I'm just not totally understanding? I would like a nice consistent motion from start to finish, while being able to set the time it takes to move etc.
View 4 Replies
Feb 16, 2004
I am making a game and need to know how much a particular mc is covered by other mc's placed randomly on the screen. Is there a way to tell how much is left seen of the mc as it's slowly being covered by other mc's?
View 3 Replies
Jul 7, 2004
I have a parent movie that loads a swf(events.swf) file into a movie clip with an instance name of container.
(container.loadMovie("events.swf");) It loads fine and seems to work great.events.swf has a movie clip inside of it called design_mc that contains the content. In that movie clip I have a button that needs to target the parent movie and tell it to gotoAndPlay("eventsout"); which is on the _root of the parent movie. However, anything I try will not target the parent movie. I've tried _parent, _parent._parent, _root, and even assigning the parent movie this._lockroot = true; . Nothing seems to target the parent movie.
View 4 Replies
Feb 12, 2002
anyway to write a piece of code telling a movie to goto a random frame label?
View 4 Replies
May 3, 2010
I'm trying to keep my code succinct by naming my section labels the same as the buttons that navigate to them. I've also put the contents of each page in a movie clip of the same name with suffix _mc. The following code successfully traces the name of the movie clip, but how do I tell the compiler that I want to reference the movie clip whose name is held in the string, rather than the string itself.
function clickSection(evtObj:MouseEvent):void {
currentContent = currentLabel + "_mc";
trace(currentContent);
currentContent.alpha = 0;
gotoAndStop(evtObj.target.name);
mainNav_mc.gotoAndStop(evtObj.target.name);
View 3 Replies
Jan 26, 2011
I'm writing a Flex video player with a "slow advance" button, and my first approach is to simply toggle between play() and pause() on a timer. I'd like to say something like
if (video.isPlaying) {
video.pause();
} else {
video.play();
}
But I can't find anything like an 'isPlaying' property.
View 2 Replies
Oct 12, 2010
I have a movie called book_mc that is on scene1 the movie has several labels (red, green, blue, and yellow) in it's timeline. Also, on scene1 I have a button called book_but. If book_mc is on the label green of it's timeline. I want the button press of book_but to make it goto and play yellow. If book_mc is not on the green label of it' timeline I want the button press of book_but to make the timeline goto and play red.
View 6 Replies
Aug 28, 2004
I have 2 swf's one loaded in level0 and another loaded in level1 (called from the first one). I want to put a button on the second swf that would control the first one by telling him to go to an exact scene and frame just like the gotoAndPlay action.
View 5 Replies
Feb 28, 2012
I have a movieclip on its own layer, with the intention of using it as a background to all the other layers. It is simply a black square with the alpha at 60%. There must be a relatively simple way of telling this movieclip to either tile or stretch to cover the whole of any page it loads into.
View 1 Replies
Jun 23, 2004
I was thinking the other week - wouldn't it be great to have a flash clock that not only tells a classy analogue time but also, like a church clock, gives out bell noises when the hour is reached, an also chimes the number of hours the time corresponds too. So at 1pm/am it will chime once, and at midnight you get 12 chimes and so on, I'm sure you get my meaning. I'm not great when it comes to working with sound, infact I've never added much more than a custom click noise on a button. How to go about this? I've attached a nice church bell noise for y'all just incase.
View 12 Replies
Jan 2, 2012
The flash player has a little window that can be opened (similar to flash->settings) telling the user to update the player if the movie loaded is for a more recent version. How can you instruct the player to do this? ITV have managed it with their catchup-tv player.
Context: I am allowing users to copy flash into their PowerPoint presentations and would like to tell them to update their flash player if necessary. I am not embedding a web page in the power point so no JS can be run for checking etc (because I know this is not necessary).
View 3 Replies
Apr 4, 2007
I am trying to tell flash from within a movieclip to start playing a specific frame within the main timeline only after it has finished playing the movieclip backwards. I can get the movieclip to play backwards fine but it's getting the main timeline to start from frame 1 which doesn't work. I have the following code on the first frame of the movieclip (which is called video) but it doesn't seem to do anything.[code]
View 1 Replies
Apr 12, 2009
i have a movieclip within a movieclip within a movieclip... i want to simply tell flash to play that movieclip once i click on it.. however, i get an error saying "1120: Access of undefined property tl_character" when i try to publish the file..[code]i know there might be a solution by using a custom class for "police1" but i'd like to know how i could play that movieclip using a function thats written on the main timeline..
View 2 Replies
Jan 21, 2009
I've got an object (an instantiation of my own class that extends Sprite) being created in the actions for a frame, like this:
Code:
import Scripts.CFoobar;
var foobar:CFoobar = new CFoobar();
[code]........
View 2 Replies