Creating a clock in FileMaker

23 messages Options
Embed this post
Permalink
1 2
Bob Patin

Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
Hello all,

Someone on Twitter asked if there were any readymade clocks in  
FileMaker, which got me to thinking about how I would go about  
creating one. After fiddling with it all the way through a rather  
boring movie, I ended up with a pretty neat little FileMaker-based  
clock, which you can read about and download here:

http://www.longtermsolutions.com/article.php?r=14

It's fully unlocked and you're welcome to use it any way you'd like;  
comments welcome!

Bob Patin
Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Richard DeShong

RE: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
Thanks Bob, cool stuff.

-----Original Message-----
From: Bob Patin Sent: Saturday, October 17, 2009 8:20 AM

Hello all,
Someone on Twitter asked if there were any readymade clocks in  
FileMaker, which got me to thinking about how I would go about  
creating one. After fiddling with it all the way through a rather  
boring movie, I ended up with a pretty neat little FileMaker-based  
clock, which you can read about and download here:
http://www.longtermsolutions.com/article.php?r=14
It's fully unlocked and you're welcome to use it any way you'd like;  
comments welcome!


_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
Thanks Richard, it was fun to play with.

I should mention that it wasn't conceived as something that would have  
a lot of real-world usefulness; I was thinking about the various ways  
to do a clock in FileMaker--web viewer, PHP, script trigger--and  
decided to see how FileMaker would behave when told to refresh a  
container field every quarter-second.

I wrote it last night in front of the TV, so today's the first chance  
I've had to let it run while working in another database, and I must  
say, FileMaker handles all the ontimer events very well. Other than  
some cursor-blink, I don't even notice that the script is being  
triggered.

Anyway, glad you liked it... :)

Bob Patin
Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
On Oct 17, 2009, at 1:43 PM, Richard DeShong wrote:

> Thanks Bob, cool stuff.
>
> -----Original Message-----
> From: Bob Patin Sent: Saturday, October 17, 2009 8:20 AM
>
> Hello all,
> Someone on Twitter asked if there were any readymade clocks in
> FileMaker, which got me to thinking about how I would go about
> creating one. After fiddling with it all the way through a rather
> boring movie, I ended up with a pretty neat little FileMaker-based
> clock, which you can read about and download here:
> http://www.longtermsolutions.com/article.php?r=14
> It's fully unlocked and you're welcome to use it any way you'd like;
> comments welcome!
>
>
> _______________________________________________
> FMPexperts mailing list
> [hidden email]
> http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
dwdc

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink

On Oct 17, 2009, at 11:50 AM, Bob Patin wrote:

> I should mention that it wasn't conceived as something that would  
> have a lot of real-world usefulness; I was thinking about the  
> various ways to do a clock in FileMaker--web viewer, PHP, script  
> trigger--and decided to see how FileMaker would behave when told to  
> refresh a container field every quarter-second.
>
> I wrote it last night in front of the TV, so today's the first  
> chance I've had to let it run while working in another database, and  
> I must say, FileMaker handles all the ontimer events very well.  
> Other than some cursor-blink, I don't even notice that the script is  
> being triggered.
>
> Anyway, glad you liked it... :)

Ahhh...  This reminds of the good old days when I was building games  
in FileMaker Pro. They are still up on my site but probably need to be  
converted to the newer FMP versions ;-)

Anyways...  IMHO, scripting this uses too much background processing.  
I would handle it via a CF and a Webviewer (w97xh32):


Start CF (no parameter)

Clock() =

"data:text/html,"&

"<html>¶
<head>¶
<title>JavaScript Clock</title>¶

<style type=\"text/css\">¶
#clock { font-family: Arial, Helvetica, sans-serif; font-size: 0.8em;  
color: white; background-color: black; border: 2px solid purple;  
padding: 4px; }¶
</style>¶

<script type=\"text/javascript\">¶
<!--¶

