Re: Altering HTML Text

2010-02-24 Thread Dave Cragg
Ray I was able to add a line and redisplay it (almost) by doing something like this: put revBrowserGet(gBrowserD, htmltext) into tHtmlText replace /BODY with pExtra line/p/BODY in tHtmlText # put empty into char 1 to 3 of tHtmlText ## not necessary it seems (removing the utf-8 BOM

Re: [semi-OT]simulating onSubmit in post

2010-02-24 Thread Graham Samuel
Hi Devin - I for one don't think this is OT at all: I have struggled to understand how to extract stuff from web sites in a more complicated way than the simple examples given in the Rev documentation. I got a lot of help from this list (especially from SparkOut sparkout...@gmail.com) but I

Re: [semi-OT]simulating onSubmit in post

2010-02-24 Thread Martin Baxter
Hi Devin, In the url instanced below, unless I'm misunderstanding what you are trying to do, if you make a properly formed POST direct to someurl.htm?loadpage, direct from a script or a stack for instance, the onSubmit event in the html form is almost certainly irrelevant, because it is only

Re: navigating cleanly between main- and sub-stacks

2010-02-24 Thread Andre.Bisseret
Bonjour Nicolas, Is the following doing what your are expecting : lock screen hide stack theMainStack go to cd 1 of stack theMainStack --wait 1 milliseconds open stack theSubStack Best regards from Grenoble André Le 24 févr. 10 à 03:39, Nicolas Cueto a écrit : Hello, I have a mainstack

Re: [semi-OT]simulating onSubmit in post

2010-02-24 Thread Jim Ault
On Feb 23, 2010, at 3:11 PM, Devin Asay wrote: Hi folks, I'm trying to teach myself how to GET and POST submissions to URLs that provide simple web services, like word lookups and the like. I understand the basic concept pretty well and can successfully harvest data from various web

Re: How to enter a time of day

2010-02-24 Thread BNig
you might want to look at the timesetting stack in a slightly modified version as a revlet: http://berndniggemann.on-rev.com/timesettings/ regards Bernd -- View this message in context: http://n4.nabble.com/How-to-enter-a-time-of-day-tp1562955p1567339.html Sent from the Revolution - User

Re: How to enter a time of day

2010-02-24 Thread Andre Garzia
Loved the stack and the revlet! Guys, you rock! Scott, you're the man! I still hold dear to your plugins and there's no color tool as TM|Color for me, I use it even when I am not using Rev, once, I almost made a standalone out of it. Cheers and thanks On Wed, Feb 24, 2010 at 8:31 AM, BNig

From XML to array

2010-02-24 Thread mazza paolo
I need to import the data of an XML file to an ARRAY having the nodes as keys. For example: I need to transform an XML file like this ... ?xml version=1.0? records record IDnum=1 firstNameSteve/firstName lastNameJobs/lastName roomNums

Playing sound in revWeb revlet

2010-02-24 Thread Thomas McGrath III
I am having a problem getting sounds to play in a revLet in revWeb plugin. I have tried both of these methods using imported audio clips: lock screen go card 2 unlock screen with visual effect dissolve very fast with sound boing.wav and: play audioClip boing.wav Both of these crash the browser

Re: Coming back to revTalk after ObjectiveC

2010-02-24 Thread william humphrey
I would think it would be the other way around. That's interesting. What if it had been Pascual? That was supposed to make programmers write clearer code. On Tue, Feb 23, 2010 at 6:02 PM, Thomas McGrath III mcgra...@mac.comwrote: After spending the last nine months teaching myself enough

Re: Coming back to revTalk after ObjectiveC

2010-02-24 Thread Thomas McGrath III
I didn't notice any issues in xCode because these methods are the norm with ObjC but coming back to Rev it becomes clear very quickly that things don't 'look' right and I could not shake the feeling that my coding seemed unnecessarily more complex. After compressing my methods and shortening my

Re: Coming back to revTalk after ObjectiveC

2010-02-24 Thread Neal Campbell
I wonder if somehow C-oriented languages have polluted our brains to anything else! When your are steeped in that mentality, your instincts are off when programming in Rev so you have unlearn those ways. In that regard, Rev can be a hard language to learn even though it shouldn't be. It would be

[Solved] Re: Looking for an idea to ....

2010-02-24 Thread Rolf Kocherhans
I finally had time to try out all the suggestions i got to shrink text automatically so that it fits into a field of a fixed with. Saharas method (which is the same as Andre G. suggested) works best for my purpose. I like the repeat loop which makes the font smaller but only to a certain size

