Re: Sliders Images

2008-08-05 Thread Eric Chatonet
on scrollbarDrag pPos set the layer of img (blue pPos) to top end scrollbarDrag Le 5 août 08 à 11:39, H Baric a écrit : And so onto a new headscratcher for today: I was just wondering how to do this: I have a slider with 1 - 3 start/end. There are 3 images in a pile so only the top one is

Re: Sliders Images

2008-08-05 Thread H Baric
Excellent! Merci! - Original Message - From: Eric Chatonet [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com Sent: Tuesday, August 05, 2008 7:37 PM Subject: Re: Sliders Images on scrollbarDrag pPos set the layer of img (blue pPos) to top end scrollbarDrag

Re: Sliders Images

2008-08-05 Thread H Baric
Thanks Mark I'll try it out now, cheers! - Original Message - From: Mark Schonewille [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com Sent: Tuesday, August 05, 2008 8:30 PM Subject: Re: Sliders Images Hi Heather, A better way to do this might be to use a

Re: Sliders Images

2008-08-05 Thread Eric Chatonet
Mark's idea sounds good because it does not reorganize layers but I would add a condition to not run the code if it's not needed: on scrollbarDrag thePos if the icon of btn x the id of img (blue thePos) then set the icon of btn x to the id of img (blue thePos) end if end

Toggle standard button hilite through a field

2008-08-05 Thread Ian McKnight
Hi I'm sure there's something simple that I'm missing here but I would appreciate any help offered. I have a field sitting on top of a button. When I click the field I want the button to respond as if it itself were clicked. The field / button combination are part of a group which is placed on a

Re: Getting the text content of a HTML page

2008-08-05 Thread H Baric
Wow Eric, great work! A valuable contribution to be sure :) I have found gold in the conference stacks especially! Thanks s much. Woohoo stop me now :-D I'm in Australia by the way (anyone else from Oz here?) I've noticed it gets busy at the time I should be Zzz-ing. I don't mind if I

Re: Sliders Images

2008-08-05 Thread Mark Schonewille
Hi Heather, A better way to do this might be to use a button with an icon. Set the icon of the button to the ID of the first image. Then use this script: on scrollbarDrag thePos set the icon of btn x to the id of img (blue thePos) end scrollbarDrag -- Best regards, Mark Schonewille

Re: Sliders Images

2008-08-05 Thread H Baric
not run the code if it's not needed Sorry Eric can you please explain why or when it wouldn't be? Thanks! Cheers, Heather - Original Message - From: Eric Chatonet [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com Sent: Tuesday, August 05, 2008 8:48 PM

Sliders Images

2008-08-05 Thread H Baric
And so onto a new headscratcher for today: I was just wondering how to do this: I have a slider with 1 - 3 start/end. There are 3 images in a pile so only the top one is viewable at a time. When user slides slider, show an image (bring to top?) that corresponds to the slider position: The

Re: Sliders Images

2008-08-05 Thread Eric Chatonet
Add a 'beep' in your scrollbarDrag handler and you will hear continuous beeps even if the thumb position does not actually change: So adding a condition to check if the image has to change is a good idea because without it you'll change the image continuously even if it's not needed: This

Re: Sliders Images

2008-08-05 Thread Eric Chatonet
Sorry I was not clear enough: Add a 'beep' in your scrollbarDrag handler and you will hear continuous beeps when dragging scrollbar's thumb even if the reported thumb position in the scrollbarDrag handler does not actually change. Le 5 août 08 à 14:18, H Baric a écrit : Thanks for making

Re: Sliders Images

2008-08-05 Thread H Baric
Forgot to say, I will remember use such conditions regardless, as you say good practice especially as things differ from sytem to system etc. So TY :) Cheers, Heather - Original Message - From: Eric Chatonet [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com

Re: Sliders Images

2008-08-05 Thread H Baric
That's what I did Eric, well I'm pretty sure I did! (on scrollbarDrag thePos ; set the icon of btn bgImage to the id of img (blue thePos) ; beep) Though I just tried again, and my beeps aren't oh wait there it goes HAHA. Only about 20 seconds after I moved the slider hahahaha I reallly need a

Scour.com invite from Md. Musfiqur Rahman

2008-08-05 Thread Md. Musfiqur Rahman
Hey, Did you hear about Scour? It is the next gen search engine with Google/Yahoo/MSN results and user comments all on one page. Best of all we get paid for using it by earning points with every search, comment and vote. The points are redeemable for Visa gift cards! It's like earning credit card

Re: Sliders Images

2008-08-05 Thread Eric Chatonet
Here is the explanation: The scrollBarDrag message is sent by the engine every time that the 'real' thumb position has changed by one pixel. So this message may fire several times in some milliseconds if you move the thumb quickly. On the other hand, 'beep' sound is longer than that. Then if

Re: Sliders Images

2008-08-05 Thread Randy Hengst
Hi Heather, I just woke up and saw this thread and it looks like you've received plenty of good advice already. I'm a relative rookie at all this, but thought I'd share an example that might give you some ideas. I used a slider in program to help students practice telling time -- the slider

[OT] Scour: a disease that kills cattle.

2008-08-05 Thread Richmond Mathewson
I don't know who Md. Musfiqur Rahman is, but: http://forums.digitalpoint.com/showthread.php?t=955786 Certainly I would not trust a web-search facility that is named after a nasty disease that kills cattle: http://homepage.eircom.net/~progers/scourall.htm Liver Flukes are not very good for

Database Query Builder

2008-08-05 Thread Kurt Kaufman
...To start, I'll read the manual, do the tutorials, etc. before I ask additional questions. My printed user manual arrived, and the information I needed is right there at sections 8.5.1 and 8.5.2. I don't know how I missed the first sentence at 8.5.1! Maybe there's something special about

Re: Sliders Images

2008-08-05 Thread Eric Chatonet
Bonjour Randy, I could not resist... You could save your time using a more modular code :-) on scrollbarDrag pValue SetValue pValue -- end scrollbarDrag - on SetValue pValue set the label of button Show and Say Answer to item pValue of Show and Say

