Search the web
Sign In
New User? Sign Up
hypercardclub · HyperCard Club
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 812 - 846 of 875   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#846 From: Mark Schonewille <mark.sch@...>
Date: Thu Oct 13, 2005 9:32 pm
Subject: Re: [HCC] New to Group
ecognoompje
Offline Offline
Send Email Send Email
 
Hi Dave,

Are you in Europe? I have a few copies of HC 2.3 available for
sale, which can be updated to 2.4.1 at no cost. If you're in
Europe, it might be worth it.

Best,

Mark


Dave Penun wrote:
> Thanks a million Craig. I'm still looking to the
> latest Hypercard 2.4.1 program. Right now I have 2.1
> but I would I like add color to my art installation.

--

eHUG coordinator
mailto:europe@...
http://www.ehug.info
http://home.wanadoo.nl/mark.sch
http://www.economy-x-talk.com

Please inform me about vacancies in the field of
general economics at your institute. I am also looking
for new freelance programming projects.

#845 From: Craig Newman <craig@...>
Date: Thu Oct 13, 2005 9:26 pm
Subject: Re: [HCC] Question about scripting
dunbarx2000
Offline Offline
Send Email Send Email
 
on 10/13/05 4:46 PM, Dave at dfp837@... wrote:

I noticed that my Hypercard 2.1, the scripting button is faded and I cannot
press on this to
edit the script of the card or button. Does anyone know anyway around this?
Is there a certain
something that I need to do?

Thanks
Dave





HCC = HyperCard Club
To unsubscribe, send an email to:
hypercardclub-unsubscribe@yahoogroups.com







YAHOO! GROUPS LINKS

  Visit your group "hypercardclub
<http://groups.yahoo.com/group/hypercardclub> " on the web.

  To unsubscribe from this group, send an email to:
  hypercardclub-unsubscribe@yahoogroups.com
<mailto:hypercardclub-unsubscribe@yahoogroups.com?subject=Unsubscribe>

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
<http://docs.yahoo.com/info/terms/> .






In the message box, type "set userlevel to 5"

Regards,

Craig Newman


[Non-text portions of this message have been removed]

#844 From: "Dave" <dfp837@...>
Date: Thu Oct 13, 2005 8:46 pm
Subject: Question about scripting
dfp837
Offline Offline
Send Email Send Email
 
I noticed that my Hypercard 2.1, the scripting button is faded and I cannot
press on this to
edit the script of the card or button. Does anyone know anyway around this? Is
there a certain
something that I need to do?

Thanks
Dave

#843 From: Dave Penun <dfp837@...>
Date: Wed Oct 12, 2005 8:03 pm
Subject: Re: [HCC] Re: New to Group
dfp837
Offline Offline
Send Email Send Email
 
Thanks a million for that as well. I need to get some
books about this scripting. Thanks to all who answered
my question so quickly :)

-Dave

--- Eric Engle <engleerica@...> wrote:

>
> > Message: 4
> >    Date: Wed, 12 Oct 2005 01:35:36 -0000
> >    From: "Dave" <dfp837@...>
> > Subject: Re: New to Group
> >
> > I'm trying to create a slideshow for some images
> I'm displaying in Hypercard.
> > How do I create
> > a time delay going from piece to another? I hope
> I'm explaining this clearly.
> > I would like the
> > ability to create an automatic slideshow, sort of.
> I'm guessing that I have
> > to use a script to
> > make this happen.
> >
> > Thanks:)
> > Dave
>
>
> I think there is a command "wait" e.g.
>
> wait 2 seconds
> wait 120 ticks
> --120 ticks = 2 seconds, 60 ticks per second
>
> or
> put 0 into i
> repeat until i = 120
> wait 1 tick
> add 1 to i
> end repeat
>
> because of the loop this will be a little more than
> 2 seconds actually. This
> definitely will work and is usually "good enough".
>
>
> Set the card script to include these handlers
>
>
> on opencard
> wait 5 seconds
> pass openscard
> go next
> end opencard
>
>
> on closecard
> wait 1 second
> pass closecard
> end closecard
>
> you can also add visual effects.
>
>
>
> __________________________________
> Yahoo! Music Unlimited
> Access over 1 million songs. Try it free.
> http://music.yahoo.com/unlimited/
>





