This is a discussion on "Linking pics with actionscript" within the Flash & Multimedia Forum section. This forum, and the thread "Linking pics with actionscript are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
Linking pics with actionscript
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
Hi, I have been trying to get a digital clock to work but to no avail because I can't get the simple graphic of the clock to work with the script. Can anyone help an idiot?
Kevin |
|
|
|
||||
|
Re: Linking pics with actionscript
we may be able to help if you could post the code or some more information?
|
|
|||
|
Re: Linking pics with actionscript
Hi,
Thanks for taking the time. Here's is the code used which I think is allright. its the linking to a graphical image of a clock that I am unable to achieve. |
|
|||
|
Re: Linking pics with actionscript
This code was inserted in the actionscript frame 1 (Hours)
|
|
|||
|
Re: Linking pics with actionscript
eeerm what code?
|
|
|||
|
Re: Linking pics with actionscript
Sorry, Forgot to paste code:
var dt, timeint; dt = new Date(); ch = dt.getHours(); cm = dt.getMinutes(); cs = dt.getSeconds(); timeint = setInterval(timer, 1000); function timer() { dt = new Date(); ch = dt.getHours(); cm = dt.getMinutes(); cs = dt.getSeconds(); } |
|
|||
|
Re: Linking pics with actionscript
Hello
I've checked Your code. It works...but I don't know what is a reason of creating 2 Date's objects... Perhaps I don't understand the problem. I've tried also this: function timer() { var dt ch = dt.getHours(); cm = dt.getMinutes(); cs = dt.getSeconds(); trace(ch + ":" + cm + ":" + cs + " it works!"); } timeint = setInterval(timer, 1000); |
|
|||
|
Re: Linking pics with actionscript
Sorry... this one...
var dt function timer() { dt = new Date(); ch = dt.getHours(); cm = dt.getMinutes(); cs = dt.getSeconds(); trace(ch + ":" + cm + ":" + cs + "-it works!"); } timeint = setInterval(timer, 1000); what is the problem?? |
![]() |
| Tags |
| linking, pics, actionscript |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| post pics of your work area | alexgeek | Webforumz Cafe | 41 | Feb 29th, 2008 15:09 |
| 2nd attempt, site but no pics! | jotto | Starting Out | 6 | Sep 14th, 2007 00:02 |
| Member Pics! | Daniel | Webforumz Cafe | 16 | Apr 3rd, 2007 21:41 |
| Member pics | Daniel | Webforumz Cafe | 81 | Dec 13th, 2006 13:36 |
| Actionscript linking to HTML parameters, can it be done? | Zhan | Flash & Multimedia Forum | 12 | Jul 25th, 2005 21:14 |