Looks like Jacque's not the only time traveller around...
http://www.pcmag.com/article2/0,2817,2390671,00.asp
--
-Mark Wieder
mwie...@ahsoftware.net
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsu
Hugh-
Monday, August 8, 2011, 11:02:14 PM, you wrote:
> Mark Wieder's script, adjusted...
...interesting... I have no recollection of having done this...
--
-Mark Wieder
mwie...@ahsoftware.net
___
use-livecode mailing list
use-livecode@lists.runre
Tom, checked out Printopia, and it only saves Keynote presentations as
PDF's, not native format. But, I did stumble across a pretty cool iPad app
called iSMEStorage CloudDav which enables users to create WebDav aliases for
all sorts of cloud services, including DropBox, Amazon, Google and a ton of
On Tue, Aug 9, 2011 at 7:49 PM, John Craig wrote:
> That should be exactly what the snippet does - maybe I got your test data
> wrong. An occurrence of the first item in the fourth item is colorised.
>
>
>
> Sent from my iPhone
>
> On 10 Aug 2011, at 00:25, Roger Eller wrote:
>
> > On Tue, Aug 9
That should be exactly what the snippet does - maybe I got your test data
wrong. An occurrence of the first item in the fourth item is colorised.
Sent from my iPhone
On 10 Aug 2011, at 00:25, Roger Eller wrote:
> On Tue, Aug 9, 2011 at 6:19 PM, John Craig wrote:
>
>> Hi, Roger. Here's a q
Hi all.
If anyone is using sqlYoga and has experience creating query objects that have
multiple or statements, gimme a holler offlist if you please. I am trying to
build a query object which can find records that have partial matches for a
given value in several columns. For instance, if the u
On Tue, Aug 9, 2011 at 6:19 PM, John Craig wrote:
> Hi, Roger. Here's a quickie - create a stack with two fields ('in' and
> 'out') put your data into field 'in' and the following into the button
> script;
>
> on mouseUp
> set itemDel to tab
> put fld "in" into tData
> put the num of lines
Hi all.
I am hoping there will be a way to search a datagrid for PARTIAL matches. I
already can find EXACT matches, and I tried regex on the findIndex command, to
no avail. I know that if I cannot I can always get the dgText of the datagrid,
but there is a problem with that method. First, the
Hi, Roger. Here's a quickie - create a stack with two fields ('in' and
'out') put your data into field 'in' and the following into the button
script;
on mouseUp
set itemDel to tab
put fld "in" into tData
put the num of lines in tData into tLines
repeat with i = 1 to tLines
p
Hi Jacques,
Stephen (Brancard) noticed some days ago that in double clicking any server's
stack from within our FTP browser window, the stack will be directly opened in
our LC desktop IDE. In this way, we can edit our code exactly as if the stack
went stored locally and we can use the IDE debbu
I have a list of data in a plain table field (not a datagrid). The format
of the listis like so:
12345 TAB 1234567890 TAB true TAB
/folder/anotherFolder/yetAnotherFolder/FileName_with_UnderScores_and_12345_more_text.zzz
22345 TAB 1234567891 TAB true TAB
/folder/anotherFolder/FileName_with_22345_a
Bruce,
For a similar application I'm using HttpRequest (JavaScript) in a loop to
send as many requests as lines to process. JavaScript handles the responses
and and fill the list in the browser, no need of progress bar.
http://www.w3schools.com/dom/dom_httprequest.asp
Jacques
2011/8/8 Bruce Pok
Hi
Note that we have no presenter for next week, so most likely the event will not
happen, unless you step up.
Paul created a nice movie about his GUI that explains how to interface SQLite
databases very well. The movie is available here:
http://bjoernke.com/livecode_tv/crud-example-paul_townse
I agree, Pierre,
Nice job from RunRev guys. Now the On-Rev client has to be updated, and all
will be perfect.
Jacques
2011/8/9 Pierre Sahores
> Hi Björnke,
>
> The main goal of using the server's stack component is to let us store our
> code as password protected libraries instead of storing i
On 9 Aug 2011, at 21:31, Gregory Lypny wrote:
> Hello everyone,
>
> I’ve got my Mac at work running as a server of sorts and would like to be
> able to read and write files to it via FTP. I used the simple GET URL
> command below and it worked for a 6 KB file but not for a 200 KB file.
>
> g
Hi Gregory,
Check the libUrlFtpUploadFile command. Use the libUrlFtpCommand command to send
the LIST or NLST ftp command to your ftp server and retrieve a list of files
together with their details. You can alos use the libUrlSetFTPListCommand. I
think that the put URL command is also able to re
Hello everyone,
I’ve got my Mac at work running as a server of sorts and would like to be able
to read and write files to it via FTP. I used the simple GET URL command below
and it worked for a 6 KB file but not for a 200 KB file.
get url "ftp://username:password@serverAddress/Users/me/Documen
Sorry folks, problem solved!
As it turns out, one of the stacks in the preferences file was somehow
corrupted. I replaced the /rev file with the /rev~ file and now all works
again. I hope nobody put a lot of effort into solving this!
Cheers,
Lars
__
Have you restarted the Mac or repaired permissions? It sounds like the Mac is
blocking the app somehow.
Bill Vlahos
Sent from my iPhone
On Aug 9, 2011, at 12:07 PM, Lars Brehmer wrote:
> I have a stack/standalone that I have been working with for months. Suddenly
> I cannot open it in Rev (
What version of Mac OS X? Did you do any upgrades lately? What
messages, if any, are posted in the console?
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
prefe
On Aug 9, 2011, at 2:07 PM, Lars Brehmer wrote:
> I can't think of anything else to try. Any suggestions
Have you upgraded your OS or changed machines recently? If so, it might be a
PowerPC/Intel issue...?
Ken Ray
Sons of Thunder Software, Inc.
Email: k...@sonsothunder.com
Web Site: http:/
I found the following to work just as well for fields without using functions:
on closeField
if me <> empty
then
put me into tNum
put format("$%1.2f", tNum) into me
end if
end CloseField
Charles Szasz
csz...@mac.com
___
use-liv
I have a stack/standalone that I have been working with for months. Suddenly I
cannot open it in Rev (2.8) and the standalone won't launch either!
To make things clear: the standalone is a splashscreen stack that contains
several compressed stacks as custom properties. When the standalone launch
On 8/8/11 5:57 PM, Admin wrote:
Hello everyone,
Right now, my app is in portrait mode, but I
want it in landscape mode. What is the command to make that happen? Can
I put this command in the openstack handler?
Use "mobileSetAllowedOrientations", it's documented in the Android
release note
Thanks John !
1445 build works perfectly fine there now because you ;-)
Kind regards,
Le 9 août 2011 à 19:37, John Dixon a écrit :
> No, there is build 1445..
>> Is LC 4.6.3 build 1444 the last available version ? If yes, i can see two
>> problems with it (MBP i7 266 Ghz, MacOS X 10.6.8) :
>
Nicolas,
Thanks! I tried the scripts you suggested. They worked fine until the user
enters a number with a decimal point. For my app, adults are more likely to
enter a number with a decimal point rather than a penny amount. So, this
script is not an improvement for me.
Charles Szasz
csz...@m
Thanks Bob. No apology needed! This is good clarification for me. Like Solomon
said: As iron sharpens iron, so one person sharpens another.
Phil
On 8/9/11 9:41 AM, Bob Sneidar wrote:
Phil, pardon me if you know this, but sudo wants the password to the admin
account you are presently using in
No, there is build 1445..
> Is LC 4.6.3 build 1444 the last available version ? If yes, i can see two
> problems with it (MBP i7 266 Ghz, MacOS X 10.6.8) :
> Pierre Sahores
___
use-livecode mailing list
use
Hi Friends,
Is LC 4.6.3 build 1444 the last available version ? If yes, i can see two
problems with it (MBP i7 266 Ghz, MacOS X 10.6.8) :
1.- The "About LiveCode" item menu don't seems to work.
2.- The "Dictionary" item menu opens an empty dictionary template.
Did i miss something ?
Kind regar
Hi Björnke,
The main goal of using the server's stack component is to let us store our code
as password protected libraries instead of storing it in unprotected flat text
.irev components. This server's stack component is useful each time we need to
install our LC-server solutions on clients se
Are you guys reading my mind?? Are you hacking into my computer at night to see
what functions I need you to write and then writing them the next day??? ;-)
Thanks, I am on the verge of needing exactly this!
Bob
On Aug 8, 2011, at 11:02 PM, FlexibleLearning wrote:
> This also handles negativ
Phil, pardon me if you know this, but sudo wants the password to the admin
account you are presently using in the shell, not the root password itself.
Also, make sure SSH is enabled on the server. Sorry if I am telling you things
you already know.
I have to believe there is a shell command for
On 8/9/11 9:31 AM, Richmond Mathewson wrote:
On 08/09/2011 01:59 PM, John Dixon wrote:
Have a look at 'ftp' in the dictionary, that will do it for you
The problem about this is that it presupposes that one knows the ftp
address;
where the 'normal' download method would be via a web-page as
Hi Björke, i understand your state of mind, which I do share.. sometimes! I
take the position of using what is usable, what actually work; I took time
to test these stacks because it was strategic for my plans. And I adapted my
strategy to fit what works fine now.
On the other hand, I would really
On 08/09/2011 01:59 PM, John Dixon wrote:
Have a look at 'ftp' in the dictionary, that will do it for you
The problem about this is that it presupposes that one knows the ftp
address;
where the 'normal' download method would be via a web-page as http://...
the GET URL "ftp://..
Quite simply, any new feature RunRev implements is a patch, as in patched up
clothes. RunRev lacks the manpower (but not the dedication) to create fully
working groundworks, like a full implementation of stacks for all platforms, a
native GUI for iOS, native table fields or allowing all objects
I was put off by the term "delta". That implies that it's an updater to an
existing install. The normal installer is about 4GB.
Maybe you can install the Xcode from a 10.6 installer disc, and then apply the
Xcode delta version?
On Aug 9, 2011, at 8:23 AM, Klaus on-rev wrote:
> A lion compatib
stephen barncard wrote:
Again, Robert I have to disagree with you about this. You seem to feel
shortchanged somehow with the way stacks work on the server, yet it's really
doing all it can do in that environment.
What else would you want a stack to do on a server? The GUI has to be
created in H
Am 09.08.2011 um 14:08 schrieb Colin Holgate:
> I don't think the Lion compatible version of Xcode is released yet, so you
> would need to download the beta from your Mac OS or iOS developer account
> page. You can download the existing release version from there too. Not sure
> if it runs fin
Hi Colin,
I found a 10.7 version in the AppStore, 2.96GB :(
Again approaching a couple of days of download. I really hate the arrogance
of Apple presuming everyone has a fast internet connection. On which planet
do they live?
Thanks for your hint
Tiemo
> -Ursprüngliche Nachricht-
> Von: us
I don't think the Lion compatible version of Xcode is released yet, so you
would need to download the beta from your Mac OS or iOS developer account page.
You can download the existing release version from there too. Not sure if it
runs fine in Lion.
_
Hello,
I have downloaded and installed Lion on a fresh empty partition. Now I still
need to install the developer folder, which usually resides on the DVD.
Does anybody knows where I find my Lion download on my disc and how to get
the developer tools, or is there another way to get them?
Any hin
Hi Richmond,
It impossible to use revGoUrl (now launch url) without webbrowser, unless you
trick your operating system.
It is possible to use the put url function together with the urlStatus function.
--
Best regards,
Mark Schonewille
Economy-x-Talk Consulting and Software Engineering
Homepag
Have a look at 'ftp' in the dictionary, that will do it for you
> Date: Tue, 9 Aug 2011 13:24:23 +0300
> From: richmondmathew...@gmail.com
> Is it possible to use revGoURL to download files without the mediation
> of the end-user's web-browser?
>
> Or, put another way: it it possible to hav
Is it possible to use revGoURL to download files without the mediation
of the end-user's web-browser?
Or, put another way: it it possible to have a button called something like
"DOWNLOAD", which, on a mouseUp, will transparently download a file?
___
u
45 matches
Mail list logo