__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#842 From: Dave Penun <dfp837@...>
Date: Wed Oct 12, 2005 4:52 pm
Subject: Re: [HCC] New to Group
dfp837
Offline Offline
Send Email Send Email
 
Thanks a million Craig. I'm still looking to the
latest Hypercard 2.4.1 program. Right now I have 2.1
but I would I like add color to my art installation.

--- Craig Newman <craig@...> wrote:

> on 10/11/05 9:35 PM, Dave at dfp837@... wrote:
>
> I'm trying to create a slideshow for some images I'm
> displaying in
> Hypercard. How do I create
> a time delay going from piece to another? I hope I'm
> explaining this
> clearly. I would like the
> ability to create an automatic slideshow, sort of.
> I'm guessing that I have
> to use a script to
> make this happen.
>
> Thanks:)
> Dave
>
>
>
>
>
> HCC = HyperCard Club
> To unsubscribe, send an email to:
> hypercardclub-unsubscribe@yahoogroups.com
>
>
>
>
>
>
>
> YAHOO! GROUPS LINKS
>
>  Visit your group "hypercardclub
> <http://groups.yahoo.com/group/hypercardclub> " on
> the web.
>
>  To unsubscribe from this group, send an email to:
>  hypercardclub-unsubscribe@yahoogroups.com
>
<mailto:hypercardclub-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>  Your use of Yahoo! Groups is subject to the Yahoo!
> Terms of Service
> <http://docs.yahoo.com/info/terms/> .
>
>
>
>
>
>
> The "wait" command halts execution for a specified
> time. The default time is
> in ticks, each being 1/60 of a second.
>
> wait 120 (waits two seconds)
>
> But you can specify seconds if you want:
>
> wait 2 seconds.
>
> gotta get those books. The apple reference info is
> excellent, by the way.
>
>
> [Non-text portions of this message have been
> removed]
>
>





__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#841 From: Craig Newman <craig@...>
Date: Wed Oct 12, 2005 3:52 pm
Subject: Re: [HCC] New to Group
dunbarx2000
Offline Offline
Send Email Send Email
 
on 10/11/05 9:35 PM, Dave at dfp837@... wrote:

I'm trying to create a slideshow for some images I'm displaying in
Hypercard. How do I create
a time delay going from piece to another? I hope I'm explaining this
clearly. I would like the
ability to create an automatic slideshow, sort of. I'm guessing that I have
to use a script to
make this happen.

Thanks:)
Dave





HCC = HyperCard Club
To unsubscribe, send an email to:
hypercardclub-unsubscribe@yahoogroups.com







YAHOO! GROUPS LINKS

  Visit your group "hypercardclub
<http://groups.yahoo.com/group/hypercardclub> " on the web.

  To unsubscribe from this group, send an email to:
  hypercardclub-unsubscribe@yahoogroups.com
<mailto:hypercardclub-unsubscribe@yahoogroups.com?subject=Unsubscribe>

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
<http://docs.yahoo.com/info/terms/> .






The "wait" command halts execution for a specified time. The default time is
in ticks, each being 1/60 of a second.

wait 120 (waits two seconds)

But you can specify seconds if you want:

wait 2 seconds.

gotta get those books. The apple reference info is excellent, by the way.


[Non-text portions of this message have been removed]

#840 From: Eric Engle <engleerica@...>
Date: Wed Oct 12, 2005 12:18 pm
Subject: Re: New to Group
engleerica
Offline Offline
Send Email Send Email
 
> Message: 4
>    Date: Wed, 12 Oct 2005 01:35:36 -0000
>    From: "Dave" <dfp837@...>
> Subject: Re: New to Group
>
> I'm trying to create a slideshow for some images I'm displaying in Hypercard.
> How do I create
> a time delay going from piece to another? I hope I'm explaining this clearly.
> I would like the
> ability to create an automatic slideshow, sort of. I'm guessing that I have
> to use a script to
> make this happen.
>
> Thanks:)
> Dave


I think there is a command "wait" e.g.

wait 2 seconds
wait 120 ticks
--120 ticks = 2 seconds, 60 ticks per second

or
put 0 into i
repeat until i = 120
wait 1 tick
add 1 to i
end repeat

because of the loop this will be a little more than 2 seconds actually. This
definitely will work and is usually "good enough".


