Re: backcolor for cascading menus anyone?

2007-08-01 Thread Malte Brill
Reading my post I think I was not clear enough what I need. I want the white area you can see in the snapshot to be gray also. Any pointers highly appreciated. Malte ___ use-revolution mailing list use-revolution@lists

Shy Images

2007-08-01 Thread Len Morgan
I've got a problem with trying to drag an image from one group to another. The image seems to be behind every other object on the page. What I have is a 4 x 3 grid of groups. Each group has an image, a couple of text fields, and another small group of circles that look like a traffic light.

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Mark Schonewille
Hi Klaus, Unicode is not broken on Intel Macs (at least not more than usual). It just works the same way as on Intel PC's. Mind the endian. Best regards, Mark Schonewille -- Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http;//www.salery.com Quickly extract

unidecode broken on Intel Macs?

2007-08-01 Thread Klaus Major
Hi friends, maybe I missed this, but looks like unidecode broken is on Intel Macs? OS X 10.4.10Rev 2.8.1 gm3 (or whatever was the last build) I developed a routine on an G5 to import VCF cards in 2.x AND 3.x format. Format 3.x comes (from addressbook) in uniencod-ed. Then I simply: put unide

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Klaus Major
Dag Mark, Hi Klaus, Unicode is not broken on Intel Macs (at least not more than usual). :-) It just works the same way as on Intel PC's. Mind the endian. Ah, I see... ??? :-) Maybe you could get a TINY BIT more specific? Best regards, Mark Schonewille -- Economy-x-Talk Consulting an

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Mark Schonewille
Klaus, The bytes in a word in a Unicode document created on a big-endian processor, such as the Macintosh, are arranged in an order opposite to that of the bytes in a word in a document created on an Intel processor. This means that you may have to revert all bytes in your unicode stream.

Re: [slightly [OT]] A little Help removing Galaxy

