Re: Calendar widget crafted with MetaCard

2008-07-09 Thread Scott Rossi
Recently, Alain Farmer wrote:

 Have any of you ever crafted a CALENDAR widget ?

You could try here:

http://www.troz.net/Rev/libraries.php

3rd link down.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: Calendar widget crafted with MetaCard

2008-07-09 Thread J. Landman Gay

Alain Farmer wrote:

Hello fellow MetaCard users/developers,  :-)

Have any of you ever crafted a CALENDAR widget ?


I've done a few, but all for client work. Sarah Reichelt has one 
publicly available: http://www.troz.net/Rev/libraries.php


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: Calendar widget crafted with MetaCard

2008-07-09 Thread Alain Farmer
Thank you Scott, Thank you Jacque.  :-)

I was SURE such a thing existed!  :-)

Btw, are there any *other* locations where MetaCard developers are sharing 
their work ? Has there been any/many efforts to share MC/RR work ? A kind of 
... euh ... Pantechnicon.. so to speak! Would it be worthwhile to do so ?

Thanks again for the prompt help. It's so much FASTER than doing it myself, as 
you can no-doubt imagine. :-)

Alain



 Have any of you ever crafted a CALENDAR widget ?

 You could try here:
 http://www.troz.net/Rev/libraries.php
 3rd link down.


  
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: Calendar widget crafted with MetaCard

2008-07-09 Thread Björnke von Gierke

Wow, second time today to advertise my stuff :)

check out dateandtime (in the middle):
http://bjoernke.com/runrev/stacks.php

bjoernke
On 9 Jul 2008, at 22:26, Alain Farmer wrote:


Hello fellow MetaCard users/developers,  :-)

Have any of you ever crafted a CALENDAR widget ?

IOW, a tiny metacard stack, displayed as a palette,

wherein:

* days of the month are mapped to corresponding weekdays ;

* clicking on next/prev month auto-generates calendar for it ;

* selecting a day of a monthly calendar returns corresponding date.

You know what I mean. I need a widget/dialog to select a DATE  
visually, which will then return this date in date-format; and put  
it into a field,   or whatever.


In geek-speak :  ;-)

on mouseUp
 put selectDate() into field creation date
end mouseUp

function selectDate
 palette Date Selector
end selectDate

on preOpenStack -- in stack script of stack Date Selector
 put the date into today
 convert today to dateTime
 set itemDelimiter to comma
 put item 1 of today into thisYear
 put item 2 of today into thisMonth
 put item 3 of today into thisDay
 --
 generateCalendar thisYear, thisMonth, thisDay
 --
end preOpenStack

on generateCalendar thisYear, thisMonth, thisDay
 -- this is what I NEED. Please. Pretty-please  :-)
end generateCalendar

Anyone care to SHARE ?  :-))

Alain



___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard