If I put 250 documents for example in the tray and print 200 numbers,
there remain 50 documents. And I need to print a number on these 50
documents, I can't wait a other day to put more sheets in the tray and
print 200 numbers again.
I'm going to try to use the "read from file "COM1:" and s
I'm not sure if anyone else on the list has done anything in this realm,
but for a long time I've been interested in creating a Side-Scrolling
"Mario" style game in Revolution.
I threw together a basic concept called "Side-Scrolling Game Test" and
I've uploaded it to the New RevOnline. Please che
On Fri, Sep 11, 2009 at 3:26 AM, Devin Asay wrote:
>
> On Sep 10, 2009, at 11:24 AM, Devin Asay wrote:
>
>> put tDate & 0,0,0,0 into tDate --
>
> Oops! This should be
>
> put tDate,0,0,0,0 into tDate
While I like Devin's method, I have changed to using:
put tDate,12,0,0,0 into tDate
By wor
A reply to myself. Let's keep in view the subject : using revlet as forms,
basically to send information via mail or to a database and for that
alone revlet can be really cool i find, there is no need to update the html
page...
See the sample revletForm along !
http://www.nabble.com/file/p253
Mark,
Your suggestion worked beautiful! And thanks Devin for your suggestion!
--
View this message in context:
http://www.nabble.com/Changing-date-format-in-CalendarWidget100-tp25393101p25393101.html
Sent from the Revolution - User mailing list archive at Nabble.com.
__
Yes you can.. but the whole revlet will have to be reloaded into memory, and
this is not instantaneous.
And if you had other variables in the revlet, they're lost cause its a new
session..
a kind of "postFromRevlet RevletId, targetFile" and "postToRevlet revletId,
targetFile" command would be gr
Judy Perry wrote:
What about cursor changes? That seemed to not work in a revlet for
me... Was that in a "don't do this" that I missed?
Custom cursors in revlets do not work yet, but will before they go
final. There are a few other things too, like visual effects, but they
will be fixed.
D
Robert Maniquant wrote:
I thought the polling example read results from a file on the server ???
Yes, you're right, for the most part. I'd rewritten the poll stack as an
iRev page for possible use in the conference teaching session and got
myself confused between mine and the original.
The
Tom,
with Safari on a mac revspeak works.
http://berndniggemann.on-rev.com/helloWorld/
the script of the button is:
---
on mouseUp
put field 1 into tSpeak
if tSpeak is not empty then
revspeak tSpeak
else
put "nothing to say" into field 1
revspeak field 1
end
Ron,
Is it possible to let me know when you get that revSpeak page up? I
only tried revSpeak "Hello world" and I get a handler error. Is this
in Safari/Firefox/IE on Mac or Windows or Linux?
Thanks
Tom McGrath III
Lazy River Software
3mcgr...@comcast.net
iTunes Library Suite - libITS
Info
Jim,
one funny thing I noticed on the mac: if in your repeat loop you set the
wait to 0 millisecs on the slider the time goes down from 1500 millisecs to
630 millisecs, you can replace the wait with a "unlock screen" and you have
again around 630 millisecs. As soon as you wait even 1 millisecond
Tough one. He needs:
repeat until the paperTray is empty
As a workaround, let's say you knew that the maximum number of sheets that
your printer could hold is 250. Why not print in batches of 200, say, with
Rev stopping at that number. In this way you would not use an empty tray as
the batch i
Thanks Jacqueline for your answer.
I thought of that. But the series start to 1 the first day of the year
and finish the last day of the year. I cannot know in advance the
number of documents to be printed. And I don't want to count manually
pages before to put them in the printer. So, I ne
Message: 10
Date: Wed, 9 Sep 2009 14:54:01 -0700 (PDT)
From: SparkOut
Subject: Re: Graphic speed comparison between webLets and desktop
stacks
To: use-revolution@lists.runrev.com
Message-ID: <25373791.p...@talk.nabble.com>
Content-Type: text/plain; charset=us-ascii
James Hurley wrote:
What about cursor changes? That seemed to not work in a revlet for me...
Was that in a "don't do this" that I missed?
Judy
On Thu, 10 Sep 2009, J. Landman Gay wrote:
Thomas McGrath III wrote:
Where is there a list of iRev commands available?
I just tried revSpeak in iRev and got a handler
On Sep 10, 2009, at 11:24 AM, Devin Asay wrote:
put tDate & 0,0,0,0 into tDate --
Oops! This should be
put tDate,0,0,0,0 into tDate
Devin Asay
Humanities Technology and Research Support Center
Brigham Young University
___
use-revolution maili
Charles,
On Sep 10, 2009, at 10:09 AM, Charles Szasz wrote:
I thought this would be easy but it is not! I want to change the
format of
the date inserted in a field of an application by CalendarWidget100
to a
different format. For example, change 2009,9,10 to Sept 10, 2009.
I was able to c
Charles, if tDate is 2009,9,10 - try something like this:
put line (item 2 of tDate) of the monthnames && item 3 of tDate &&
item 1 of tDate into tNewDate
Best,
Mark Smith
On 10 Sep 2009, at 17:09, Charles Szasz wrote:
I thought this would be easy but it is not! I want to change the
Ron-
Thursday, September 10, 2009, 6:14:31 AM, you wrote:
> work. This fails. Any hints?
> get shell("echo -e" && "mymessage" && "| mail -s" && "thesubject" &&
> "mym...@gmail.com" && "-- -f" && "mym...@gmail.com"
Here's what I do:
get shell("mail -s" \
&& quote & tSubject & quote \
I thought this would be easy but it is not! I want to change the format of
the date inserted in a field of an application by CalendarWidget100 to a
different format. For example, change 2009,9,10 to Sept 10, 2009.
I was able to change the sequence of the date format from 2009,9,10 to
9,10,2009 b
I thought the polling example read results from a file on the server ???
And I had taken out of my mind the solution outlined by splash21 because it
causes a delay, its not immediate. It's all there :
http://www.nabble.com/-weblet--How-can-a-webLet-communicate-with-the-hosting-html-page--td24339
Hi Mark,
snapShot
Now I know where to look for it.
Thanks a lot
Reinhold
Am 09.09.2009 um 12:59 schrieb use-revolution-requ...@lists.runrev.com:
This is one way:
export snapshot from rect (the rect of this card) of this card to
myVar as PNG
set the text of img 1 to myVar
or:
import sna
Hello,
Economy-x-Talk has published a new version of the word game
TwistAWord. We have received a lot of feedback on the previous release
and have created a list of the most important comments and feature
requests. This new release contains 11 important improvements that
contribute greatl
Thanks for your comments Sarah, Robert, Jacque and, as usual, to Kenji
for his examples.
I thought I would put up a page with some random examples of how such
things might be accomplished but got stuck on the sending mail. I have
used examples from Sarah's site for another application on my own si
Thanks for your comments Sarah, Robert, Jacque and, as usual, to Kenji
for his examples.
I thought I would put up a page with some random examples of how such
things might be accomplished but got stuck on the sending mail. I have
used examples from Sarah's site for another application on my
Jérôme Rosat wrote:
I need to print a series of numbers on a network printer, one number on
each page, until there is no more page in the paper tray of the printer.
Then, I must be able to reload pages and the printing begins again with
the last number printed + 1.
Is it possible to do that w
Thomas McGrath III wrote:
Where is there a list of iRev commands available?
I just tried revSpeak in iRev and got a handler not found error and
would like to know what else is not available.
Virtually everything is available, with the added bonus of a few new
terms listed in the change log.
Sarah Reichelt wrote:
I hadn't thought of using revlets in the place of forms but it is an
interesting thought.
Currently, we have html forms and the data they send can easily be
processed using irev scripts.
If you had a revlet acting as the form, there seem to be two ways it
could handle the s
On 10 Sep 2009, at 04:20, Thomas McGrath III wrote:
Where is there a list of iRev commands available?
I'm not sure there is one at this point. :-(
I just tried revSpeak in iRev and got a handler not found error
Of the ones that make sense to not be there, that's one of them - the
server
29 matches
Mail list logo