Re: Default card size

2006-07-21 Thread J. Landman Gay
Phil Davis wrote: Robert Sneidar wrote: Yes in fact it does have a custom menu, and it is running on a Mac. Is that a problem? I've had mixed results using menubars in Mac Rev apps, and right now I don't remember how to make it all work perfectly. If your menubar is the culprit, you'll

[ANN] www.krugle.com --- xtalk not a real language

2006-07-21 Thread Richmond Mathewson
Jesse Sng wrote: So xTalk is not a real language, but it can be used to build real applications. Hmmm. The only way anyone can describe xTalk as not being a 'real' language is if one adheres to an incredibly narrow definition of what constitutes a language. It reminds me of the dispute

Re: progress bar

2006-07-21 Thread Sarah Reichelt
Just one addition to Mark's suggestion: include a mouseRelease handler that does the same as the mouseUp. This will catch the mouse if the user moves it off the control before releasing the button. Sarah On 7/21/06, Mark Smith [EMAIL PROTECTED] wrote: I think I'd do something like: button

RE: [ANN] www.krugle.com --- xtalk not a real language

2006-07-21 Thread Jeanne A. E. DeVoto
At 4:51 PM -0700 7/20/2006, Lynn Fredricks wrote: There is a thread in the support forum for it. If in the next newsletter we set up some sort of automated petition to krugle include Revolution, would you all be willing to participate? An automated petition might be interpreted as spam -

Re: [ANN] www.krugle.com --- xtalk not a real language

2006-07-21 Thread Klaus Major
Am 21.07.2006 um 08:03 schrieb Richmond Mathewson: ... Probably the best response to any stuffed-shirts who state that xTalk is not a real computer language (presumably the corollary of that argument is that it is a fake language - see what I mean?) is for one of the better programmers

Re: Can this be done faster ?

2006-07-21 Thread Geoff Canyon
On Jul 20, 2006, at 7:27 PM, John Miller wrote: put 50 into XX put the ticks into timer repeat until listXX is empty put line 1 to XX of listXX into listYY delete line 1 to XX of listXX repeat with x = 1 to (number of lines in listYY) doaction to line x of listYY end repeat end

Error uploading file in Windows

2006-07-21 Thread Ton Kuypers
Hi, I have a problem when uploading a file to an FTP server... I developed on OS-X, in the IDE on the Mac this works fine: put ftp://user:[EMAIL PROTECTED]/wwwroot/Schedule.html into vURL put vHTML into url vURL But when I do this in the Windows IDE I get the error 501 missing

Re: Can this be done faster ?

2006-07-21 Thread Jim Ault
I would use the following type of loop put the ticks into timer set the itemdel to tab --or what applies filter databaseList without empty repeat for each line txtLine in databaseList put doaction(txtLine) cr after newListing end repeat filter newListing without empty put the ticks -

Can this be done faster ?

2006-07-21 Thread John Miller
Greetings All, To clarify how I do this ... I have a stack that has 2 fields. The first fields contains 30,000 lines. My goal (for the sake of doing something) is to put item 1 of each line into item 2 of each line. When the script is finished, the results should be put into field 2.

Re: Can this be done faster ?

2006-07-21 Thread Mark Smith
on mouseUp put empty into cd fld 2 wait 5 ticks put 0 into XX put cd fld 1 into listXX put the ticks into timer repeat for each line L in listXX put L into tLine put item 1 of tLine into item 2 of tLine put tLine cr after tList end repeat delete char -1 of tList

Can this be done faster ?

2006-07-21 Thread John Miller
Mark, Using your script, processing all 30,000 lines in my field only took . 167 seconds. Impressive!!! Thanks, John ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Error uploading file in Windows

2006-07-21 Thread Mark Wieder
Ton- Friday, July 21, 2006, 8:37:08 AM, you wrote: I have a problem when uploading a file to an FTP server... I developed on OS-X, in the IDE on the Mac this works fine: put ftp://user:[EMAIL PROTECTED]/wwwroot/Schedule.html into vURL put vHTML into url vURL But when I do this

Imagedata row order

2006-07-21 Thread J. Landman Gay
I am trying to figure out how to set an image's imageData to a repeating pattern. I have a pattern that is 8 x 8 pixels. I want to repeat this pattern 16 times in order to fill a 32-pixel square image. If I repeat the pattern 4 times, I get a nice column of four repeating patterns going down

internal SQL queries

2006-07-21 Thread Viktoras Didziulis
Dear group, is it possible to query [tab] delimited data stored in fields or containers within a stack using SQL? e.g. without any external database engine or database files or connections... All the best! Viktoras ___ use-revolution mailing list

Re: Error uploading file in Windows