function init ( )¶

   timeDisplay = document.createTextNode ( \"\" );¶
   document.getElementById(\"clock\").appendChild ( timeDisplay );¶


function updateClock ( )¶

   var currentTime = new Date ( );¶

   var currentHours = currentTime.getHours ( );¶
   var currentMinutes = currentTime.getMinutes ( );¶
   var currentSeconds = currentTime.getSeconds ( );¶

   // Pad the minutes and seconds with leading zeros, if required¶
   currentMinutes = ( currentMinutes < 10 ? \"0\" : \"\" ) +  
currentMinutes;¶
   currentSeconds = ( currentSeconds < 10 ? \"0\" : \"\" ) +  
currentSeconds;¶

   // Choose either \"AM\" or \"PM\" as appropriate¶
   var timeOfDay = ( currentHours < 12 ) ? \"AM\" : \"PM\";¶

   // Convert the hours component to 12-hour format if needed¶
   currentHours = ( currentHours > 12 ) ? currentHours - 12 :  
currentHours;¶

   // Convert an hours component of \"0\" to \"12\"¶
   currentHours = ( currentHours == 0 ) ? 12 : currentHours;¶

   // Compose the string for display¶
   var currentTimeString = currentHours + \":\" + currentMinutes + \":
\" + currentSeconds + \" \" + timeOfDay;¶

   // Update the time display¶
   document.getElementById(\"clock\").firstChild.nodeValue =  
currentTimeString;¶


// -->¶
</script>¶

</head>¶
<body onload=\"updateClock(); setInterval('updateClock()', 1000 )\">¶

<div style=\"clear: both;\"> </div>¶



<div style=\"width: 10em; text-align: left; margin: 0px auto;\">¶
   <span id=\"clock\"> </span>¶
</div>¶

</body>¶
</html>"

End CF

Much more efficient. You can modify the CSS to get a different look  
and also tweak the code to hide seconds and flash colons.

But you get the idea. Take care ;-)

Don Wieland
D W   D a t a   C o n c e p t s
~~~~~~~~~~~~~~~~~~~~~~~~~
[hidden email]
Direct Line - (949) 305-2771

Integrated data solutions to fit your business needs.

Need assistance in dialing in your FileMaker solution? Check out our  
Developer Support Plan at:
http://www.dwdataconcepts.com/DevSup.html

Appointment 1.0v9 - Powerful Appointment Scheduling for FileMaker Pro  
9 or higher
http://www.appointment10.com

For a quick overview -
http://www.appointment10.com/Appt10_Promo/Overview.html

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
>
> Anyways...  IMHO, scripting this uses too much background  
> processing. I would handle it via a CF and a Webviewer (w97xh32):
>

True, but that was too easy... :)

I agree that if I wanted to actually use a clock in a database, I'd  
make use of one of the many clocks on the web, and put it into a web  
viewer.

I wanted to see how FileMaker would behave if it had to trigger a  
script every quarter-second. Interestingly, I've been working on a  
very large database all day, and even with the clock running the whole  
time, I haven't noticed it a bit.

My very first iteration didn't have seconds, nor did it have blinking  
colons, which I added just because i thought it would look nice. If  
you're only displaying hours & minutes, you can get by with an update  
every 55 seconds, which guarantees that it'll always display the right  
time to the minute (not to the exact second), and a script trigger of  
that frequency is almost transparent.

Bob Patin

Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bruce Robertson

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by dwdc
Sounds positively Lutheran. I remember when FM radio was a sign of  
sinful vanity.

On Oct 17, 2009, at 1:59 PM, Don Wieland wrote:

>
> Anyways...  IMHO, scripting this uses too much background processing.
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bruce Robertson

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bob Patin
Interesting to see what happens if you enter find mode while the Patin  
clock is ticking.

Oops, locked up. Gotta force quit.

On Oct 17, 2009, at 2:24 PM, Bob Patin wrote:

> I wanted to see how FileMaker would behave if it had to trigger a  
> script every quarter-second. Interestingly, I've been working on a  
> very large database all day, and even with the clock running the  
> whole time, I haven't noticed it a bit.

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bart Bartholomay

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bob Patin
Bob -

That's the issue, however,  it's "your" time, exact or as inexact as  
it may be on your machine, for your machine only.

A web served clock, though perhaps not as accurate as the atomic time  
clock, is still better if everyone has to be on the same clock.

Unless used as a timer function that needs nothing more than to  
function on and within a remote machine for itself alone, I don't see  
how valuable one of these scripted clocks really is.

Bart

Bart Bartholomay
HAB Marketing
3725 8th Lane
Vero Beach, FL 32960
772.299.6352
Filemaker Business Alliance
http://HABMarketing.com




On Oct 17, 2009, at 5:24 PM, Bob Patin wrote:

>>
>> Anyways...  IMHO, scripting this uses too much background  
>> processing. I would handle it via a CF and a Webviewer (w97xh32):
>>
>
> True, but that was too easy... :)
>
> I agree that if I wanted to actually use a clock in a database, I'd  
> make use of one of the many clocks on the web, and put it into a web  
> viewer.
>
> I wanted to see how FileMaker would behave if it had to trigger a  
> script every quarter-second. Interestingly, I've been working on a  
> very large database all day, and even with the clock running the  
> whole time, I haven't noticed it a bit.
>
> My very first iteration didn't have seconds, nor did it have  
> blinking colons, which I added just because i thought it would look  
> nice. If you're only displaying hours & minutes, you can get by with  
> an update every 55 seconds, which guarantees that it'll always  
> display the right time to the minute (not to the exact second), and  
> a script trigger of that frequency is almost transparent.
>
> Bob Patin
>
> Longterm Solutions
> [hidden email]
> 615-333-6858
> http://www.longtermsolutions.com
> iChat: bobpatin
> FileMaker 10 Certified Developer
> Member of FileMaker Business Alliance and FileMaker TechNet
> --------------------------
> FileMaker hosting and consulting for all versions of FileMaker
> PHP • Full email services • Free DNS hosting • Colocation • Consulting
> _______________________________________________
> FMPexperts mailing list
> [hidden email]
> http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bruce Robertson
Ooh, that's not good... why is it locking up? Is it because the script  
still gets triggered even in FIND mode?

That can't be good... :)

I don't see any way to tell an ontimer script NOT to run in anything  
but BROWSE mode... hmm...

Bob Patin
Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
On Oct 17, 2009, at 4:50 PM, Bruce Robertson wrote:

> Interesting to see what happens if you enter find mode while the  
> Patin clock is ticking.
>
> Oops, locked up. Gotta force quit.

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bruce Robertson

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by dwdc
Maybe you could revise the function to flash "Find Mode" in Find mode.

On Oct 17, 2009, at 1:59 PM, Don Wieland wrote:

> Ahhh...  This reminds of the good old days when I was building games  
> in FileMaker Pro. They are still up on my site but probably need to  
> be converted to the newer FMP versions ;-)
>
> Anyways...  IMHO, scripting this uses too much background  
> processing. I would handle it via a CF and a Webviewer (w97xh32):
>
>
> Start CF (no parameter)

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bart Bartholomay

On Oct 17, 2009, at 4:53 PM, Bart Bartholomay wrote:
>
> Unless used as a timer function that needs nothing more than to  
> function on and within a remote machine for itself alone, I don't  
> see how valuable one of these scripted clocks really is.

Bart,

As I've said, this was just an exercise; I never designed it to be  
folded into a solution--which I clearly said in the article. I just  
wanted to see if it was doable.

If I want to look at a clock, I use these devices that have been  
around forever... clocks. :)

