Petri IT Knowledgebase Forums
 

Petri.co.il forums Home Forums Start Page Forums Frequently Asked Questions FAQ Member List Members List
Go Back   Petri IT Knowledgebase Forums > Windows Scripting > General Scripting
Petri.co.il is happy to award auglan the title of Most Valuable Member !!!
Register Calendar Calendar Search Petri IT Knowledgebase Forums Search Todays Posts Today's Posts Mark Forums Read

Notices

Looking for a Analog Clock Web Part

Looking for a Analog Clock Web Part

this thread has 5 replies and has been viewed 4416 times

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 13th February 2007, 12:03
mulderfox mulderfox is offline
Casual
Casual
 
 Join Date: Oct 2003
  6 month star 12 month star
 Location: Israel
 Posts: 41
 Reputation: mulderfox is on a distinguished road (10)
Question Looking for a Analog Clock Web Part

Hi!
I'm building a wss based intranet site, and I need a Analog clock webpart for it.
Tried google it, but didnt have much luck..

Can anyone help?
If you offer a script, please explain how to implement it into the site.

thanks!
  #2  
Old 13th February 2007, 12:12
tonyyeb's Avatar
tonyyeb tonyyeb is offline
Moderator
 
 Join Date: Dec 2004
  6 month star 12 month star
 Location: Hull, UK
 Posts: 2,182
 Reputation: tonyyeb is a jewel in the roughtonyyeb is a jewel in the roughtonyyeb is a jewel in the rough (283)
Default Re: Looking for a Analog Clock Web Part

When you say web part is it for a sharepoint based site?

WIll a flash object do? There are loads of them about.
__________________
Server 2000 MCP
Development: ASP, ASP.Net, PHP, VB, VB.Net, MySQL, MSSQL - Check out my blog http://tonyyeb.blogspot.com

** Remember to give credit where credit is due and leave reputation points To grant some reputation points to the user that helped you, just click on the little Yin-Yang icon on the right of the user's answer and follow the prompt. where appropriate **
  #3  
Old 13th February 2007, 12:18
mulderfox mulderfox is offline
Casual
Casual
 
 Join Date: Oct 2003
  6 month star 12 month star
 Location: Israel
 Posts: 41
 Reputation: mulderfox is on a distinguished road (10)
Default Re: Looking for a Analog Clock Web Part

If you can point me to a flash player webpart as well as the flash based clock part..

thanks
  #4  
Old 13th February 2007, 12:30
rvalstar's Avatar
rvalstar rvalstar is offline
Senior Member
Guru
 
 Join Date: Oct 2006
  6 month star 12 month star
 Location: Houston, TX
 Posts: 1,303
 Reputation: rvalstar is just really nicervalstar is just really nicervalstar is just really nicervalstar is just really nice (376)
Default Re: Looking for a Analog Clock Web Part

There seem to be a few analog clock web parts on the first page here:



EDIT: Most of the applicable links help you build one. One site is selling them and another promises to post a free flash-based one in the future.
__________________
Cheers,

Rick

** Remember to give credit where credit is due and leave reputation points Click on that post's Yin-Yang icon where appropriate **

© 2006-2013 R Valstar. This post is offered "as is" for discussion purposes only with no express or implied warranty of any kind including, but not limited to, correctness or fitness for use. Nothing herein shall be construed as advice. Attempting any activity based on information in this post is done at your own risk.

Last edited by rvalstar; 13th February 2007 at 12:43..
  #5  
Old 13th February 2007, 12:32
Rems's Avatar
Rems Rems is offline
Moderator
 
 Join Date: Mar 2005
  6 month star 12 month star
 Location: NL
 Posts: 2,267
 Reputation: Rems is a splendid one to beholdRems is a splendid one to beholdRems is a splendid one to beholdRems is a splendid one to beholdRems is a splendid one to beholdRems is a splendid one to beholdRems is a splendid one to beholdRems is a splendid one to behold (903)
Default Re: Looking for a Analog Clock Web Part

A clock in 'flash' like this one ? http://www.text-reader.com/pic/watch_vector2.swf.
or this one: http://www.windowscorner.com/etcetera/clock.swf
Or find more: http://www.google.com/search?q=flash...+clock&spell=1

Use it like the code below, or better copy the object to your own site first
Code:
<html> 
<head> 
</head 
<body alink="#ff0000"> 
<div align="center"> 
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ID=FlashMovieWIDTH="100%"  HEIGHT="100%" align="center"> 
<PARAM NAME=movie VALUE="http://www.text-reader.com/pic/watch_vector2.swf"> 
<PARAM NAME=quality VALUE=high> 
<PARAM NAME=wmode VALUE='transparent'> 
<PARAM NAME=scale VALUE='showall'> 
<PARAM NAME=bgcolor VALUE="black"> 
<EMBED src="http://www.text-reader.com/pic/watch_vector2.swf" quality=highbgcolor=#FFFFFF WIDTH="400" HEIGHT="400"NAME="myMovieName" ALIGN="center" TYPE="application/x-shockwave-flash"PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> 
</EMBED> 
</OBJECT> 
</div> 
</html>
\Rem

Last edited by Rems; 16th February 2007 at 00:00..
  #6  
Old 13th February 2007, 13:05
rvalstar's Avatar
rvalstar rvalstar is offline
Senior Member
Guru
 
 Join Date: Oct 2006
  6 month star 12 month star
 Location: Houston, TX
 Posts: 1,303
 Reputation: rvalstar is just really nicervalstar is just really nicervalstar is just really nicervalstar is just really nice (376)
Default Re: Looking for a Analog Clock Web Part

Thanks Rems.

I uploaded the SWF into my SharePoint site and linked it to a Page Viewer Web Part per this post on flash Animation:

http://msd2d.com/Content/Tip_viewite...6-574E05F95945

Quote:
This is SO simple but a nice tip for easy visual enhancements of your portal site. Create your animation and save it as “yourfile.SWF” to a portal DocLib. (include a flashcheck if necessay). Now create a -Page Viewer WebPart- and simply link to the file. Note: since there are NO width and height tags the animation will shrink when the page resizes (use the webpart width-and height-properties to prevent unwanted effects).

Somehow the 'normal' way of calling an swf file through the object tag does not work. Can anyone explain? Does it have to do with safety controls?
__________________
Cheers,

Rick

** Remember to give credit where credit is due and leave reputation points Click on that post's Yin-Yang icon where appropriate **

© 2006-2013 R Valstar. This post is offered "as is" for discussion purposes only with no express or implied warranty of any kind including, but not limited to, correctness or fitness for use. Nothing herein shall be construed as advice. Attempting any activity based on information in this post is done at your own risk.
Closed Thread


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Cisco Routing Quiz - part 1 daviddavis Cisco Certification Track 6 18th February 2012 08:40
Cisco Routing Quiz - Part 2 daviddavis Cisco Certification Track 9 18th June 2010 22:23
LAN/Internet (DSL) slower than an analog modem tk1 Windows 2000 Pro, XP Pro 22 6th February 2007 05:13
Pocket PC Summer clock (Daylight Savings Time or DST) in Israel for 2006 Julian_Satran Misc 2 6th July 2006 09:39
win98 clock meni_k1 Windows 2000 Pro, XP Pro 0 31st October 2005 15:28


All times are GMT +3. The time now is 08:22.

Steel Blue 3.5.4 vBulletin Style ©2006 vBEnhanced
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
 

Valid XHTML 1.0!   Valid CSS!

Copyright 2005 Daniel Petri