Re: Setting drive letter

2011-11-16 Thread Eva Isotalo

Ahh good point Mark. Will do that. Thank you.

What I am trying to accomplish has to do with getting random (as it seem 
to me) errors after changing the start stack of my ancient game and 
saving it with my slightly newer MC. I want to make the game 
downloadable without the need of the CD. The game looks for a file on 
the CD at startup.
Because I can't get around the errors I figured I make the installed 
folder (everything is in one folder including the files the start stack 
looks for) into a virtual disk drive. Preferably right after the 
installation and without extra clicks for the user.
I also need to create a batch file and place it in the start folder 
(have not figured out how to do that yet) so the virtual folder exists 
after reboot. That is the theory of it. :)

If you have any tips  tricks of the batch part of my theory do share.

Cheers,
Eva


On 2011-11-16 12:07, Mark Schonewille wrote:

Hi Eva,

I have no clue what you're doing, but try this:

set the hideConsoleWindows to true
get shell(whatever your shell command is)

This way, the shell gets executed without showing the ugly black window.

--
Best regards,

Mark Schonewille

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


Setting drive letter

2011-11-15 Thread Eva Isotalo

Hi everybody,

Saying it straight away, I'm still using my old MC 2.4.3. :-)

Can I set a drive letter to a folder with MC?
I know how to do it with CMD but wanted to make it a one button click.

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


Re: Setting drive letter

2011-11-15 Thread Eva Isotalo
I found the way with the shell and process, like you suggested. Sent the 
text to the cmd and closed it. Worked really well. :)


Thank you.

Eva

On 2011-11-16 01:16, Ken Ray wrote:


On Nov 15, 2011, at 9:21 AM, Eva Isotalo wrote:


Hi everybody,

Saying it straight away, I'm still using my old MC 2.4.3. :-)

Can I set a drive letter to a folder with MC?


Not sure what you mean by that... what are you trying to make happen?


I know how to do it with CMD but wanted to make it a one button click.


You should be able to do it by executing the same command you'd do at 
the command line, but with the shell() function in MC.


*Ken Ray
*Sons of Thunder Software, Inc.
Email:_k...@sonsothunder.com
_Web Site:_http://www.sonsothunder.com/_



___
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


Re: Even older version MC?

2011-11-04 Thread Eva Isotalo

Thank you Mark.

All paths are relative and the start up stack check where it is situated 
at at start up and saves the path to a custom prop. Everything having a 
path of sort is checking this custom prop where to go.


One thing some untouched stacks reacted to, after saving the start up 
stack with MC 2.4.3, is 'focus btn horse'.  I changed it to 'set focus 
of btn horse to true' which worked but I still get other errors which 
I don't understand why they happen. Error msg don't show reasons or 
points to anything, they are blank.


I can't justify recoding half the game, time and energy wise, just 
because I change a couple of lines in one stack.

So is this a dead end then maybe?


On 2011-11-03 11:49, Mark Schonewille wrote:

Hi Eva,

Just a guess... your app expects to find a CD and then reads files from this 
CD. The path to the files is probably saved in a variable somewhere. Now you 
have disabled this feature and your app can no longer find the files. As a 
result, your scripts no longer work properly. Do you think this could be the 
cause of your problems?

--
Best regards,

Mark Schonewille

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


Even older version MC?

2011-11-03 Thread Eva Isotalo
I'm having irritating issues when trying to adjust our (very old) game. 
We want to make a download version of it since there is still a demand 
for it. The only thing I'm doing is to change the start up file (exe) so 
it doesn't check for a CD in a drive. I then save the start up file. As 
a result I get all kinds of issues with errors in other stacks which I 
haven't touched! I have tried doing this on two Vista systems, 32 and 64 
bits which makes no significant difference.
I  save the file now with MC version 2.4.3 and the game was made with 
the version from year 2000 (can't even remember which version I had 
then). I have looked through backups to find the older MC version with 
no luck.


My Qs:
Are these issues all MC version related or does it also have to do with 
computer system?
Do I need to get hold of the old MC version I purchased once upon a time 
to get rid of these issues? If so, does Runrev still have those old MC 
versions around? Well I can write them directly about that of course. :)


Any suggestions appreciated.
Eva

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


Wait for info from another script?

2011-08-28 Thread Eva Isotalo

I wasn't sure what to write in the subject.

