On 12/30/09 6:27 AM, "dlwild at gmail" wrote:
Hi Leonardo,
> Bar codes, great. I´m getting the 09 bundle so I´ll have Valentina,
> although I haven´t worked with it yet. Any idea about the pdf417
> reading-writing capacity?
Valentina Reports can produce PDFs of course.
Also PDFs with embedded X
On Wed, Dec 30, 2009 at 2:04 PM, Thomas McGrath III wrote:
> Is it possible to detect a mouseWithin or mouseClick state in irev?
>
I don't think so. I reckon you would have to use JavaScript.
Cheers,
Sarah
___
use-revolution mailing list
use-revolution
Bar codes, great. I´m getting the 09 bundle so I´ll have Valentina,
although I haven´t worked with it yet. Any idea about the pdf417
reading-writing capacity?
All the best,
Leonardo
On Dec 29, 2009, at 10:11 PM, Lynn Fredricks wrote:
Hello (Merry Christmas and a Happy New Year in advance),
Thanks for the info, Michael, will look into it.
All the best,
Leonardo
On Dec 29, 2009, at 10:00 PM, Michael Kann wrote:
http://revonline2.runrev.com/stack/348/Label-Generator
--- On Tue, 12/29/09, dlwild at gmail wrote:
From: dlwild at gmail
Subject: bar code support
To: "How to use Rev
Is it possible to detect a mouseWithin or mouseClick state in irev?
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
__
Hello (Merry Christmas and a Happy New Year in advance),
Anyone know if RunRev 4.0 supports or if there is a way to create,
print, read, regular bar codes or pdf417 bar codes (http://en.wikipedia.org/wiki/PDF417
) in revolution or related software?
All the best,
Leonardo
PS: I´m trying out
> Hello (Merry Christmas and a Happy New Year in advance),
>
> Anyone know if RunRev 4.0 supports or if there is a way to
> create, print, read, regular bar codes or pdf417 bar codes
> (http://en.wikipedia.org/wiki/PDF417
> ) in revolution or related software?
Valentina Reports can print bar co
most readers output ascii characters through usb, so input should be easy.
-
Stephen Barncard
San Francisco
http://houseofcubes.com/disco.irev
2009/12/29 dlwild at gmail
> Hello (Merry Christmas and a Happy New Year in advance),
>
> Anyone know if RunRev 4.0 supports or
http://revonline2.runrev.com/stack/348/Label-Generator
--- On Tue, 12/29/09, dlwild at gmail wrote:
> From: dlwild at gmail
> Subject: bar code support
> To: "How to use Revolution"
> Date: Tuesday, December 29, 2009, 8:52 PM
> Hello (Merry Christmas and a Happy
> New Year in advance),
>
> An
-= JB =- wrote:
I could not download the code either. I am using a Mac and a lot of times
that right click stuff doesn't seem to do what you would expect.
Would love the code if you make if available another way.
Nice looking pictures by the way.
-=>JB<=-
OK I've been working on this ever
Hello (Merry Christmas and a Happy New Year in advance),
Anyone know if RunRev 4.0 supports or if there is a way to create,
print, read, regular bar codes or pdf417 bar codes (http://en.wikipedia.org/wiki/PDF417
) in revolution or related software?
All the best,
Leonardo
PS: I´m trying out
Recently, Emmett Gray wrote:
> I converted it to 16 bit and reimported into the stack and it's OK
> now. Just to be sure, I reimported the 24-bit version and got the
> same original result. So it seems Rev chokes on 24bit audio.
Rev's ability to play imported sound files is somewhat limited. The
Emmett Gray wrote:
Opie here.
LOL! Sorry we hijacked your thread. But I did want to say I remember you
from the HC list and I'm so glad you made it over here.
--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
__
Message: 1
Date: Tue, 29 Dec 2009 11:16:18 -0500
From: Trevor DeVore
Subject: Re: What cell in the data grid was clicked?
To: How to use Revolution
Message-ID:
Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
On Dec 28, 2009, at 11:48 PM, James Hurley wrote:
The user cli
My rule about paths on any system...
-1- avoid spaces in path names
-2- avoid dates in file and folder names, such as "hearth jpgs
12/25/09"
An operating system can allow characters because it knows the
difference between literal name characters and the control characters.
-3- When access
I think that the "binfile:" prefix is also necessary.
--- On Tue, 12/29/09, Mike Bonner wrote:
> From: Mike Bonner
> Subject: Re: Imagesource of char not working as expected in Windows
> To: use-revolution@lists.runrev.com
> Date: Tuesday, December 29, 2009, 12:09 PM
> Based on your test it lo
Opie here. I wrote:
file ... sounds fine in Rev if I access it instead of the imported one.
I.e., playing the file in Rev by filepath results in the correct
sound. So what's going on? Is QT actually doing the playing of
external audio even though I'm not calling up the player, or is it
the
Based on your test it looks like the comment about "vanilla characters" is
probably correct. It works when using a string with no spaces for the
directory. When you setup your string you used put "C:\Documents and
Settings\zhangt\Desktop\imgFolder" into k
For the real directory you wish to use
Leaving out the binfile: prefix on Mac might be a forgivable offense that is
punished on Windows. Is that the takehome lesson? We now must defer to the
seasoned veterans of both platforms.
--- On Tue, 12/29/09, David Glasgow wrote:
> From: David Glasgow
> Subject: Re: Imagesource of char not
On Dec 28, 2009, at 11:48 PM, James Hurley wrote:
The user clicks on a data grid cell.
What variables determine the row and column numbers of the cell?
And the text of the cell?
One other lesson you might want to look at discusses how to define
your own mouseDown handlers in a Data Grid. Y
I think I've found the problem
put
C:\Documents and Settings\zhangt\Desktop\imgFolder\a.png
into line 1 of fld "snapshots"
Note in the script below you need a "binfile:" tacked on in front of the path.
on mouseUp
put line 1 of field "snapshots" into k
put "binfile:" before k
set the i
On Dec 28, 2009, at 11:48 PM, James Hurley wrote:
The user clicks on a data grid cell.
What variables determine the row and column numbers of the cell?
Jim,
Each row in a Data Grid form/table and each column in a Data Grid
table have custom properties that help you determine this informati
The following script works in a standalone created on Windows XP and running on
Windows XP.
on mouseUp
put "~" after fld "aFld"
put "C:\Documents and Settings\zhangt\Desktop\imgFolder" into k
set the defaultFolder to k
set the imageSource of last char of fld "aFld" to "binfile:a.png"
The following script works for me on Windows XP Pro in a stack. I'll build a
standalone and see what happens.
on mouseUp
put "~" after fld "aFld"
put "C:\Documents and Settings\zhangt\Desktop\imgFolder" into k
set the defaultFolder to k
set the imageSource of last char of fld "aFld" t
David, I'm on XP Pro so I can check it out for you.
Is it working in the stack on Windows before you made the standalone. Or did
you create the standalone from a stack on the Mac?
In other words, is the fact that it is a standalone important?
First, you might be tempting fate to use anything b
Hello,
I'm not sure it can help, but did you try to use an other char than a tilde?
Best,
ÉrIC
Le 29 déc. 2009 à 13:18, David Glasgow a écrit :
>
>
> I didn't get any on-list responses to this, but got a good steer from
> Richmond Mathewson (thanks!) off-list.
>
> In brief, my standalone
I didn't get any on-list responses to this, but got a good steer from Richmond
Mathewson (thanks!) off-list.
In brief, my standalone (RR 4.0) takes screenshots and saves them to disk.
They are also displayed in a field by appending a tilde to the field each time
a snapshot is taken, and then
It doesn't seem like the datagrid commands made it into the dictionary I have.
I foraged around on the runrev website and found some info. You might find what
you need on the following links. As a warning, I don't know jack about
datagrids, just trying to be helpful.
Some links:
http://lessons
28 matches
Mail list logo