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.infohttp://home.wanadoo.nl/mark.schhttp://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.
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]
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
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
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
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]
> 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/
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
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]
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]
>
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.
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.infohttp://home.wanadoo.nl/mark.schhttp://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.
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.schhttp://www.ehug.info
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.schhttp://www.ehug.info
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.schhttp://www.ehug.info
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.schhttp://www.ehug.info
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.schhttp://www.ehug.info
> 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
--
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
--
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...
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.schhttp://www.ehug.info
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!
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@...
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
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
>
>
>
>
>
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
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