Bob Patin
Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bruce Robertson

On Oct 17, 2009, at 4:56 PM, Bruce Robertson wrote:

> Maybe you could revise the function to flash "Find Mode" in Find mode.

Nah, I'll leave that to anyone who might actually want to use this for  
something. For now, I'll just have the script exit if the database is  
in FIND mode.


Bob Patin
Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bruce Robertson
I just uploaded a slightly-modded version; if you go into FIND mode,  
it simply stops the trigger.



Bob Patin

Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
On Oct 17, 2009, at 4:56 PM, Bruce Robertson wrote:

> Maybe you could revise the function to flash "Find Mode" in Find mode.

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Phillip Jones-3

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bob Patin
downloaded un zip and opened in FM pro advanced 9.0

Just sits. and you have a flaw in your 1

on a digital Clock with LED display you have

  _
|_|
|_|

7 segments
1 are always created with the last 2 up right segments

so that it appears as
|
| the 7 is Created using :

___
    | Typically  most are angled

    |

___
   /
  /

While the Red and black is typical of many Digital Clocks in the past
Manufacturers have opted a bright Sky Blue for the number on Black
Background  they have found Blue is easier to see at night but does not
distract from trying to sleep.

Bob Patin wrote:

> Hello all,
>
> Someone on Twitter asked if there were any readymade clocks in
> FileMaker, which got me to thinking about how I would go about creating
> one. After fiddling with it all the way through a rather boring movie, I
> ended up with a pretty neat little FileMaker-based clock, which you can
> read about and download here:
>
> http://www.longtermsolutions.com/article.php?r=14
>
> It's fully unlocked and you're welcome to use it any way you'd like;
> comments welcome!
>
> Bob Patin
> Longterm Solutions
> [hidden email]
> 615-333-6858
> http://www.longtermsolutions.com
> iChat: bobpatin
> FileMaker 10 Certified Developer
> Member of FileMaker Business Alliance and FileMaker TechNet
> --------------------------
> FileMaker hosting and consulting for all versions of FileMaker
> PHP � Full email services � Free DNS hosting � Colocation � Consulting
> _______________________________________________
> FMPexperts mailing list
> [hidden email]
> http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
>