Set the card script to include these handlers


on opencard
wait 5 seconds
pass openscard
go next
end opencard


on closecard
wait 1 second
pass closecard
end closecard

you can also add visual effects.



__________________________________
Yahoo! Music Unlimited
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/

#839 From: "Dave" <dfp837@...>
Date: Wed Oct 12, 2005 1:35 am
Subject: Re: [HCC] New to Group
dfp837
Offline Offline
Send Email Send Email
 
I'm trying to create a slideshow for some images I'm displaying in Hypercard.
How do I create
a time delay going from piece to another? I hope I'm explaining this clearly. I
would like the
ability to create an automatic slideshow, sort of. I'm guessing that I have to
use a script to
make this happen.

Thanks:)
Dave

#838 From: Craig Newman <craig@...>
Date: Tue Oct 11, 2005 4:31 pm
Subject: Re: [HCC] New to Group
dunbarx2000
Offline Offline
Send Email Send Email
 
on 10/11/05 11:36 AM, Dave at dfp837@... wrote:

I'm getting version 2.2. I wanted to use color in my project. Do you
recommend 2.4.1.
Thanks again

2.2 is pretty good, and you might be just fine with it, but you should try
to upgrade eventually. Lots of new stuff in 2.3, and. 2.4.1 is what you
really want, especially if you want all the multimedia stuff. The third
party  books are all written for 2.2.

Again post to the HC mail list, and ask lots of questions to both venues.


[Non-text portions of this message have been removed]

#837 From: "Dave" <dfp837@...>
Date: Tue Oct 11, 2005 3:36 pm
Subject: Re: [HCC] New to Group
dfp837
Offline Offline
Send Email Send Email
 
I'm getting version 2.2. I wanted to use color in my project. Do you recommend
2.4.1.
Thanks again

--- In hypercardclub@yahoogroups.com, Craig Newman <craig@s...> wrote:
>
> on 10/9/05 9:25 PM, Dave at dfp837@y... wrote:
>
> Hello, just wanted to introduce myself. I'm interested in using Hypercard.
> Thanks :)
>
> -Dave
>
>
>
>
>
> HCC = HyperCard Club
> To unsubscribe, send an email to:
> hypercardclub-unsubscribe@yahoogroups.com
>
>
>
>
>
>
> YAHOO! GROUPS LINKS
>
>  Visit your group "hypercardclub
> <http://groups.yahoo.com/group/hypercardclub> " on the web.
>
>  To unsubscribe from this group, send an email to:
>  hypercardclub-unsubscribe@yahoogroups.com
> <mailto:hypercardclub-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
> <http://docs.yahoo.com/info/terms/> .
>
>
>
>
>
> You are in for the thrill of your life. Do you have the program (v. 2.4.1)
> and third party books? Do you know which books (two, basically) these are?
> You may also want to send a post to the HC mail list:
>
> HyperCard@yahoogroups.com
>
>
> [Non-text portions of this message have been removed]
>

#836 From: Craig Newman <craig@...>
Date: Tue Oct 11, 2005 3:29 pm
Subject: Re: [HCC] New to Group
dunbarx2000
Offline Offline
Send Email Send Email
 
on 10/9/05 9:25 PM, Dave at dfp837@... wrote:

Hello, just wanted to introduce myself. I'm interested in using Hypercard.
Thanks :)

-Dave





HCC = HyperCard Club
To unsubscribe, send an email to:
hypercardclub-unsubscribe@yahoogroups.com






YAHOO! GROUPS LINKS

  Visit your group "hypercardclub
<http://groups.yahoo.com/group/hypercardclub> " on the web.

  To unsubscribe from this group, send an email to:
  hypercardclub-unsubscribe@yahoogroups.com
<mailto:hypercardclub-unsubscribe@yahoogroups.com?subject=Unsubscribe>

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
<http://docs.yahoo.com/info/terms/> .





You are in for the thrill of your life. Do you have the program (v. 2.4.1)
and third party books? Do you know which books (two, basically) these are?
You may also want to send a post to the HC mail list:

HyperCard@yahoogroups.com


[Non-text portions of this message have been removed]

#835 From: "Dave" <dfp837@...>
Date: Mon Oct 10, 2005 1:25 am
Subject: New to Group
dfp837
Offline Offline
Send Email Send Email
 