I have a script in a button which asks questions that fills in a form 
which adds bought items to an inventory stack. After each item is added 
one is asked if there are more items to add, if yes script jumps to a 
function which will repeat most of the questions. And so on.
In middle of the script a list field is opened where the user will 
click/choose a line. The field is then closed and one is supposed to get 
back to the first script and continue the questions. This is where I 
can't figure out how to pause the first script so it waits until the 
list field is clicked and closed and the continues. What is the smartest 
way (or any way) to solve this?


The thing is I think I had some solution for this in my first game but 
since my brain is a fraction of what it was due to my illness I can't 
remember.


Any suggestions much appreciated.
Eva
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: Wait for info from another script? - never mind

2011-08-28 Thread Eva Isotalo

Never mind.
I stumbled upon the solution. All good now.
:)

Eva

On 2011-08-28 08:48, Eva Isotalo wrote:

I wasn't sure what to write in the subject.

I have a script in a button which asks questions that fills in a form 
which adds bought items to an inventory stack. After each item is 
added one is asked if there are more items to add, if yes script jumps 
to a function which will repeat most of the questions. And so on.
In middle of the script a list field is opened where the user will 
click/choose a line. The field is then closed and one is supposed to 
get back to the first script and continue the questions. This is where 
I can't figure out how to pause the first script so it waits until the 
list field is clicked and closed and the continues. What is the 
smartest way (or any way) to solve this?


The thing is I think I had some solution for this in my first game but 
since my brain is a fraction of what it was due to my illness I can't 
remember.


Any suggestions much appreciated.
Eva
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


changing file names on the fly

2011-05-17 Thread Eva Isotalo
Is there a way to alter file names in a directory (from a MC script, not 
manually)? :-)


I have hundreds of images of which the name has to be changed slightly.
For example:
*anim1_Angle1.00_  9.png*
must be changed to (space deleted):
*anim1_Angle1.00_9.png*

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


Re: changing file names on the fly

2011-05-17 Thread Eva Isotalo

Great, thanks Klaus!

hugs
Eva


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


Re: setting itemdel

2011-05-08 Thread Eva Isotalo

Thank you!
Seems to work now. :)

Eva

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


setting itemdel

2011-05-07 Thread Eva Isotalo

MC 2.4.3

How do I catch the different parts of a file that has columns like this?:
1   Rose Floral Wax: (Size: 25g; )  FW07-25 £3.65   £3.65
1   Jasmine Grandaflorum Floral Wax (Size: 25g; )   FW03-25 £2.95   
£2.95
1   Mimosa Floral Wax (Size: 25g; ) FW05-25 £2.95   £2.95


I have no problems reading it but I'm trying to make an app that will 
read invoices in to a inventory program where each product will get it's 
own card.


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


Re: setting itemdel

2011-05-07 Thread Eva Isotalo

Thank you guys!
I had placed the itemdel 'tab' in quotes, that's why it didn't work. Sigh...
Works fine now.
And thanks for the great quirky suggestion. :)

Eva


On 2011-05-07 16:44, Michael Kann wrote:

Eva,

I just realized you posted on the metacard list. You might want to 
also check out the

LiveCode list also. It is the more recent version of the metacard list.

Here it is:

How to use LiveCode use-livec...@lists.runrev.com