Some Stacks Won't Open in Finder in OS X?

2008-08-05 Thread joe
Sarah; i can't find your AppleScript droplet called Rev Droplet File Type Converter' on the User contributions section of the Rev website; I can't even find the User contributions section. Help! Can you link me?(Thanks) -- Joseph A. Berg Berg Architectural Signage 360-275-1411 voice or fax

Re: Very simple cursor problem

2008-08-05 Thread stevex64
I knew it would be simple. Thank you both for your input! Steve -- View this message in context: http://www.nabble.com/Very-simple-cursor-problem-tp18028333p18167324.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Re: how to for making a commercial library for runrev (barcode analysis)

2008-08-05 Thread [EMAIL PROTECTED]
Hello Tiemo, nice to meet you here fighting against your 1000 videos ... and your videos against you ;-) I hope you still are glad about your migration to runrev as I am in most cases. Hi Jan, thank you for your advices! For contacting runrev it would be to early for me I think (I guess the

Re-2: Windows Remote Desktop Support (in 2.9. really fine) + Question: Citrix

2008-08-05 Thread Franz Böhmisch
Thank you Steve for this valuable information! Regards, Franz Original Messageprocessed by David InfoCenter Subject: Re: Windows Remote Desktop Support (in 2.9. really fine) + Question: Citrix (03-Jul-2008 15:25) From:Steve Paris [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Creating variables

2008-08-05 Thread Éric Miclo
Hello, I've 2 lists of names and want to create variables by combining the names of the 2 lists. Example: listOne is: A B C listTwo is: 1 2 and I want to create those variables: A1 A2 B1 B2 C1 C2 I did try this: repeat for each line lineListOne in listOne repeat for each line

database query problems

2008-08-05 Thread Jim McNeely
Hello all, I am just starting to try out Revolution; I'm coming from being a FileMaker and PHP developer. I'm using MySQL for the backend of my test solution; I'm trying to build an example with the database query builder just for grins, and it keeps changing the settings for the

Re: Table Field documentation/tutorials/hints/anything

2008-08-05 Thread Gordon Sande
Date: Wed, 23 Jul 2008 10:27:43 +0200 From: Eric Chatonet [EMAIL PROTECTED] Subject: Re: Table Field documentation/tutorials/hints/anything To: How to use Revolution use-revolution@lists.runrev.com Bonjour Gordon, Le 22 juil. 08 à 22:25, Gordon Sande a écrit : I was hoping to use RunRev to

Re: 3.0.0-dp-8 available

2008-08-05 Thread Pierre Sahores
Dear Rev Team ! Just a quick note to let you know how happy and lucky i feel :-) I went able to test extensivelly and successfully Bernard DP-8 in running a complex AI Business Intelligence app i'm developping at this time. All the tested platforms (see below) gived the same very good

Trip to Beijing -- Olympics -- anyone else?

2008-08-05 Thread Mark Rauterkus
Hi, Any RunRev users in Beijing? I'm going to the Olympic Games as a spectator -- and we will be in China for the month. Anyone want to get together there? Send me an email directly: [EMAIL PROTECTED] We have an apartment in BJ's 'silicone valley.' -- Ta. Mark Rauterkus [EMAIL PROTECTED]

Re: Speeding up get URL

2008-08-05 Thread Brian Yennie
Shari, I'm not sure there is much you can do to speed up the fetching of URLs, but my two suggestions would be: 1) See if you can process more than one download at a time - this will be more complex to code, but may be a bit faster so that 1 slow download doesn't affect another. Of

Re: Speeding up get URL

2008-08-05 Thread Alex Tweedly
Sarah Reichelt wrote: On Mon, Aug 4, 2008 at 12:35 AM, Shari [EMAIL PROTECTED] wrote: Goal: Get a long list of website URLS, parse a bunch of data from each page, if successful delete the URL from the list, if not put the URL on a different list. I've got it working but it's slow. It

Re: Arrays, recursion and crashes?

2008-08-05 Thread David Bovill
Still hammering away at this bug. It seems something to do with introducing bad data when deleting an array key. I use the syntax: delete local someArray [someKey] When I delete a particular key I see strange chars - probably from binary data in the field displaying the result. I looks like

Re: Creating variables

2008-08-05 Thread Eric Chatonet
Bonjour Eric, Le 6 juil. 08 à 22:38, Éric Miclo a écrit : repeat for each line lineListOne in listOne repeat for each line lineListTwo in listTwo put (lineListOne lineListTwo) into varName put test into varName end repeat end repeat put whatever into tContents do put tContents

Re: Arrays, recursion and crashes?

2008-08-05 Thread David Bovill
Fixing the array keys to use simple numeric strings (hashes for now) rather than keys based on the names of controls fixes the crashes - so the problem is not with call-by-reference or recursion. I'll try different naming schemse to see what sort of names create the crash - I assume it is some

Re: Creating variables

2008-08-05 Thread François Chaplais
Le 5 août 08 à 16:12, Eric Chatonet a écrit : Bonjour Eric, Le 6 juil. 08 à 22:38, Éric Miclo a écrit : repeat for each line lineListOne in listOne repeat for each line lineListTwo in listTwo put (lineListOne lineListTwo) into varName put test into varName end repeat end repeat

Re: Very simple cursor problem

2008-08-05 Thread Mark Schonewille
What was this about? -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html for more info. On 28 jun 2008, at 06:30,

Re: Arrays, recursion and crashes?

2008-08-05 Thread Trevor DeVore
On Aug 5, 2008, at 10:42 AM, David Bovill wrote: Fixing the array keys to use simple numeric strings (hashes for now) rather than keys based on the names of controls fixes the crashes - so the problem is not with call-by-reference or recursion. I'll try different naming schemse to see what

Re: The Euro symbol

2008-08-05 Thread Devin Asay
On Aug 4, 2008, at 4:24 PM, Martin Baxter wrote: Devin Asay wrote: 1. The html entity for the Euro symbol is curren; I guess you are a mac user Devin? The html entity for the euro symbol used in web pages is euro;. curren; may give you the euro symbol on a mac, IIRC mac roman replaced its

Re: [OT] Scour: a disease that kills cattle.

2008-08-05 Thread Richard Gaskin
A search for key phrases in his email shows 220,000+ hits. Apparently this is just spam. I'm cc'ing Heather with this, and hopefully she'll be able to suspend the spammer's account and avoid the perception that this list can be used for unrelated product promotion. -- Richard Gaskin

Re: [OT] Scour: a disease that kills cattle.

2008-08-05 Thread Eric Chatonet
I have done it yet four hours ago but two heads are better than one :-) Le 5 août 08 à 18:43, Richard Gaskin a écrit : A search for key phrases in his email shows 220,000+ hits. Apparently this is just spam. I'm cc'ing Heather with this, and hopefully she'll be able to suspend the