Hello, just wanted to introduce myself. I'm interested in using Hypercard.
Thanks :)

-Dave

#834 From: srpokel
Date: Tue Aug 23, 2005 11:10 pm
Subject: Re: IBC2005 Amsterdam
srpokel
Offline Offline
 
It is good to hear that there will be eHUG representation at the IBC.
I hope HyperCard recieves the visibility that it deserves.

SrPokel
--


--- In hypercardclub@yahoogroups.com, Mark Schonewille <mark.sch@w...>
wrote:
> Hello,
>
> Are any multimediators going to IBC in Amsterdam? We might have
> a little meeting under eHUG's flag.

#833 From: Mark Schonewille <mark.sch@...>
Date: Thu Aug 18, 2005 1:33 pm
Subject: IBC2005 Amsterdam
ecognoompje
Offline Offline
Send Email Send Email
 
Hello,

Are any multimediators going to IBC in Amsterdam? We might have
a little meeting under eHUG's flag.

If you register for the IBC2005 exhibition no later than 21st
August, you can get your badge for free (exhibition only, not
the conference). Look at http://www/ibc.org for more information.

Additionally, I'd like to ask everyone who might be interested
in a Revolution/xTalk conference in the Netherlands or Germany
to contact me ASAP.

Best,

Mark

P.S. I am not affiliated with IBC.

--

eHUG coordinator
mailto:europe@...
http://www.ehug.info
http://home.wanadoo.nl/mark.sch
http://www.economy-x-talk.com

Please inform me about vacancies in the field of
general economics at your institute. I am also looking
for new freelance programming projects.

#832 From: Mark Schonewille <mark.sch@...>
Date: Sat Apr 9, 2005 9:55 pm
Subject: eHUG newsletter released
ecognoompje
Offline Offline
Send Email Send Email
 
Hello,

The European HyperCard User Group has recently released the
latest edition of their newsletter. This time, we deal with the
new Revolution release and remaining copies of HyperCard
available in the eHUG store. Additionally, we are looking for
volunteers!

If you have not received the newsletter while you are a member
of eHUG, please send a message to <mailto:europe@...>. If
you are not a member but would like to become one, you can send
a message to the same address.

Best regards,

Mark Schonewille

--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#831 From: Mark Schonewille <mark.sch@...>
Date: Fri Mar 25, 2005 11:25 am
Subject: ANN: DIFfersifier 3.0.2
ecognoompje
Offline Offline
Send Email Send Email
 
Hello,

DIFfersifier 3.0.2 is now available. DIFfersifier is a simple
conversion utility that exports text data from HyperCard,
Revolution and MetaCard stacks to files that can be read by most
database applications.

This update fixes a few minor bugs. A persistent bug that
prevented the Linux version of DIFfersifier from opening stacks
has been removed. Minor file icon issues on MacOS X have been
resolved. Now, pressing the control key on Windows or the Option
key on MacOS Classic and MacOS X  allow you to select files of
any type.

All current DIFfersifier license holders are eligible to use
this latest release. For more information on DIFfersifier 3.0.2,
please visit the website
<http://home.wanadoo.nl/mark.sch/dif/main.html>.

Best regards,

Mark Schonewille

--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#830 From: Mark Schonewille <mark.sch@...>
Date: Wed Jan 26, 2005 12:07 pm
Subject: [eHUG] Newsletter - 050126 released
ecognoompje
Offline Offline
Send Email Send Email
 
Dear xTalk developer,

The European HyperCard User Group has just released the latest
eHUG newsletter in six languages. Subjects are new releases in
TidBITS' Take Control series and an opportunity to get a free
Take Control ebook; offerings from the eHUG store; and a warm
thank-you to all who make this newsletter possible.

If you haven't received the newsletter while you are subscribed
or if you would like to subscribe, please contact the eHUG
coordinator at <mailto:europe@...>.

Best regards,

Mark Schonewille

--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#829 From: Mark Schonewille <mark.sch@...>
Date: Sun Oct 3, 2004 12:53 pm
Subject: ANN: DIFfersifier 3.0.1
ecognoompje
Offline Offline
Send Email Send Email
 
Dear HyperCard users,