2007-08-01 Thread william humphrey
I also know there is a galaxy support forum. But what galaxy really really really needs is a simple PDF with maybe three pages of instructions that you can print out. I searched all the galaxy help files both the internet and the program and found no mention of how to comment and un-comment a scrip

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Mark Smith
A big-endian (motorola) unicode character will be in the form : msb lsb, so if the character falls within the ascii range, say "A", then it will be . If it's in little-endian (intel) format, the same char will be . Unidecode simply removes the most significant byte of each unicode char/

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Klaus Major
Hi Mark, A big-endian (motorola) unicode character will be in the form : msb lsb, so if the character falls within the ascii range, say "A", then it will be . If it's in little-endian (intel) format, the same char will be . Unidecode simply removes the most significant byte of each uni

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Mark Smith
Part of the trouble is that Revs Unicode handling doesn't include any ability to use Byte-Order Marks (BOM). These are pairs of bytes at the start of a unicode string that expresses the byte order of the string that follows. Rev simply assumes that the byte-order is that of whatever process

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Malte Brill
Hi Klaus, assuming your Text is UTF-8 try this put uniDecode(uniEncode(uniEncodedVar,"UTF8"),"english") into decodedVar Hope that helps. Malte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubs

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Klaus Major
Hi Mark, Hi Klaus, You are right, but only with regard to languages that can be expressed in single-byte characters. If you are working with double- byte languages, you can't simple unidecode into single-byte characters. Apparently, Rev 1.0 couldn't handle Chinese and Arabic (but I never

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Mark Schonewille
Hi Klaus, You are right, but only with regard to languages that can be expressed in single-byte characters. If you are working with double- byte languages, you can't simple unidecode into single-byte characters. Apparently, Rev 1.0 couldn't handle Chinese and Arabic (but I never tried that

Re: unidecode broken on Intel Macs?

2007-08-01 Thread Klaus Major
Hi Malte, Hi Klaus, assuming your Text is UTF-8 try this put uniDecode(uniEncode(uniEncodedVar,"UTF8"),"english") into decodedVar thanks, but does not work for me. I test with VCF card from OS X AddressBook in 3.0 format. But Mark Smith's little function does the job nicely :-) Thanks aga

Re: Shy Images

2007-08-01 Thread Ken Ray
On Wed, 01 Aug 2007 07:12:09 -0500, Len Morgan wrote: > Any ideas? Could I somehow duplicate the image I start with, make it > a top level image, and switch what Rev thinks it's dragging to that? That's exactly what I was about to suggest... you'll need to make a copy, but not just inside the

Re: [slightly [OT]] A little Help removing Galaxy

2007-08-01 Thread william humphrey
I remember using galaxy once and found a secret key combination that made even nicer commenting than the default runrev ones but I can't discover it again. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

Re: [slightly [OT]] A little Help removing Galaxy

2007-08-01 Thread Stephen Barncard
"cmd shift - " will undo comments. It's slightly broken in the new beta and requires a few extry keystrokes to reverse direction, but it's neither nonstandard or 'fancy'. I also know there is a galaxy support forum. so why not go there? Jerry usually answers within a day or so. But what g

mercy...Control-A and text selection revisited

2007-08-01 Thread Mark E. Powell
Sorry, the archives are not solving this for me and I need to throw myself on the mercy of the list. After a user enters cursor in a fld (its traversalOn property is true), I want control-A to select the text of that fld. How do I do it? The focusedObject is the fld, but the controlkeydown mes

Re: backcolor for cascading menus anyone?

2007-08-01 Thread FlexibleLearning
> Reading my post I think I was not clear enough what I need. I want the > white area you can see in the snapshot to be gray also. > > > > Any pointers highly appreciated. Hi Malte, You can't. Cascaded menus seem live in a world of their own and do not seem to

use-revolution@lists.runrev.com

2007-08-01 Thread Judy Perry
Hi, Maybe it's the Florida vacation humidity affecting my already feeble brain, but I'm having problems with the following: repeat with n = 1 to 15 put "penny" & n into myPenny hide image myPenny end repeat I get: Message execution error: Error description: Chunk: no such object when I run the

use-revolution@lists.runrev.com

2007-08-01 Thread Mark Schonewille
Hi Judy, What is really in n? Is it possible that n contains 1.0, 2.0 etc instead of 1, 2 etc? I had a similar problem after setting the numberformat. Best regards, Mark Schonewille -- Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http;//www.salery.com Qui

use-revolution@lists.runrev.com

2007-08-01 Thread Judy Perry
Well... I dunno. I don't think I've ever set the numberFormat (haven't had a reason to). But it seems to be working now... after numerous times of it not working. Honestly... my computer is infected :-/ Thanks, Mark. Judy On 8/1/07, Mark Schonewille <[EMAIL PROTECTED]> wrote: > Hi Judy, > > W

BvG Docu with WebNotes updated (Was Re: [ANN] BvG Docu gets an add-on AAG WebNotes)

2007-08-01 Thread Andre Garzia
Friends, I've updated the stack so the sliders work, when I first created it, I didn't knew they were sliders :-/ my mistake. get it from http://www.andregarzia.com/rev/docuwebnotes.rev still there will be more updates on the following days. andre ___

RevZip Behavior in Vista

2007-08-01 Thread Derek Bump
I'm noticing some weird behavior within Revolution that I really would like to resolve. 1. I've got a project that compresses a bunch of files to a zip file using the RevZip external. It works wonderfully, but Vista seems to think my project is "Not Responding" even when it's working just fine.

save data in custom properties in a stack- or a text file?

2007-08-01 Thread Josh Mellicker
I know stacks are a nice way to save a lot of data because it can be organized by custom property and custom property set. But what about a simple list of data consisting of name, URL, and a couple other fields, that needs to be downloaded from a server- would you save the data in: A. a s

Re: mercy...Control-A and text selection revisited

2007-08-01 Thread Sarah Reichelt
On 8/2/07, Mark E. Powell <[EMAIL PROTECTED]> wrote: > Sorry, the archives are not solving this for me and I need to throw myself on > the mercy of the list. > > After a user enters cursor in a fld (its traversalOn property is true), I > want control-A to select the text of that fld. How do I do

Re: save data in custom properties in a stack- or a text file?

2007-08-01 Thread Richard Gaskin
Josh Mellicker wrote: I know stacks are a nice way to save a lot of data because it can be organized by custom property and custom property set. But what about a simple list of data consisting of name, URL, and a couple other fields, that needs to be downloaded from a server- would you sa

Re: save data in custom properties in a stack- or a text file?

2007-08-01 Thread Stephen Barncard
there are so many ways and so many different solutions... all good. No method is inherently 'easier'. You have to focus on what's best for your user. Will this be used by many or just one person? Does it need to travel with the app or does there need to be prefs for multiple users? Text File

Re: save data in custom properties in a stack- or a text file?

2007-08-01 Thread Mark Smith
One other consideration is how the data is to be used. Even though the data maybe simple, if you were going to load it into an array in your app, then saving it as a customPopertySet in a stack file might be easier. from a text file to an array goes from put URL "file:someFile.txt" into tA

Re: BvG Docu with WebNotes updated (Was Re: [ANN] BvG Docu gets an add-on AAG WebNotes)

2007-08-01 Thread Sarah Reichelt
On 8/2/07, Andre Garzia <[EMAIL PROTECTED]> wrote: > Friends, > I've updated the stack so the sliders work, when I first created it, I > didn't knew they were sliders :-/ my mistake. > > get it from http://www.andregarzia.com/rev/docuwebnotes.rev > Hi Andre, This is fantastic. I hope Rev takes it

Re: Voyager Multimedia

2007-08-01 Thread Timothy Miller
Already the Stravinsky Voyager CD is quite hard to find and selling at $60 or so from used book and CD dealers. But it seems more desirable for these to remain available to the public, and useable on a non-legacy computer. "If Monks Had Macs" was originally a Voyager HyperCard stack, if I'm

Re: BvG Docu with WebNotes updated (Was Re: [ANN] BvG Docu gets an add-on AAG WebNotes)

2007-08-01 Thread Andre Garzia
Thanks for the kind words Sarah, I've made a little update, Mark Smith identified a problem with commands that have a space in it such as answer file... I've fixed to make spaces into underscores. I moved your comment to answer file. I'll add editing and comment removal in the next days. I'll also

Re: save data in custom properties in a stack- or a text file?

2007-08-01 Thread J. Landman Gay
Josh Mellicker wrote: I know stacks are a nice way to save a lot of data because it can be organized by custom property and custom property set. But what about a simple list of data consisting of name, URL, and a couple other fields, that needs to be downloaded from a server- would you save t

Re: BvG Docu with WebNotes updated (Was Re: [ANN] BvG Docu gets an add-on AAG WebNotes)

2007-08-01 Thread Sarah Reichelt
On 8/2/07, Andre Garzia <[EMAIL PROTECTED]> wrote: > Thanks for the kind words Sarah, I've made a little update, Mark Smith > identified a problem with commands that have a space in it such as answer > file... I've fixed to make spaces into underscores. I moved your comment to > answer file. > I'll

Re: Find Command

2007-08-01 Thread Richard Gaskin
RG Teeter wrote: I am recreating some hypercard stacks. I am having a problem with "find" The handler below: on mouseUp 1 select the clickline 2 put the selectedtext into wordToFind 3 find string wordToFind in field "TestFld2" 4 put wordToFind & the result 5 find string

Find Command

2007-08-01 Thread RG Teeter
Friends, I have recently upgraded from HyperCard to Revolution Media. I am recreating some hypercard stacks. I am having a problem with "find" The handler below: on mouseUp 1 select the clickline 2 put the selectedtext into wordToFind 3 find string wordToFind in field "TestFld2"