Re: From XML to array

2010-02-24 Thread Jim Ault
I am assuming your data set contains an error and will ignore this tag. There is no opening tag employee On Feb 24, 2010, at 5:44 AM, mazza paolo wrote: /employee Jim Ault Las Vegas ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Altering HTML Text

2010-02-24 Thread Bob Sneidar
Dave, Try inserting a line with the base tag before everything else: base href=url to your relative referenced images / This will cause the references to be relative to the base you define. Bob On Feb 24, 2010, at 12:34 AM, Dave Cragg wrote: Ray I was able to add a line and redisplay

Re: From XML to array

2010-02-24 Thread paolo mazza
Yes, you are right. Here it is the right XML file: ?xml version=1.0? records record IDnum=1 firstNameSteve/firstName lastNameJobs/lastName roomNums roomNum1001/roomNum1 roomNum2054/roomNum2 roomNum3545/roomNum1 /roomNums phoneExt345/phoneExt parkingSlot100/parkingSlot /record record IDnum=2

Re: Altering HTML Text

2010-02-24 Thread Andre Garzia
Bob, I never heard of that tag wow... thanks, this would solve so many problems for me. :D On Wed, Feb 24, 2010 at 1:26 PM, Bob Sneidar b...@twft.com wrote: Dave, Try inserting a line with the base tag before everything else: base href=url to your relative referenced images / This

Re: Altering HTML Text

2010-02-24 Thread Bob Sneidar
No thanks to me. I have a boy genius for a web guy! :-) Bob On Feb 24, 2010, at 8:35 AM, Andre Garzia wrote: Bob, I never heard of that tag wow... thanks, this would solve so many problems for me. :D ___ use-revolution mailing list

Re: Altering HTML Text

2010-02-24 Thread Jim Ault
The base tag specifies a default address or a default target for all links on a page. The base tag goes inside the head element. The base tag is supported in all major browsers. Differences Between HTML and XHTML In HTML the base tag has no end tag In XHTML the base tag must be properly

Re: Altering HTML Text

2010-02-24 Thread Dave Cragg
Thanks, Bob. I was just trying that when your mail came in. It works. :-) I thought the strange location of the head element might prevent this from working, but it looks OK. I'll pass it on to Ray. Cheers Dave On 24 Feb 2010, at 16:26, Bob Sneidar wrote: Dave, Try inserting a line

Re: How do I 'see' if an object has a behavior?

2010-02-24 Thread Andre.Bisseret
Sorry for my late answer; In my opinion, not as bug; might be as an enhancement. André Le 23 févr. 10 à 18:43, Graham Samuel a écrit : Yes, I see that now... thanks for pointing it out. So should I report this anomaly as a bug, do you think? Graham On Tue, 23 Feb 2010 18:10:35 +0100,

Freezing solid

2010-02-24 Thread john law
Greetings As a sometime Hypercard enthusiast I'm slowly getting used to RunRev. How does one prevent the program locking up in the middle of a job? I then have to force quit - Mac OS Snow Leopard. Thanks JL John Law Panoramas www.john-law.org.uk m...@john-law.org.uk

Re: Project Euler

2010-02-24 Thread Geoff Canyon Rev
I did about eighty project euler problems in rev about three years ago. In the process I wrote my own bignum library and many other utility routines. I don't know that any of it was release-worthy, or if I have the stacks anymore. Then I switched to coding in J (which has built-in unlimited

Re: Freezing solid

2010-02-24 Thread stephen barncard
Um.. we're going to need a little more info than that what were you doing at the time? what platform? sample code? do you mean break out of a loop ? modal dialog? Are you sure it was a freeze? command period often doesn't work as Rev is fast compared to HC. ? -