I would like to inform you about a new release of DIFfersifier,
which is available now. DIFfersifier is a simple utility, which
converts text data in HyperCard, MetaCard and Revolution stacks
to several other formats. The DIF and Merge file formats that
are created by DIFfersifier can be imported by most, if not all,
well-known database applications. A tab-delimited text format is
also available, enhancing flexibility for those who are creating
their own database software. DIFfersifier can also create HTML
tables.

DIFfersifier 3.0.1 fixes minor interface bugs and the Linux
version should open and convert files properly now. You can find
the new version at
<http://home.wanadoo.nl/mark.sch/dif/main.html>. You don't need
to buy a new license key for DIFfersifier 3.0.1 if you have one
for DIFfersifier 3.0 already.

Best regards,

Mark Schonewille

--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#828 From: Mark Schonewille <mark.sch@...>
Date: Sun Aug 8, 2004 1:19 pm
Subject: ANN: DIFfersifier 3.0b04
ecognoompje
Offline Offline
Send Email Send Email
 
Hello,

Today, another beta version of DIFfersifier 3.0 has been
released. DIFfersifier is a conversion utility for HyperCard,
MetaCard and Revolution stacks. It converts stacks to a number
of different formats, including the Data Interchange Format,
Merge, tab-delimited text, and HTML tables. DIFfersifier 3.0b04
is available for MacOS (PPC), MacOS X and Windows.

We need beta testers. If you have a few HyperCard, MetaCard or
Revolution stacks that you would like to convert into a
different format, e.g. to use them in database applications such
as FileMaker, 4D, or AppleWorks, just download one of the files
bewlow for a test. The Classic MacOS version can be downloaded from:

<http://home.wanadoo.nl/mark.sch/releases/dif/ppc/differsifierppc.sit>

the Mac OS X version can be downloaded from:

<http://home.wanadoo.nl/mark.sch/releases/dif/osx/differsifierosx.sit>

and the Windows version is available at:

<http://home.wanadoo.nl/mark.sch/releases/dif/win/differsifierwin32.zip>

If you download one of these files, please, read the information
in the Read Me file, including the license, and the Note for
beta testers. Don't forget to send me a message to register
yourself as a beta tester.

Best regards,

Mark Schonewille

--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#827 From: srpokel
Date: Wed Jul 14, 2004 5:07 am
Subject: Re: [HCC] The Alternative
srpokel
Offline Offline
 
> it is good to have an alternative group readily available, even
> though it is somewhat dormant. Perhaps it will appear to be very
> useful, later.

This group was a lot more active in its earlier days. Several years
ago I built a website for the group and hosted it on
WhyTheMacIsSoGreat.com (this site has since changed hands). We
worked on a couple of stacks over the Internet, using this
group . . . well, back then it was "Yahoo! Clubs." We mostly worked
on games - we were a younger crowd.

On the website we tried to do something similar to the Pantechnicon
( http://pan.uqam.ca/cgi-bin/usemod/wiki.pl ) and the now non-
existent HyperCard Gamers Group: create a store house of the best HC
stacks created. We also served as an online HyperCard news and a
place where people could post their own articles.

When the group moved over here to Yahoo! Groups things started to
slow down. Regardless, HyperCard to still a great developing medium
and can be a tool to express creativity and intellect. I still enjoy
making stacks - it never grows old.

Just a ramble,

SrPokel
Founder
HC FOREVER
--

#826 From: srpokel
Date: Wed Jul 14, 2004 4:38 am
Subject: Re: [HCC] The board/links are clear of spam!
srpokel
Offline Offline
 
Jonathyn-


> I'm not actively posting (it doesn't seem like anybody is, to be
frank)
> but I could do it.

I don't expect too much spam anymore. The only thing I might need
help with is the occational approving of new members.

Thank you.

SrPokel
--

#825 From: wally2law
Date: Sun Jul 11, 2004 8:25 pm
Subject: Re: The board/links are clear of spam!
wally2law
Offline Offline
 
Thanks for your efforts and the update - I, too, like having this
alternative group available, and I keep up with the postings just to
stay informed about HyperCard. Like you, I spend lots of time on
Windows. Most of my customers purchase my employment law software for
that platform, but my first application is still available (and
updated) in HyperCard for the Mac! :-)
Sincerely,
Tommy Simmons
Employment Law Advisory Network
www.employmentlawadvisors.com