Re: [OT] Scour: a disease that kills cattle.

2008-08-05 Thread Heather Nagey
Looks like he's been in, hit, and left. Can't find any trace of him anymore. I'll keep an eye out in case he does resurface. Heather On Aug 5, 2008, at 5:43 PM, Richard Gaskin wrote: A search for key phrases in his email shows 220,000+ hits. Apparently this is just spam. I'm cc'ing

Re: Getting the text content of a HTML page

2008-08-05 Thread Richard Gaskin
Jim Ault wrote: Richard wrote: This function takes care of that, and this far benchmarks about an order of magnitude faster: function HtmlTextMethod pHtml put the properties of the templateField into tSaveProps set the htmlText of the templateField to pHtml get the text of the

Re: Getting the text content of a HTML page

2008-08-05 Thread Jim Ault
On 8/5/08 10:18 AM, Richard Gaskin [EMAIL PROTECTED] wrote: But given its blindingly fast performance and the scope of things it handles in well-optimized machine-compiled code in the engine, it seems a good starting point for a more complete function which would have relatively little other

Re: Speeding up get URL

2008-08-05 Thread Dave Cragg
On 4 Aug 2008, at 13:00, Alex Tweedly wrote: You should be able to achieve that using 'load URL' - set off a number of 'load's going and then by checking the URLstatus you can process them as they have finished arriving to your machine; and as the number of outstanding requested URLs