2006-07-21 Thread Chipp Walters
Ton, FWIW, I always do it this way: put user:[EMAIL PROTECTED]/wwwroot/Schedule.html into vURL put vHTML into url (ftp://; vURL) I think Dan Shafer was having a similar problem and this helped. best, Chipp ___ use-revolution mailing list

Re: internal SQL queries

2006-07-21 Thread Mark Schonewille
With AltSqlite you can store data in a local file, without database engine etc. Best, Mark -- Economy-x-Talk Consultancy and Software Engineering http://economy-x-talk.com http://www.salery.biz Download ErrorLib at http://economy-x-talk.com/developers.html and get full control of error

Re: screensaver question

2006-07-21 Thread Garrett Hylltun
On Jul 20, 2006, at 3:50 PM, [EMAIL PROTECTED] wrote: Is it possible to create a screensaver with Rev? On Windows, you'll be limited to how involved you can get with using Rev for screensavers. First, you need to either hide the windows task bar, or be able to make your Rev stack sit

Re: Imagedata row order

2006-07-21 Thread J. Landman Gay
Mark Schonewille wrote: Hi Jacque, Probably, the nice column is junk as well. Make sure that the image has the correct size to make your pattern fit. If you repeat a pattern of 8x8 pixels 4 times, your image must be either 8x32 or 32x8 pixels large. If you repeat the pattern 16 times without

Re: Imagedata row order

2006-07-21 Thread Dar Scott
On Jul 21, 2006, at 1:55 PM, J. Landman Gay wrote: I am trying to figure out how to set an image's imageData to a repeating pattern. I have a pattern that is 8 x 8 pixels. I want to repeat this pattern 16 times in order to fill a 32-pixel square image. If I repeat the pattern 4 times, I

Re: Imagedata row order

2006-07-21 Thread J. Landman Gay
Dar Scott wrote: In building the imageData, you can't just repeat the pattern 16 times. You have to repeat the first row 4 times. Then the second through 8th. Repeat all that 4 times. Yeah, my brain finally kicked in and that's what I ended up doing to fix it. Now it works fine. But now

Re: Can this be done faster ?

2006-07-21 Thread Richard Gaskin
John Miller wrote: Using your script, processing all 30,000 lines in my field only took . 167 seconds. Impressive!!! I don't know what the task was that the script was performing since it was omitted from the reply, but offhand 167 secs sounds like a long time to process only 30k lines of

Re: [ANN] www.krugle.com

2006-07-21 Thread Richard Gaskin
Jeanne A. E. DeVoto wrote: At 4:51 PM -0700 7/20/2006, Lynn Fredricks wrote: There is a thread in the support forum for it. If in the next newsletter we set up some sort of automated petition to krugle include Revolution, would you all be willing to participate? An automated petition might

Re: [ANN] www.krugle.com --- xtalk not a real language

2006-07-21 Thread Richard Gaskin
Richmond Mathewson wrote: now we all know that the MetaCard IDE is open source we all know that the Engine that drives both MC and RR is proprietary so where does that leave xTalk / MetaTalk / Transcript ??? This isn't all that mysterious, any more than it was last time you asked:

Re: DreamHost In-Depth (was Re: Dreamhost?)

2006-07-21 Thread Richard Gaskin
Dan Shafer wrote: In general, I love Dreamhost. I recommend it. But I will say that when I compare notes with my colleagues who are on other plans (granted, for the most part more expensive plans) their reports of downtime are significantly less than mine. Just check out

Re: Can this be done faster ?

2006-07-21 Thread Jim Ault
word wrap... squint the real number was 0.167 seconds /squint Jim Ault Las Vegas On 7/21/06 3:13 PM, Richard Gaskin [EMAIL PROTECTED] wrote: John Miller wrote: Using your script, processing all 30,000 lines in my field only took . 167 seconds. Impressive!!! I don't know what the task

Re: Imagedata row order

2006-07-21 Thread Dar Scott
On Jul 21, 2006, at 4:07 PM, J. Landman Gay wrote: But now I'm curious. My first attempt created an incomplete set of pixels that didn't fill the image completely, but how come it wrapped by itself? That got me to wondering how imagedata gets applied. Is it supposed to just go along in

Re: Error uploading file in Windows

2006-07-21 Thread Dan Shafer
Yeah, my problem was with the file: and binfile: protocols, but merely shifting the approach as Chipp describes it here fixed the problem on OS X. No test yet on WIndows because I still can't get the [EMAIL PROTECTED]@ program to compile. Grrr On 7/21/06, Chipp Walters [EMAIL

Re: Imagedata row order

2006-07-21 Thread J. Landman Gay
Dar Scott wrote: On Jul 21, 2006, at 4:07 PM, J. Landman Gay wrote: But now I'm curious. My first attempt created an incomplete set of pixels that didn't fill the image completely, but how come it wrapped by itself? That got me to wondering how imagedata gets applied. Is it supposed to

Re: DreamHost In-Depth (was Re: Dreamhost?)

2006-07-21 Thread Andre Garzia
I've been using JaguarPC for some years, I've upgraded to a full VPS solution during RevConWest and I am really happy with them. I can run Rev CGIs and their support always answered me in couple hours, sometimes even minutes and I do use support tickets a lot, they even installed apache

Re: internal SQL queries

2006-07-21 Thread Dan Shafer
SQL is designed ONLY to query databases. As Mark says, you can use SQLite and the database files it creates are not standard SQL files, but you could not use SQL queries, e.g., on a straight text file with arbitrary delimiters. On 7/21/06, Mark Schonewille [EMAIL PROTECTED] wrote: With

Combo boxes in background groups

2006-07-21 Thread James Spencer
Maybe there's no easy way to do this but it surprised me a bit: I would like to have a combobox in a background group with what would be its sharedText property set to false, assuming it had a sharedText property. Being a button, it of course does not so I hoped its sharedHilite property

Re: internal SQL queries

2006-07-21 Thread Viktoras Didziulis
Thanks for your replies ! I was asking because I used to create and SQL-query relational structures from delimited text tables in some projects. But this is only possible through ODBC text drivers and has a limited implementation of SQL. But I expected an existing functionality of Rev like that of

Reorder Front Scripts?

2006-07-21 Thread Scott Rossi
Is there a way to change the order of front scripts without removing/reinserting scripts? It seems that Rev's inspector palette reinserts itself into the front every time it is opened from the main menu and, because it apparently doesn't pass all object manipulation messages, blocks front scripts

Re: Combo boxes in background groups

2006-07-21 Thread J. Landman Gay
James Spencer wrote: Does anyone know of an easy way to include a combo box in a background but permitting each card to have a different value. I can simulate it a couple different ways, e.g. storing a custom property with the card on closing and reset it on opening but it seems it should be