--- In hypercardclub@yahoogroups.com, srpokel <no_reply@y...> wrote:
> HCC members-
>
> I removed the spam messages and unrelated links from our group. I
> have not been actively visiting the group in sometime. I'm sad to
> say that I have been spenting more time on Windows boxes than I
> would like.
>
> Is there anyone actively posting to the board that would be willing
> to occasionly delete spam postings and the occational link? I would
> promote that person to moderator status. I just do not visit here
> enough to keep up on all the postings.
>
> Also, group membership is now restricted - new members must first
be
> approved by a moderator.
>
> SrPokel
> Founder of HyperCard Club
> srpokel@y...

#824 From: Mark Schonewille <mark.sch@...>
Date: Thu Jul 8, 2004 9:14 pm
Subject: Re: [HCC] The board/links are clear of spam!
ecognoompje
Offline Offline
Send Email Send Email
 
Hello SrPokel,

Thanks for taking measures against spam. I really appreciate it.
As a user group leader, I am too busy to take responsibility as
a moderator. I hope that someone else want to share this job
with you.

Frankly, I am a member of this group just to know about it if
something happens. There was a time that people used to chatter
a lot on the HyperCard List and I was happy to be with the HC
International group. This group doesn't exist anymore. I think
it is good to have an alternative group readily available, even
though it is somewhat dormant. Perhaps it will appear to be very
useful, later.

srpokel wrote:
> HCC members-
>
> I removed the spam messages and unrelated links from our group. I
> have not been actively visiting the group in sometime. I'm sad to
> say that I have been spenting more time on Windows boxes than I
> would like.

Shame on you... but I understand it is unavoidable, sometimes.

>
> Is there anyone actively posting to the board that would be willing
> to occasionly delete spam postings and the occational link? I would
> promote that person to moderator status. I just do not visit here
> enough to keep up on all the postings.
>
> Also, group membership is now restricted - new members must first be
> approved by a moderator.

Very good.

Thanks again and best regards,

Mark


--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#823 From: Jonathyn Bet'nct <jonrelay@...>
Date: Wed Jul 7, 2004 5:59 am
Subject: Re: [HCC] The board/links are clear of spam!
jonrelay
Offline Offline
Send Email Send Email
 
On Tuesday, July 6, 2004, at 09:44  PM, srpokel wrote:

> Is there anyone actively posting to the board that would be willing
> to occasionly delete spam postings and the occational link? I would
> promote that person to moderator status. I just do not visit here
> enough to keep up on all the postings.

I'm not actively posting (it doesn't seem like anybody is, to be frank)
but I could do it.

> Also, group membership is now restricted - new members must first be
> approved by a moderator.

That's good. That's what I did with Sphere_Project.

Hasta la pasta,
Jonathyn Bet'nct

--
Web site: http://kreativekorp.cjb.net
AIM: tamchel215718
Yahoo: jonrelay
MSN: jonnie1717
ICQ: 76731065 Why would I need an icy cucumber?

Spam sent to this email address disappears on contact!

#822 From: srpokel
Date: Wed Jul 7, 2004 4:44 am
Subject: The board/links are clear of spam!
srpokel
Offline Offline
 
HCC members-

I removed the spam messages and unrelated links from our group. I
have not been actively visiting the group in sometime. I'm sad to
say that I have been spenting more time on Windows boxes than I
would like.

Is there anyone actively posting to the board that would be willing
to occasionly delete spam postings and the occational link? I would
promote that person to moderator status. I just do not visit here
enough to keep up on all the postings.

Also, group membership is now restricted - new members must first be
approved by a moderator.

SrPokel
Founder of HyperCard Club
srpokel@...

#821 From: wally2law
Date: Fri Jul 2, 2004 8:42 pm
Subject: Re: [HCC] HEY DO YOU KNOW ABOUT THIS!!!!!!!!OOOHH NO??
wally2law
Offline Offline
 
Mark,
I had not visited the HCC site in quite some time (I get my messages
via e-mail) and had not noticed those links before you mentioned
them. I agree totally - such links have no place here. Does only the
moderator of the group have the ability to post links, or can any
member do that? It looks like someone got on there and just posted
all kinds of pathetic sites as links for the group. I'm surprised
that Yahoo! doesn't have some kind of monitoring going on its free
sites like this, but then again, I don't know what Yahoo's rules are
for its groups in any event. Who is the moderator at this point?
Tommy Simmons
Employment Law Advisory Network

