It's really quite nice.
I walk around the city and marvel at how many people basically look
out onto tarmac or brick. After living with a view for so long, I
can't imagine not having one. But most people don't (at least not in
cities).
Another reason to count one's blessings.
Bernard
On Tue,
Not necessarily; they could still get listed here:
http://codeclub.org.uk/blog/
But then they'd need a canned set of lesson plans.
Judy
On Tue, 17 Apr 2012, Richmond wrote:
Why do I feel that RunRev's "odd" behaviour with RevMedia has meant
that they may have missed an important chance?
__
Funny you should mention this... This is what I'm thinking of doing at my
kids' middle school next year... Well, without robots anyways.
Judy
On Tue, 17 Apr 2012, Richmond wrote:
Why do I feel that RunRev's "odd" behaviour with RevMedia has meant
that they may have missed an important chance
Thank you zryip, that fixed both problems. I had found another solution
which was to set the dgtext to empty. I initially thought that wouldn't
work since the internal dg storage is not supposed to exist when use
dgNumberOFRecords. I feel more comfortable with your solution though,
Thanks,
Pete
Hi there,
Ok, I've tried just about everything I can think of to measure X,Y, and Z angles
on my iPad 2. Nothing works right. I tried converting from radians to degrees,
and the device just isn't giving me the correct information at all. I've tried
the
accelerometer, the "gyroscope", etc. The
Yeah, I was thinking the last one would show the mouse UP. My next suggestion
is similar to that made by Mike: use send.
If you are not able to catch the UP with his suggestion, increase the time or
maybe the first resizeStack would start a send-polling cycle that looks for
mouse up.
Dar
Hi Jacqueline,
Am 17.04.2012 um 22:57 schrieb J. Landman Gay:
> On 4/17/12 3:44 PM, Klaus on-rev wrote:
>> Hi Dar,
...
Any hints how I can trap that above menitoned moment on Windows?
>>> Check 'the mouse' in resizeStack?
>>
>> ah, you mean for UP or DOWN?
>> Hm, yep, looks like it is
Hi Mike,
Am 17.04.2012 um 22:56 schrieb Mike Bonner:
> Use a send in time to do this.
>
> create a handler to do whatever it is that you want done when the stack is
> done resizing
>
> command resizingDone
> if the mouse is up then
> ### stuff to do after resize
> end if
> end resizingDone
>
>
On 4/17/12 3:44 PM, Klaus on-rev wrote:
Hi Dar,
Am 17.04.2012 um 21:02 schrieb Dar Scott:
On Apr 17, 2012, at 12:54 PM, Klaus on-rev wrote:
I have some scripts that I need to execute AFTER the user has finished resizing
my stack.
On the Mac I can set "the liveresizing" of my stack to false
Use a send in time to do this.
create a handler to do whatever it is that you want done when the stack is
done resizing
command resizingDone
if the mouse is up then
### stuff to do after resize
end if
end resizingDone
And use a send in time from the resizestack handler
on resizestack
## any co
Hi Dar,
Am 17.04.2012 um 21:02 schrieb Dar Scott:
> On Apr 17, 2012, at 12:54 PM, Klaus on-rev wrote:
>
>> I have some scripts that I need to execute AFTER the user has finished
>> resizing my stack.
>> On the Mac I can set "the liveresizing" of my stack to false and simply
>> execute my scrip
I have seen those reluctant yellow dots. I eventually gave in and upgraded to
Lion, and installed the latest Xcode. That was probably what fixed it for me.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe
Colin/Pierre,
Thanks for your help Pierre! I had got it working again just before your
email arrived. Here's what I did:
1) I Noticed that the provisioning profiles listed in LC had my app's
Provisioning listed twice?? Weird...
2) Closed LC
3) In Xcode with the iPad connected I deleted the provis
On 17/04/2012 16:14, Bob Sneidar wrote:
I was misinformed. You can do more than one, but I don't think more than 5. We
have 70 at least.
My impression is that you can, but you shouldn't. That is, the store lets you
download and install on multiple machines; but you are then in breach of the
On Apr 17, 2012, at 12:54 PM, Klaus on-rev wrote:
> I have some scripts that I need to execute AFTER the user has finished
> resizing my stack.
>
> On the Mac I can set "the liveresizing" of my stack to false and simply
> execute my scripts at
> the end of my "resizestack" handler. But this do
Hi friends,
I have some scripts that I need to execute AFTER the user has finished resizing
my stack.
On the Mac I can set "the liveresizing" of my stack to false and simply execute
my scripts at
the end of my "resizestack" handler. But this does not work on windows, where
"liveresizing"
is a
On 4/17/12 1:17 PM, Graham Samuel wrote:
At the
moment I am drowning in Apple documentation and Apple terminology -
provisioning, certificates, profiles, requests, Team Agents (am I
one?), etc. I have come to a grinding halt because what the Apple
documentation says I should be seeing, I'm not se
The LiveCode Lessons pages include some walkthroughs that show you the things
you need to know. Here's the one on getting a distribution certificate:
http://lessons.runrev.com/s/lessons/m/4069/l/32957-how-do-i-create-a-distribution-profile-for-ios
For everything you described though, you can get
On 4/17/12 10:47 AM, Colin Holgate wrote:
You have to wait for it to download before you can use it, but you
don't have to wait for it to download if you're just installing it.
With Android the download stage is ahead of the installing stage. The
Android download, accept permissions, install stag
Hi Pete,
Sorry for the delay in the answer, I've just read your post.
Have you tried to send a ResetControl command to the datagrid, before
to change the dgNumberOfRecords property?
Example:
command PopulateMyDataGrid
doMySQLStuff
send "ResetControl" to grp "myDataGrid"
set the dgNum
I haven't put 'OT' on the subject because I think this should be on topic for
any LC developer planning to deploy on iOS. I have been confused by the current
discussion started by Bob Sneidar {"How to take a fairly good concept and jack
it up badly"). I don't want to comment on Apple's policies
Hi Zryip,
Am 17.04.2012 um 19:41 schrieb zryip theSlug:
> Hi Klaus,
>
> Another solution is to send a SelectAll command to the datagrid group:
> dispatch "SelectAll" to grp "myDatagrid"
well, this sounds like a good idea :-D
Thanks!
> Have also a look in your copy of DGH. The script installer
I had a similar problem a few weeks ago. The problem: my standalone app is a
'splash' style app and didn't have a DG substack of its own. I added a DG to the
standalone app stack, made it small, hid it and never use it. Now when I make it
into a standalone, the Standalone Builder finds the unuse
Hi Klaus,
Another solution is to send a SelectAll command to the datagrid group:
dispatch "SelectAll" to grp "myDatagrid"
Have also a look in your copy of DGH. The script installer has a
button named "Select All" with an example using this command.
On Tue, Apr 17, 2012 at 4:57 PM, Klaus on-re
Hi Bob,
Am 17.04.2012 um 19:12 schrieb Bob Sneidar:
> It's about this time I begin to ask myself, "Am I going about this the right
> way?" For my part, just having a user click on a record and hilite it doesn't
> seem like it's enough. I have an edit mode and a browse mode, and in browse
> mod
Incidentally, if you can get through those steps, including seeing the iPad in
the Organizer window, then there's no need to involve iTunes at all. Just drag
the .app file on to your device in the Organizer window's device list, it will
install without requiring a sync.
Ralph,
What works for me when the problem occurs (:
- Go to the iPad preference pane
- Select the General Tab
- Select Profile
- Remove the Provisioning profiles available there
- Connect your iPad to your mac via usb
- Launch XCode
- Go to the Organizer window
- From the iPad device main tab (f
It's about this time I begin to ask myself, "Am I going about this the right
way?" For my part, just having a user click on a record and hilite it doesn't
seem like it's enough. I have an edit mode and a browse mode, and in browse
mode a user can still select a row in a datagrid, even though it
Why do I feel that RunRev's "odd" behaviour with RevMedia has meant
that they may have missed an important chance?
http://www.bbc.com/news/technology-17740143
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscrib
Hi Peter,
Am 17.04.2012 um 18:40 schrieb Peter Haworth:
> There has to be a better way but you could set the dghilitedlines to a
> comma separated list of every line number from 1 to the dgnumberofrecords.
yeah, works great, thanks a lot! :-)
Best
Klaus
--
Klaus Major
http://www.major-k.de
k
-- Forwarded message --
From: "Peter Haworth"
Date: Apr 17, 2012 9:34 AM
Subject: Re: select all rows in DG table via script?
To: "How to use LiveCode"
There has to be a better way but you could set the dghilitedlines to a
comma separated list of every line number from 1 to the d
You have to wait for it to download before you can use it, but you don't have
to wait for it to download if you're just installing it. With Android the
download stage is ahead of the installing stage. The Android download, accept
permissions, install stages, are the equivalent of the single touc
Because I never assume the default stack to be what I need it to be. I require
that any scripts that address objects use "of me" or "of the target" or "of
stack…" or "of card...". But I did try removing the "of me" just in case that
was throwing execution off somehow. Made no difference. Still t
On 4/17/12 9:09 AM, Colin Holgate wrote:
Using either BetaBuilder, or Jacque's thing, it's easier to install
on iOS than Android. With iOS you have to touch the screen three
times - once in the email you received, once in the web page you're
taken to, and once more in the dialog that asks if you
Why group "Modules" of me? Why not just group "Modules"?
Bob
On Apr 16, 2012, at 8:48 PM, Tereza Snyder wrote:
> I am at my wit’s end. Suddenly, my datagrid stopped working in my standalone.
> At first, I laughed, "Oh ho, I must have neglected to load the revdatagrid
> library! It’ll be fixed
I was misinformed. You can do more than one, but I don't think more than 5. We
have 70 at least.
Bob
On Apr 16, 2012, at 6:39 PM, J. Downs wrote:
> I use the same Apple ID on all my Lion Macs, and download software I've
> purchased to as many as I like. Is there some plan to change this in
Hi friends,
the subject says it all, how can I select all rows in a TABLE DataGrid via
script?
I want to implement a "Select all" menu item, but did not find a hint in the DG
docs.
Thanks in advance!
Best
Klaus
--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com
__
Hello All,
at the end I was able to upload my application to the app store.
First I had to clear up the Key Chain, but still I was getting an
error from the Application Loader. I was receiving the following
message: "An error occurred uploading to the iTunes Store"
Thank's Google I came up to this
Jacque wrote:
> If you haven't done it yet, one quick way to find out is to set the
> standalone settings in the Bug Reports pane to save errors to a file. If
> there's an execution error it will show up there.
I have try-catches everywhere; I have errors written to stdout; I have my own
debugg
For the iOS situation to be limiting you would need to be talking about an app
that was needed by over 100 people in the company. Even medium sized companies
rarely have 100 people who have to run a particular in-house app. If you wanted
many hundreds, you only need another one or two more devel
The truth is, ... Chicago is the most beautiful city in the world. Thanks to
Louie Sullivan et al, a gorgeous blue fresh water lakes reflects one of the
finest skylines on earth, with only parks are recreation in between. But, ... I
can tell you this, ... there is not a LiveCode aficionado withi
I suspect Apple will undergo significant changes to some of these
policies for their app stores.
In addition to the onerous situation you described, consider the many
opportunities for small and medium organizations to put their iOS
devices to use solving problems specific to their business, l
Hi LiveCoders
The mergExt suite of externals has grown again! The mergExt poll results
continue to identify MapKit as a very high prority for the LiveCode community
and now mergMK delivers beautiful maps with very easy to use commands. Action
sheets are such a critical user interaction method t
43 matches
Mail list logo