i know to create digital clock using flash, but can anyone please tell me how to create hours - minutes - seconds separately..
12:30:56:pm this is what i can create, but i need 12 separately similarly 30 - 56 - pm separately
Search Result
Collapse
16 results in 0.0033 seconds.
Keywords
Members
Tags
-
how to create digital clock using flash
-
matt415 started a topic on (release){ _root.gotoAndPlay Not Working when I import the .swf on main sitein Flashon (release){ _root.gotoAndPlay Not Working when I import the .swf on main site
Ok, this code works fine on my .swf file when I test it out in Flash. It doesn't work anymore when I externally load the .swf into the main site. I believe when imported it doesn't recognize the _root anymore.
I have this movie clip with the navigation buttons in it. I want the buttons to travel to the labels on scene 1 when clicked and they do. Again, the code is acting fine as far as this .swf is concerned. the problem arise... -
How to delay the timing on one slide out of 5 slides?
I've set up a timer for 5 slides flash banner including 5 buttons and play/pause button with infinite loop. Now I want to make the fifth slide stay twice as long as the other four. Can you help me on this? Below is the script.
<CODE>
timer = 1;
onEnterFrame = function(){
if(_root.autopl ay == 1) {
timer = timer + 1;
if (timer > 210)... -
Changing the animation on a movie clip? (AS 2.0)
Basically, I'm trying to animate movement on a movieclip made up of segments that loop (so, Frame's 1->8 are an idle animation, while Frame's 9-16 are a running animation.)
So far, while the movement works no problem, the animation change doesn't...
Code:if (Key.isDown(Key.LEFT)) { this._x -= 5; if (this.currentFrame <= 9) { if (this.currentFrame <= 8)
-
Rey Sagana started a topic How to get variables from FLASH through $_POST method then submit to Aweber?in PHPHow to get variables from FLASH through $_POST method then submit to Aweber?
Hi Everyone,
Anybody who can help me with this? I am trying to get variables from a flash quiz application and submit them to aWeber.com for initiate a subscription. I has several attempts at doing this but to no avail. Anyone who can help me?
The instruction provided by aWeber is that the method should be POST and that the action must be set to "http://www.aweber.com/scripts/addlead.pl". and the inputs should... -
Microphone Access and recording sound to webserver
For the website , i need my members to record their voices instead of writing. I have searched about it and learnt that it can be done using applet or flash. If you have an experience or any knowledge about how to save the sound to webserver using some kind of flash module or any other way, please share :), where should i begin? -
Javascript function that works like actionscript's normalize(1)
I need a formula that returns normalize numbers for xy point - similar to actionscript's normalize() function.
Code:var normal = {x:pt1.x-pt2.x,y:pt1.y-pt2.y}; normal = Normalize(1) // this I do not know how to implement in javascript.
-
reference movieClip inside another movieClip
I have my general movie clip called myscene_mc .
Inside it I've placed other 2 movie clips called man_mc and insect_mc...
Now,my man_mc contains another movieclip which is empty and i call it forward_mc...
Now,can I use forward_mc and insect_mc to check if they are intersecting using something like that ::
trace(man_mc. forward_mc.hitT est(insect_mc)
I hv tried this bt... -
Open Source Code for Embeddable Flash Image Editor
I have a need for an embeddable flash box for a website that I am developing. The client is having a coffee cup design contest. They would like to have a flash box that does the following.
1) Loads a template picture of a coffee cup that cannot be altered or moved.
2) Allows the user to add text to the coffee cup
3) Allow the user to draw freeform lines on the coffee cup in various colors
4) Allow the user... -
Problem accessing/redirecting URL protected by digest authentication
Hi there, I appreciate any help on the following issue. I can't seem to find any other similar topic.
(CS4, ActionScript 3.0, Flash 10)
I have a SWF embedded within a page that is protected by digest authentication. To access this page, the browser asks for username/password. So far so good, the SWF works fine.
Now, within that SWF, the script uses URLLoader to POST to another URL on the same server (but... -
variable as POST key with URLVariables in AS3?
Hello,
I have an array of data objects that I would like to send from my .swf to a server-side script. I would like to loop through the array and assign a variable key name to each name-value pair, for example:
Code:myVars = new URLVariables; for(i in objectArray){ var keyName = 'obj_' + i; myVars.keyName = objectArray[i].data; }
-
flash audio player that will play .wav and .mp3 using specified url
Hello,
I am trying to create a flash audio player that will play .wav and .mp3's by using a url the user will provides the player.
Any help would be greatly appreciated. Thanks
Regards,
Catalyst -
Help: Flash Email Contact Form / AS 3
I am trying to create a Email form in the Contact secion of my flash web site. My website uses Action Script 3. What is the bes way to go about doing this. Any help would be greatly appreciated. Thanks .
Regards,
Catalyst -
Calling JavaScript from ActionScript
Hello,
I'm beginner to actionscript, I've defined following function in script tag of page
Code:<script type="text/javascript"> function showMessage(){ alert("javascript says: Hello ActionScript"); } </script>
what i've already wrote is:
Code:import flash.external.ExternalInterface;
-
[CS3](AS2) How to make entire movieclip play using 'key.isDown'
This is a script for a character that walks in 4 directions. That works fine. I have also added other random movieclip animations for other keystrokes.
I want a movie clip to play through when a key is pressed. Right now the movieclip only plays while the key is being held. How do I get it to continue to play even if the key is released? I am not sure if I need to add something to my action script or change it entirely.
...