--
Phillip M. Jones, C.E.T.    "If it's Fixed, Don't Break it"
616 Liberty Street              Martinsville, Va 24112-1809
Phone: 276-632-5045  Cell: 276-732-7781   Fax: 276-632-0868
http://www.phillipmjones.net            http://www.vpea.org
mailto:[hidden email]

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Mike Duncan-2

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bob Patin
I wrote one of these as a demo a while back, but it never got posted
anywhere. Email be back channel if you'd like to see it. It uses
javascript and the web viewer, so works in find mode as well. The
clock is also skin-able so you have control over it's appearance.
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bruce Robertson

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by dwdc
Maybe you could revise the function to flash "Find Mode" in Find mode.

On Oct 17, 2009, at 1:59 PM, Don Wieland wrote:

> Ahhh...  This reminds of the good old days when I was building games  
> in FileMaker Pro. They are still up on my site but probably need to  
> be converted to the newer FMP versions ;-)
>
> Anyways...  IMHO, scripting this uses too much background  
> processing. I would handle it via a CF and a Webviewer (w97xh32):
>
>
> Start CF (no parameter)


So here is a revised CF with Find Mode indicated, gotta make a way to  
have it flash though:

"data:text/html,"&

"<html>¶
<head>¶
<title>JavaScript Clock</title>¶

<style type=\"text/css\">¶
#clock { font-family: Arial, Helvetica, sans-serif; font-size: 0.8em;  
color: white; background-color: black; border: 2px solid purple;  
padding: 4px; }¶
</style>¶

<script type=\"text/javascript\">¶
<!--¶