--- On *Sat, 5/7/11, Mark Schonewille 
/m.schonewi...@economy-x-talk.com/* wrote:



From: Mark Schonewille m.schonewi...@economy-x-talk.com
Subject: Re: setting itemdel
To: Discussions on Metacard metacard@lists.runrev.com
Date: Saturday, May 7, 2011, 9:06 AM

Hi Eva,

I'm not sure what you are having problems with, but if you want to
get the items of a line, you need to set the itemdel to tab.

set the itemDel to tab
put item 2 of line 3 of myData into fld Product

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.6 for LiveCode here
http://qery.us/ce

On 7 mei 2011, at 16:02, Eva Isotalo wrote:

 MC 2.4.3

 How do I catch the different parts of a file that has columns
like this?:
 1 Rose Floral Wax: (Size: 25g; ) FW07-25 £3.65 £3.65
 1 Jasmine Grandaflorum Floral Wax (Size: 25g; ) FW03-25
£2.95 £2.95
 1 Mimosa Floral Wax (Size: 25g; ) FW05-25 £2.95
£2.95



 I have no problems reading it but I'm trying to make an app that
will read invoices in to a inventory program where each product
will get it's own card.

 Eva



___
metacard mailing list
metacard@lists.runrev.com /mc/compose?to=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
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: setting itemdel

2011-05-07 Thread Eva Isotalo
Ok, a continuation. On lines like the following I'd like to be able to 
catch and delete the '(Size: 100ml;)' but keep the '100'. How would I go 
about doing this?


1 Benzoin (Mobile) Siam (Size: 100ml; ) EO16-100 £7.55

Eva


On 2011-05-07 16:06, Mark Schonewille wrote:

Hi Eva,

I'm not sure what you are having problems with, but if you want to get the 
items of a line, you need to set the itemdel to tab.

set the itemDel to tab
put item 2 of line 3 of myData into fld Product

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.6 for LiveCode here http://qery.us/ce

On 7 mei 2011, at 16:02, Eva Isotalo wrote:


MC 2.4.3

How do I catch the different parts of a file that has columns like this?:
1   Rose Floral Wax: (Size: 25g; )  FW07-25 £3.65   £3.65
1   Jasmine Grandaflorum Floral Wax (Size: 25g; )   FW03-25 £2.95   
£2.95
1   Mimosa Floral Wax (Size: 25g; ) FW05-25 £2.95   £2.95


I have no problems reading it but I'm trying to make an app that will read 
invoices in to a inventory program where each product will get it's own card.

Eva



___
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


Re: setting itemdel

2011-05-07 Thread Eva Isotalo

Solved it. Not pretty but works. :)

Eva

On 2011-05-07 18:38, Eva Isotalo wrote:
Ok, a continuation. On lines like the following I'd like to be able to 
catch and delete the '(Size: 100ml;)' but keep the '100'. How would I 
go about doing this?


1 Benzoin (Mobile) Siam (Size: 100ml; ) EO16-100 £7.55

Eva


On 2011-05-07 16:06, Mark Schonewille wrote:

Hi Eva,

I'm not sure what you are having problems with, but if you want to get the 
items of a line, you need to set the itemdel to tab.

set the itemDel to tab
put item 2 of line 3 of myData into fld Product

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage:http://economy-x-talk.com
Twitter:http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.6 for LiveCode herehttp://qery.us/ce

On 7 mei 2011, at 16:02, Eva Isotalo wrote:


MC 2.4.3

How do I catch the different parts of a file that has columns like this?:
1   Rose Floral Wax: (Size: 25g; )  FW07-25 £3.65   £3.65
1   Jasmine Grandaflorum Floral Wax (Size: 25g; )   FW03-25 £2.95   
£2.95
1   Mimosa Floral Wax (Size: 25g; ) FW05-25 £2.95   £2.95


I have no problems reading it but I'm trying to make an app that will read 
invoices in to a inventory program where each product will get it's own card.

Eva


___
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


Re: MC and Vista 64

2011-01-30 Thread Eva Isotalo

Yes, still using the 2.4.3. Maybe it's a lost case.
There are no free updates on that one are there?

Eva

On 2011-01-30 09:42, Ken Ray wrote:

Thank you both! Unfortunately it still is not working.

Hmm... perhaps it's the version of MC; you're still working with 2.4.3?

Ken Ray
Sons of Thunder Software, Inc.
Email: k...@sonsothunder.com
Web Site: http://www.sonsothunder.com/



___
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


Re: MC and Vista 64

2011-01-28 Thread Eva Isotalo

Thank you both! Unfortunately it still is not working.

Eva

On 2011-01-28 04:14, Tariel Gogoberidze wrote:

On Jan 27, 2011, at 1:00 PM, Ken Ray wrote:


Change that portion of the handler to read:

   if cword is not among the lines of the commandNames then
 if cword is the or cword is a number or token 2 of cword is (
 then put value(command, this card)
 else send command to this card
   else
 if debugging then
   debugdo command  return  if the result is not empty then put the
result
 else
   put the globals into tGlobs
   replace $ProgramFiles(x86) with  in tGlobs
   replace $CommonProgramFiles(x86) with  in tGlobs
   do global  the globals  return  command \
return  if the result is not empty then put the result
 end if
   end if
   unlock error dialogs
end returnInField


Ken Ray


I guess the line ..


   do global  the globals  return  command \
return  if the result is not empty then put the result

should be changed to ..

   do global  tGlobs  return  command \
return  if the result is not empty then put the result

as well.

regards
Tariel

___
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


Re: MC and Vista 64

2011-01-23 Thread Eva Isotalo

Thank you Ken, I'm so happy it can be fixed!

The lines I have at the end of the returnInField looks a bit different 
so I'm not sure what/where I should change:


  if cword is not among the lines of the commandNames then
if cword is the or cword is a number or token 2 of cword is (
then put value(command, this card)
else send command to this card
  else
if debugging
then debugdo command  return  if the result is not empty then 
put the result

else do global  the globals  return  command \
 return  if the result is not empty then put the result
  end if
  unlock error dialogs
end returnInField

Eva




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


MC and Vista 64

2011-01-22 Thread Eva Isotalo
Does MetaCard have something against Vista 64 bit? Ever since I got my 
new machine it's giving me errors for common stuff like writing commands 
in the message box. Is this a known issue? Is there a fix?


Eva
MC 2.4-3
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: MC and Vista 64

2011-01-22 Thread Eva Isotalo

I only have the old MC, version 2.4.


On 2011-01-22 12:09, Klaus on-rev wrote:

Hi Eva,


Does MetaCard have something against Vista 64 bit? Ever since I got my new 
machine it's giving me errors for common stuff like writing commands in the 
message box. Is this a known issue? Is there a fix?

Eva
MC 2.4-3

what engine (of Revolution/LiveCode) are you using?
MC 2.4-3 is obviously ther version of the MC IDE.


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com


___
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


Re: MC and Vista 64

2011-01-22 Thread Eva Isotalo

Thanks Klaus.
Yes, it's ancient and it has been a great tool for loads of small, 
useful apps. Guess it has to go in the archives now then.


Eva



On 2011-01-22 13:03, Klaus on-rev wrote:

Hi Eva,


I only have the old MC, version 2.4.

oh, that is a very old version, and I am not sure if this is 100% compatible
with Vista 64bit. It obviously isn't.

Can you upgrade to a more recent version of LiveCode (form Revolution)?
Seem to be the only way to avoid furhter problems.


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com


___
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


matchText and card #

2010-10-09 Thread Eva Isotalo

 Hello everybody,

The matchText works great for my needs but how do I make it go to the 
card where it matched the text? Now it only confirms it has a match and 
that's it.


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


Re: matchText and card #

2010-10-09 Thread Eva Isotalo
 The UTF-8, I used the 'replace' because I got an error on the other 
one and since the 'replace' works it'll be ok to keep it. :)


The matchText. Script is run from an importer stack that imports a cvs 
file with latest orders, checks (order by order) if a customer exists in 
the customer stack and that's where I used the matchText. I first used 
the find but needed to do both name and first line of address so the 
matchText worked brilliantly. BUT, I can't get to the card of that 
stack, or at least I don't know how.




On 2010-10-09 15:34, Richard Gaskin wrote:

On 10/9/10 6:14 AM, Eva Isotalo wrote:

Hello everybody,

The matchText works great for my needs but how do I make it go to the
card where it matched the text? Now it only confirms it has a match and
that's it.


MatchText returns a Boolean value.  Have you considered lineOffset? 
What does your data look like that you need to query?


PS: Did you get your UTF-8 issue resolved?  If not let's explore that.

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


Re: matchText and card #

2010-10-09 Thread Eva Isotalo

 Thank you Richard.
No worries about the UTF-8 thingy since it works at the moment but I'll 
take you up on the helping hand if I run in to issues later on. :)


Your hefty beta testing sounds like a lot of work but it's good to have 
it done before going live.


I'm not fond of the cvs solution either. I do have an option of using 
the order emails arriving (had it solved up to where I was to sort out 
what was worth keeping and what was garbage) but with my limited brain 
functions it seemed easier with the cvs. These particular ones look like 
this:
1;tinyl...@gmail.com;00050;Chocoras;50.00;1;08-10-2010 12:02;Karin 
Fröjd; (and so on). Item 1 being the order #. If several different items 
been ordered they come on one line each but with same order #. I have no 
control over the format of the cvs unfortunately.


Stack is not set up in any particular way so far, no names on the cards, 
only customer names separates one card from the other. Maybe I should 
number them in a field to make sure they behave.


I'll do some tests with your nifty code.
Big thanks!

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


Re: matchText and card #

2010-10-09 Thread Eva Isotalo
 About the finding customer issue, I think I should clarify a bit about 
the flow.


Stack One, the cvs is imported and script is run to pick out and save 
the data to Customer stack and Order stack.
I take the name in first order, (first line, item 8) from the order list 
(the cvs in stack One) and store it in variable gName.

Same with street address (first line, item 9), store it in gAddress.

Now I need to search the Customer stack (in fld addressFld) and check if 
the customer exists already.


I hope this clears it up a bit.
___
metacard mailing list
metacard@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/metacard


Re: matchText and card #

2010-10-09 Thread Eva Isotalo

 Ok, I'm going to do a not pretty version but that I think will work.

When creating a new card for the customer the app will place 'name'  
'first line of address' in a hidden field  which will be the one I do 
the search against. And/or I could have the card named like that.

Unconventional but working me thinks. :)

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


Re: utf-8

2010-10-07 Thread Eva Isotalo

 Hey Richard

Good to see you are still around. :)  Are things well with you?

Thank you for the code. I'm getting an error:

uniEncode: bad parameter
Expression: missing ) before factor

cursor is at the end of the code (at the X):
uniEncode(tData, *X*UTF8)


Eva


On 2010-10-07 00:50, Richard Gaskin wrote:

On 10/6/10 3:38 PM, Eva Isotalo wrote:

Thanks Shari, good to hear it's still alive.
I have temporarily solved it by running through the file and replacing
the bad letters. Done in a wink but not pretty. :)


Try this:

  put url (binfile: tFilePath) into tData
  set the unicodeText of fld MyField to uniencode(tData, UTF8)


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv
___
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


utf-8

2010-10-06 Thread Eva Isotalo

 Long time, not been around.
Is this list still alive?

I'm still using the old MC 2.4.1 and am having char issues when reading 
from file. The file I'm reading is a .csv exported in utv-8 format. For 
some reason the (Swedish) text in mc field shows up scrambled. I don't 
remember how to fix this within mc but I have a vague memory that it was 
possible.
I don't want to use any translator or extra steps because I'm trying 
to create a one-click solution here. :)

Any suggestions much appreciated.

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


Re: utf-8

2010-10-06 Thread Eva Isotalo

 Thanks Shari, good to hear it's still alive.
I have temporarily solved it by running through the file and replacing 
the bad letters. Done in a wink but not pretty. :)


Eva

On 2010-10-07 00:33, Shari wrote:

Long time, not been around.
Is this list still alive?



Cannot assist with your question but the list is still alive!

Shari

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


RE: off topic PHP

2002-05-29 Thread Eva Isotalo

I have also recently started with PHP. There are tons of tutorial, free 
scripts, some free editors, and more on the net.
I suggest you do a search with for example google: php +tutorial +scripts 
+download
That will keep you busy for awhile. ;o)   Here is a couple:

phpbuilder.com (tuts and scripts and forum)
devshed.com
phpedit.com (free editor)

Regards,
Eva



At 11:58 2002-05-28 -0600, you wrote:
Hi all,

I'm using PHP for a certain project. Being a PHP newbie, I'm looking for 
resources to help me. Does anyone know of a mailing list (like this great 
MetaCard list) for PHP developers?

TIA,
Leston

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard



[Metacard] Good ol' MC

2001-11-27 Thread Eva Isotalo

Well I'm back. Just wanted to say hi.
I have been developing my new game with another, which I thought more game 
friendly program but I'm back with MC again. So I will make a mix with MC 
and this other program and that seems to work ok.
Good old MetaCard!
Nice to see you are all still here. :o)

Eva Isotalo
Sweden

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard



Images disappearing

2001-06-08 Thread Eva Isotalo

Hi all,

A strange thing occurred resent.
I have images which can be dragged around. There is a script checking 
if it is on the backdrop so the image bounces back if dropped 
outside. But all of a sudden if dragging an image to the black 
backdrop it drops with me still having the mouse button down. It 
ignores the mouseUp command and exits.
A couple of days after this was discovered I did some cleaning of 
the computer (throwing away old files and such). I also cleaned the 
quick start menu bar, since I don't like to have anything being on 
in the background. I only had a Logitech optical mouse thing being 
there which I took off. To sum it up: After this cleaning the images 
behaved as they should! Has anyone encountered anything like this? 
And what is doing it?

Regards,
Eva

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: games (was: all for commercial MC-based apps)

2001-04-03 Thread Eva Isotalo

David wrote:

Eva - let's have a look at your site? What's the URL?

It is in Finnish but simple and mostly images so it ought to be 
possible to understand it. Our market is girls between 7 and 14, so 
it is a "girly" place. There is a demo under "Lataa ilmainen demo".

Code is "open" only the intro is a standalone the rest are ordinary 
MC stacks. The name means: Dream horse.

Regards,
Eva

http://www.unelmahevonen.com

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Is list down?

2001-02-28 Thread Eva Isotalo


Hi list,
I haven't recieved any messages for a couple of days. Is everyone off 
on vacation or is the list down?

Regards,
Eva

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: This may be off topic...

2001-02-12 Thread Eva Isotalo

To get back to the point, perhaps we need to find out which Country is
really big on cheese?

France! End of subject.

Eva

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: statistics

2001-01-28 Thread Eva Isotalo

Maby the script in example 4 in the examples stack could be of some help.

Regards,
Eva


--- [EMAIL PROTECTED] wrote:

I want to determine the correlation (relationship)
between 2 groups ie. lines of data in 2 separate
fields.

-

Can you describe your goal in statistical (or better
yet) mathematical terms?

Michael Kann, [EMAIL PROTECTED]

__
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.


Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: Connection Speed

2001-01-20 Thread Eva Isotalo

In Sweden a lot of people in the larger cities now have fast 
connections. Up north (we are 70 kilometers from the artic circle) in 
the little village we live there is no fast connections in sight for 
years. :o(

Eva


I have a question for everyone - how many people are still using a 
56K modem?  I take my cable connection for granted, it's simply on 
all the time (great!).

This does have to do with MetaCard in general, you can reply 
directly to me if you wish.
--


Cheers,
Simon

All your .com .net and .org domains for only $14.50 each.
Get them while they last... http://www.amigo-3.com/hosting/

--
"The great discoveries in science are not punctuated by 'Eureka! 
I've found it!' but rather "Hmmm,that's funny" Isaac Asimov
Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.


Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: layers in groups

2000-11-15 Thread Eva Isotalo

Thanks Kevin!

Is it so that this 'relayerGroupedControls' is so new that it does not
work with any older version of MC? I tried it earlier but had problems
on the PC.

Oh well, I made a 'work around' and the proj is sent for CD-printing already.

Regards,
Eva



Kevin Miller wrote:
 
 On 15/11/00 10:13 am, Eva Isotalo [EMAIL PROTECTED] wrote:
 
  I'm having problems on Mac and MC 2.3.2B4 and layers in groups. It says
  the card has to be open, allthough the card is *very* open. If the
  object is not in a group there is no problem.
 
  There must be something I'm missing here. Any ideas?
 
 You can't set the layer of an object in a group unless you have the
 relayerGroupedControls global property set to true.  Note that if that
 property is set to true, you can add and remove objects from groups simply
 by relayering them.
 
 Regards,
 
 Kevin
 
 Kevin Miller [EMAIL PROTECTED] http://www.runrev.com/
 Runtime Revolution Limited (formerly Cross Worlds Computing).
 Tel: +44 (0)131 672 2909.  Fax: +44 (0)1639 830 707.
 
 Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
 Info: http://www.xworlds.com/metacard/mailinglist.htm
 Please send bug reports to [EMAIL PROTECTED], not this list.

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: global coordinates

2000-11-10 Thread Eva Isotalo

Hi Xavier,

The 'loc' is the centre of the window, image, button, etc. I think what
you need is the 'topleft'.

set the topleft of stack myStack to 3,3

Regards,
Eva


Xavier Bury wrote:
 
 i dont know if this is a bug but this script just doesn't work the way it's
 supposed to...
 
 set the loc of stack "mctools" to "3,3"
 
 puts half the MC window beyond the left edge of the screen.
 
 what's up with that? (tested only on windows!)
 did I miss something?
 Xavier
 
 Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
 Info: http://www.xworlds.com/metacard/mailinglist.htm
 Please send bug reports to [EMAIL PROTECTED], not this list.

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re:... double posting

2000-10-16 Thread Eva Isotalo

Hi Blair,

Do you mean my postings come double every time? Or what do you mean. I
don't have MC address at all in my address book. Please explain.

Regards,
Eva



Icon, again

2000-10-14 Thread Eva Isotalo

Hi all,

It is the same old story again - custom icon on mac when burning a CD-rom.

I got good ideas and tricks last time, and they worked as long as
everything stayed on the computer but not when it came to making the CD. 

As soon as I drag the files to the CD (Toast 4.1.1) the icon turns into
'hand with pen'.

Has anyone found a way making the custom icon stay foot yet?

Regards,
Eva