Re: Sliders Images

2008-08-05 Thread Randy Hengst
Hi Eric, Thank you for the ideas. I hoped someone would help me see some other options. take care, randy - On Aug 5, 2008, at 8:42 AM, Eric Chatonet wrote: Bonjour Randy, I could not resist... You could save your time using a more modular code :-) on scrollbarDrag pValue SetValue

Re: Arrays, recursion and crashes?

2008-08-05 Thread David Bovill
Good idea. Im not part of the 3.0 beta programme - got a studio license. How do I? I think I should be trying out the new array stuff as I will definitely be using it for tree type structures. 2008/8/5 Trevor DeVore [EMAIL PROTECTED] On Aug 5, 2008, at 10:42 AM, David Bovill wrote: Fixing

BETA PGM was Arrays, recursion and crashes?

2008-08-05 Thread Stephen Barncard
David, you've been known to the list for some time. I think you'll pass the audition. http://www.runrev.com/developers/getting-started/beta-signup/ At 9:20 PM +0100 8/5/08, David Bovill wrote: Good idea. Im not part of the 3.0 beta programme - got a studio license. How do I? I think I should

Re: The Euro symbol

2008-08-05 Thread Martin Baxter
Devin Asay wrote: On Aug 4, 2008, at 4:24 PM, Martin Baxter wrote: Devin Asay wrote: 1. The html entity for the Euro symbol is curren; I guess you are a mac user Devin? The html entity for the euro symbol used in web pages is euro;. curren; may give you the euro symbol on a mac, IIRC

Re: Getting the text content of a HTML page

2008-08-05 Thread Sarah Reichelt
On Tue, Aug 5, 2008 at 7:37 PM, H Baric [EMAIL PROTECTED] wrote: Wow Eric, great work! A valuable contribution to be sure :) I have found gold in the conference stacks especially! Thanks s much. Woohoo stop me now :-D I'm in Australia by the way (anyone else from Oz here?) Yes, there

Re: Some Stacks Won't Open in Finder in OS X?

2008-08-05 Thread Sarah Reichelt
On Sat, Jul 19, 2008 at 7:52 AM, joe [EMAIL PROTECTED] wrote: Sarah; i can't find your AppleScript droplet called Rev Droplet File Type Converter' on the User contributions section of the Rev website; I can't even find the User contributions section. Help! Can you link me?(Thanks) Hi Joe,

call to the do command...limited in standalones

2008-08-05 Thread Hansen Erik
unfortunately, this is another call to the do command whose usage is seriously limited in standalones (this has been already discussed). I wish that there were to tell transcript that when set the propepertyname of objectname to objectvalue, this refers to variables whose value is the name

Re: call to the do command...limited in standalones

2008-08-05 Thread Mark Schonewille
Hi Erik, Could you please give a real-world example of what you try to achieve? -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Benefit from our inexpensive hosting services. See

Re: call to the do command...limited in standalones [was: Creating variables]

2008-08-05 Thread François Chaplais
Le 6 août 08 à 00:19, Hansen Erik a écrit : unfortunately, this is another call to the do command whose usage is seriously limited in standalones (this has been already discussed). I wish that there were to tell transcript that when set the propepertyname of objectname to objectvalue, this

Re: call to the do command...limited in standalones

2008-08-05 Thread Erik Hansen
Could you please give a real-world example of what you try to achieve? Mark Schonewille === I just have do commands that will wind up in standalones and was wondering what the problems are, in general. unfortunately, this is another call to the do command whose usage is seriously limited

[OT] little rabbit

2008-08-05 Thread François Chaplais
just to say I was a little late replying To Erik's message because I was playing Diablo II (LOD), and while playing, slaying furiously demons and living dead and the like, the was a moment of quietness in the game and then: I saw a lil' white rabbit running on the frozen plains of episode

Re: Trip to Beijing -- Olympics -- anyone else?

2008-08-05 Thread Kay C Lan
On Mon, Aug 4, 2008 at 1:42 AM, Mark Rauterkus [EMAIL PROTECTED]wrote: http://Rauterkus.blogspot.com I visited your blog, but none of the photos came up. OSX 10.5.4, FireFox 2.0.0.16. Any ideas why. ___ use-revolution mailing list

Re: Trip to Beijing -- Olympics -- anyone else?

2008-08-05 Thread Joe Lewis Wilkins
I believe I saw all of the images using FireFox 3.0.1; same OSX 10.5.4 Perhaps that is the reason? Joe Wilkins On Aug 5, 2008, at 10:41 PM, Kay C Lan wrote: On Mon, Aug 4, 2008 at 1:42 AM, Mark Rauterkus [EMAIL PROTECTED] wrote: http://Rauterkus.blogspot.com I visited your blog, but none