function init ( )¶

  timeDisplay = document.createTextNode ( \"\" );¶
  document.getElementById(\"clock\").appendChild ( timeDisplay );¶


function updateClock ( )¶

  var currentTime = new Date ( );¶

  var currentHours = currentTime.getHours ( );¶
  var currentMinutes = currentTime.getMinutes ( );¶
  var currentSeconds = currentTime.getSeconds ( );¶

  // Pad the minutes and seconds with leading zeros, if required¶
  currentMinutes = ( currentMinutes < 10 ? \"0\" : \"\" ) +  
currentMinutes;¶
  currentSeconds = ( currentSeconds < 10 ? \"0\" : \"\" ) +  
currentSeconds;¶

  // Choose either \"AM\" or \"PM\" as appropriate¶
  var timeOfDay = ( currentHours < 12 ) ? \"AM\" : \"PM\";¶

  // Convert the hours component to 12-hour format if needed¶
  currentHours = ( currentHours > 12 ) ? currentHours - 12 :  
currentHours;¶

  // Convert an hours component of \"0\" to \"12\"¶
  currentHours = ( currentHours == 0 ) ? 12 : currentHours;¶

  // Compose the string for display¶
  var currentTimeString = currentHours + \":\" + currentMinutes + \":
\" + currentSeconds + \" \" + timeOfDay;¶
¶" &

Case( Get(WindowMode) = 1; "var currentTimeString =\"FIND MODE\";¶" ) &

"// Update the time display¶
  document.getElementById(\"clock\").firstChild.nodeValue =  
currentTimeString;¶


// -->¶
</script>¶

</head>¶
<body onload=\"updateClock(); setInterval('updateClock()', 1000 )\">¶

<div style=\"clear: both;\"> </div>¶



<div style=\"width: 10em; text-align: left; margin: 0px auto;\">¶
  <span id=\"clock\"> </span>¶
</div>¶

</body>¶
</html>"
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bob Patin

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Phillip Jones-3
Philip,

That's because it uses a script trigger; you'll need to use FileMaker  
10 for it to work.

Bob Patin

Longterm Solutions
[hidden email]
615-333-6858
http://www.longtermsolutions.com
iChat: bobpatin
FileMaker 10 Certified Developer
Member of FileMaker Business Alliance and FileMaker TechNet
--------------------------
FileMaker hosting and consulting for all versions of FileMaker
PHP • Full email services • Free DNS hosting • Colocation • Consulting
On Oct 17, 2009, at 5:11 PM, Phillip M. Jones, C.E.T. wrote:

> downloaded un zip and opened in FM pro advanced 9.0
>
> Just sits. and you have a flaw in your 1
>
> on a digital Clock with LED display you have
>
> _
> |_|
> |_|
>
> 7 segments
> 1 are always created with the last 2 up right segments
>
> so that it appears as
> |
> | the 7 is Created using :
>
> ___
>   | Typically  most are angled
>
>   |
>
> ___
>  /
> /
>
> While the Red and black is typical of many Digital Clocks in the  
> past Manufacturers have opted a bright Sky Blue for the number on  
> Black Background  they have found Blue is easier to see at night but  
> does not distract from trying to sleep.
>
> Bob Patin wrote:
>> Hello all,
>> Someone on Twitter asked if there were any readymade clocks in  
>> FileMaker, which got me to thinking about how I would go about  
>> creating one. After fiddling with it all the way through a rather  
>> boring movie, I ended up with a pretty neat little FileMaker-based  
>> clock, which you can read about and download here:
>> http://www.longtermsolutions.com/article.php?r=14
>> It's fully unlocked and you're welcome to use it any way you'd  
>> like; comments welcome!
>> Bob Patin
>> Longterm Solutions
>> [hidden email]
>> 615-333-6858
>> http://www.longtermsolutions.com
>> iChat: bobpatin
>> FileMaker 10 Certified Developer
>> Member of FileMaker Business Alliance and FileMaker TechNet
>> --------------------------
>> FileMaker hosting and consulting for all versions of FileMaker
>> PHP � Full email services � Free DNS hosting � Colocation �  
>> Consulting
>> _______________________________________________
>> FMPexperts mailing list
>> [hidden email]
>> http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
>
> --
> Phillip M. Jones, C.E.T.    "If it's Fixed, Don't Break it"
> 616 Liberty Street              Martinsville, Va 24112-1809
> Phone: 276-632-5045  Cell: 276-732-7781   Fax: 276-632-0868
> http://www.phillipmjones.net            http://www.vpea.org
> mailto:[hidden email]
>
> _______________________________________________
> FMPexperts mailing list
> [hidden email]
> http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bart Bartholomay

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bob Patin
Sorry, Bob. Wasn't trying to be insulting to your intelligence. Next  
time I'll assume that you've got all the angles worked out before  
spending any more "time" on it.

BTW, I can and do read posts.

Bart

Bart Bartholomay
HAB Marketing
3725 8th Lane
Vero Beach, FL 32960
772.299.6352
Filemaker Business Alliance
http://HABMarketing.com




On Oct 17, 2009, at 6:01 PM, Bob Patin wrote:

>
> On Oct 17, 2009, at 4:53 PM, Bart Bartholomay wrote:
>>
>> Unless used as a timer function that needs nothing more than to  
>> function on and within a remote machine for itself alone, I don't  
>> see how valuable one of these scripted clocks really is.
>
> Bart,
>
> As I've said, this was just an exercise; I never designed it to be  
> folded into a solution--which I clearly said in the article. I just  
> wanted to see if it was doable.
>
> If I want to look at a clock, I use these devices that have been  
> around forever... clocks. :)
>
> Bob Patin
> Longterm Solutions
> [hidden email]
> 615-333-6858
> http://www.longtermsolutions.com
> iChat: bobpatin
> FileMaker 10 Certified Developer
> Member of FileMaker Business Alliance and FileMaker TechNet
> --------------------------
> FileMaker hosting and consulting for all versions of FileMaker
> PHP • Full email services • Free DNS hosting • Colocation • Consulting
> _______________________________________________
> FMPexperts mailing list
> [hidden email]
> http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au

_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Bart Bartholomay

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
Here's another example using a web viewer and remote server.

http://habmarketing.com/downloads/Another_Clock_example.zip

Bart

Bart Bartholomay
HAB Marketing
3725 8th Lane
Vero Beach, FL 32960
772.299.6352
Filemaker Business Alliance
http://HABMarketing.com


_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
Keith Rettig

Re: Creating a clock in FileMaker

Reply Threaded More More options
Print post
Permalink
In reply to this post by Bob Patin
The clock doesn't work for me!

FMProAdvanced 9.x
Intel MacPro
OSX 10.5.8

If I look in the scripts, there are several "<unknown>" script steps.
Do I need to be running FMPro 10.x?

So for me the process only works once and shows the time as it was  
when it ran.

Keith.
_______________________________________________
FMPexperts mailing list
[hidden email]
http://lists.ironclad.net.au/listinfo.cgi/fmpexperts-ironclad.net.au
1 2