--- In hypercardclub@yahoogroups.com, Mark Schonewille
<mark.sch@w...> wrote:
> To the moderator of the HyperCard Club.
>
> I urgently request membership of this Yahoo Group to become
> restricted. I also request removal of all the sex links from the
> Links section on the Yahoo site. If you don't respond positively
> to my request, I will have to leave the group. Sorry about that.
>
> Mark
>
> --
>
> University of Nijmegen
> Nijmegen School of Management
> P.O. Box 9108
> 6500 HK Nijmegen
> The Netherlands
>
> Phone: +31 24 361 15 88
> Fax: +31 24 361 23 79
> Homepage: http://schonewille.cjb.net

#820 From: "-=>JB<=-" <comingsky@...>
Date: Fri Jul 2, 2004 9:12 am
Subject: Re: [HCC] HEY DO YOU KNOW ABOUT THIS!!!!!!!!OOOHH NO??
comingsky
Offline Offline
Send Email Send Email
 
I agree!  SPAM in a HyperCard Group?
a line needs to be drawn & actions
need to be taken.

John Balgenorth

----------
>From: Mark Schonewille <mark.sch@...>
>To: hypercardclub@yahoogroups.com, hypercardclub-owner@yahoogroups.com
>Subject: Re: [HCC] HEY DO YOU KNOW ABOUT THIS!!!!!!!!OOOHH NO??
>Date: Fri, Jul 2, 2004, 2:07 AM
>

>To the moderator of the HyperCard Club.
>
>I urgently request membership of this Yahoo Group to become
>restricted. I also request removal of all the sex links from the
>Links section on the Yahoo site. If you don't respond positively
>to my request, I will have to leave the group. Sorry about that.
>
>Mark
>
>--
>
>University of Nijmegen
>Nijmegen School of Management
>P.O. Box 9108
>6500 HK Nijmegen
>The Netherlands
>
>Phone: +31 24 361 15 88
>Fax: +31 24 361 23 79
>Homepage: http://schonewille.cjb.net
>
>
>
>
>HCC = HyperCard Club
>To unsubscribe, send an email to:
>hypercardclub-unsubscribe@yahoogroups.com
>
>
>Yahoo! Groups Links
>
>
>
>
>

#819 From: Mark Schonewille <mark.sch@...>
Date: Fri Jul 2, 2004 9:07 am
Subject: Re: [HCC] HEY DO YOU KNOW ABOUT THIS!!!!!!!!OOOHH NO??
ecognoompje
Offline Offline
Send Email Send Email
 
To the moderator of the HyperCard Club.

I urgently request membership of this Yahoo Group to become
restricted. I also request removal of all the sex links from the
Links section on the Yahoo site. If you don't respond positively
to my request, I will have to leave the group. Sorry about that.

Mark

--

University of Nijmegen
Nijmegen School of Management
P.O. Box 9108
6500 HK Nijmegen
The Netherlands

Phone: +31 24 361 15 88
Fax: +31 24 361 23 79
Homepage: http://schonewille.cjb.net

#816 From: Mark Schonewille <mark.sch@...>
Date: Tue Jun 22, 2004 9:11 pm
Subject: What do we do about spam?
ecognoompje
Offline Offline
Send Email Send Email
 
Would you consider restricting access to this group to keep out
spammers?

Mark

--

eHUG coordinator
mailto:europe@...
fax: +1 501 633 94 04
http://home.wanadoo.nl/mark.sch
http://www.ehug.info

#812 From: Mark Schonewille <mark.sch@...>
Date: Tue May 11, 2004 2:41 pm
Subject: eHUG newsletter released
ecognoompje
Offline Offline
Send Email Send Email
 
Dear HyperCard users and other xTalk programmers,

Recently, eHUG released a new edition of its newsletter.
Subjects include Apple's decision to stop selling HyperCard and
the release of Revolution 2.2. If you have not received the
newsletter while you are a member of eHUG, please send a message
to <mailto:europe@...>. If you are not a member but would
like to become one, you can send a message to the same address.

Best regards,

Mark Schonewille
eHUG co-ordinator
http://www.ehug.info

Messages 812 - 846 of 875   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help