Re: Project Euler [SPOILER #3]

2010-02-24 Thread Geoff Canyon Rev
Are we talking about the same #3? The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? On Tue, Feb 23, 2010 at 11:04 AM, Brian Yennie bri...@qldlearning.com wrote: I'm pretty proud of this one for #3... SPOILER ALERT SPOILER ALERT...

Re: Freezing solid

2010-02-24 Thread Richmond Mathewson
On 24/02/2010 19:56, john law wrote: Greetings As a sometime Hypercard enthusiast I'm slowly getting used to RunRev. How does one prevent the program locking up in the middle of a job? I then have to force quit - Mac OS Snow Leopard. Thanks Oh Dear, I haven't heard about this problem

Re: Altering HTML Text

2010-02-24 Thread Ray Horsley
I believe I (we) have this one solved. As it turns out, the solution was three-fold. First I had to delete the first 3 strange looking characters (I believe they're meta-characters) of the html source code. I was tempted to do that early on but was concerned it might break something.

Re: Freezing solid

2010-02-24 Thread J. Landman Gay
john law wrote: Greetings As a sometime Hypercard enthusiast I'm slowly getting used to RunRev. How does one prevent the program locking up in the middle of a job? I then have to force quit - Mac OS Snow Leopard. Sounds like an infinite loop. Post some sample scripts. -- Jacqueline Landman

Re: Playing sound in revWeb revlet

2010-02-24 Thread J. Landman Gay
Thomas McGrath III wrote: I am having a problem getting sounds to play in a revLet in revWeb plugin. I have tried both of these methods using imported audio clips: lock screen go card 2 unlock screen with visual effect dissolve very fast with sound boing.wav and: play audioClip boing.wav

Re: Playing sound in revWeb revlet

2010-02-24 Thread Bob Sneidar
How do you do something permanently for now? Is that a function of your Time Travel stack again? ;-P Bob On Feb 24, 2010, at 10:38 AM, J. Landman Gay wrote: Visual effects aren't supported in revlets yet, so I'd take that out of the equation permanently for now.

Re: Playing sound in revWeb revlet

2010-02-24 Thread J. Landman Gay
Bob Sneidar wrote: How do you do something permanently for now? Is that a function of your Time Travel stack again? ;-P It's a time *warp* stack, not a time travel stack. Actual time travel is impossible due to the gravitational constant of the universe, which was adequatedly described by

Re: Playing sound in revWeb revlet

2010-02-24 Thread Klaus on-rev
Hi Thomas, I am having a problem getting sounds to play in a revLet in revWeb plugin. I have tried both of these methods using imported audio clips: lock screen go card 2 unlock screen with visual effect dissolve very fast with sound boing.wav and: play audioClip boing.wav Both of these

Re: Playing sound in revWeb revlet

2010-02-24 Thread Bob Sneidar
Well I finally got ahold of Jacque's time *warp* stack (excuuuse me!), at which point I warped time and installed it on my first computer. (There are no colors in a wormhole btw.) after I restored time, it turns out I have always had it! Bob On Feb 24, 2010, at 10:57 AM, J. Landman

Goin' crazy with a windows error!!!

2010-02-24 Thread Giovanni Cannizzaro
Hi all. As object I'm going really crazy with an error causin a Windows crash. No way to trace it. I got it randomly (or it seems to be). try ... end try can't intercept it. Really ugly. Here u can find the windows' report of the error: http://pastebin.com/D9qyJ4ud And here is the scenario: I

Re: Project Euler [SPOILER #3]

2010-02-24 Thread Brian Yennie
No, we're actually talking about #6 =). I put them in order of difficulty and this becomes the 3rd one... but it's actually id 6. Are we talking about the same #3? The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? On Tue,

Re: Freezing solid

2010-02-24 Thread Bob Sneidar
If it turns out to be an infinite loop, sometimes you can hold the escape key down. Sometimes works, sometimes doesn't. Bob On Feb 24, 2010, at 9:56 AM, john law wrote: Greetings As a sometime Hypercard enthusiast I'm slowly getting used to RunRev. How does one prevent the program locking

Re: Goin' crazy with a windows error!!!

2010-02-24 Thread Bob Sneidar
The error seems to mention xdent.exe a lot. That is some kind of dentistry utility. Are you sure it's your rev stack that is crashing? Could another process be causing a memory problem? Bob On Feb 24, 2010, at 11:33 AM, Giovanni Cannizzaro wrote: Hi all. As object I'm going really crazy

DataGrid: Let Data Grid know that first line has column names

2010-02-24 Thread runrev260805
Hi, i am fiddling with DataGrids at the moment. For that i am reading the Revolution_Data_Grid.pdf and trying out the samples. But i get the sample of page 19 not working on mouseUp ## Create tab delimited data. ## Note that first line has name of columns. ## Providing names tells Data Grid

Re: [semi-OT]simulating onSubmit in post

2010-02-24 Thread Devin Asay
Thanks, Graham, Martin and Jim for your thoughtful and most helpful replies. Let me respond to a few of your points. On Feb 24, 2010, at 2:26 AM, Graham Samuel wrote: I for one don't think this is OT at all: I have struggled to understand how to extract stuff from web sites in a more

Re : Freezing solid

2010-02-24 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, Hi John, Tell us what you are trying to do, tell us what Rev version you are using, and on what system : and we may be able to help. - Francis ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: DataGrid: Let Data Grid know that first line has column names

2010-02-24 Thread Bob Sneidar
Are you sure the column names match the names of the columns in your import text? Note that I do NOT mean the column LABEL which is different than the column NAME. Bob On Feb 24, 2010, at 2:15 PM, runrev260...@m-r-d.de wrote: Hi, i am fiddling with DataGrids at the moment. For that i

Re: altRevBrowser Noob

2010-02-24 Thread zryip theSlug
2010/2/13 Bob Sneidar b...@twft.com: Whoops! Spoke too soon. It seems that once you click in the browser window, neither clicks nor keystrokes ever make it into the Rev engine ever again. On the Mac as well as in Windows, if the browser is not clicked, hitting the Q key will quit the app

Re: DataGrid: Let Data Grid know that first line has column names

2010-02-24 Thread zryip theSlug
2010/2/24 runrev260...@m-r-d.de: Hi, i am fiddling with DataGrids at the moment.  For that i am reading the Revolution_Data_Grid.pdf  and trying out the samples. But i get the sample of page 19 not working on mouseUp ## Create tab delimited data. ## Note that first line has name of

Re: Playing sound in revWeb revlet

2010-02-24 Thread Thomas McGrath III
I am using a lot of visual effects, any ideas when they might be supported??? Tom McGrath III Lazy River Software 3mcgr...@comcast.net iTunes Library Suite - libITS Information and download can be found on this page: http://www.lazyriversoftware.com/RevOne.html On Feb 24, 2010, at 1:38 PM,

Re: Playing sound in revWeb revlet

2010-02-24 Thread Kenji Kojima
On Feb 24, 2010, at 10:12 PM, Thomas McGrath III wrote: I am using a lot of visual effects, any ideas when they might be supported??? On Feb 24, 2010, at 1:38 PM, J. Landman Gay wrote: Visual effects aren't supported in revlets yet, so I'd take that out of the equation permanently for

Re: Can browser send a command to a servlet?

2010-02-24 Thread Joe F.
I was just struggling with this recently: The short answer is, you can't at the moment. Not directly anyway. The revletParams[] array consists of the plugin parameters loaded when the revlet loads. You can see them in the HTML source as elements of the object and embed tags. There's

Scripting Graphic Effects

2010-02-24 Thread Judy Perry
Hi, I am confused with respect to scripting graphic effects. In the property inspector, they can be boolean (you check them or you don't; once checked, you can set other attributes, or not), but the docs present it in terms of an array. What I would like to do is set the colorOverlay to a

Re: [OT] Drifting off topic

2010-02-24 Thread Kay C Lan
On Wed, Feb 24, 2010 at 3:28 AM, Andre Garzia an...@andregarzia.com wrote: is it like couchsurfing? That would depend on the brainwaves :-) ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Freezing solid

2010-02-24 Thread Kay C Lan
John, Sometimes you are lucky, and in this situation, where cmd-period does nothing, and you can't get menu control via the mouse, keyboard shortcuts still work, so cmd-s will save your work and as an added bonus, sometimes even brings the stack back to life. If it doesn't, when you Force Quit

Re: Scripting Graphic Effects

2010-02-24 Thread Sarah Reichelt
I am confused with respect to scripting graphic effects.  In the property inspector, they can be boolean (you check them or you don't; once checked, you can set other attributes, or not), but the docs present it in terms of an array. What I would like to do is set the colorOverlay to a color

Re: Scripting Graphic Effects

2010-02-24 Thread Judy Perry
Ahhh... empty. Not none. Not false. Not noop or nope or... :-P Right. I could set the color to something but couldn't figure out how to undo it. Thank you Sarah :-) Judy On Thu, 25 Feb 2010, Sarah Reichelt wrote: on mouseEnter set the colorOverlay[color] of me to red end mouseEnter

Re-2: DataGrid: Let Data Grid know that first line has column names

2010-02-24 Thread runrev260805
Hi, zryip. Thanks for the link. Seems that i have missed that topic. Regards, Matthias Original Message Subject: Re: DataGrid: Let Data Grid know that first line has column names (25-Feb-2010 7:50) From:zryip theSlug zryip.thes...@gmail.com To:

Re: Playing sound in revWeb revlet

2010-02-24 Thread Judy Perry
Dissolve also works. http://jperryl.ecs.fullerton.edu/test2.html Judy On Wed, 24 Feb 2010, Kenji Kojima wrote: Wipe right and wipe left work. http://www.kenjikojima.com/999ViewsRenga/ This uses blend wipe. http://www.kenjikojima.com/rgbmusicrenga/nycsubway/