We have a client with a brand new Windows 7 installation and freshly
downloaded Firefox, reporting:
Upon following the mailed task link or the link to install the plugin I am
prompted to allow access. Regardless of what I do at this point, I
subsequently receive a notification "There was an error
On Jun 10, 2011, at 7:39 PM, J. Landman Gay wrote:
On 6/10/11 8:21 PM, Jim Ault wrote:
The () parens are telling the engine to capture any chars that meet
the
conditions inside and assign them to the first variable specified. In
this case, it is 'retVal'
If there were a second set of (), then
On 6/10/11 8:21 PM, Jim Ault wrote:
The () parens are telling the engine to capture any chars that meet the
conditions inside and assign them to the first variable specified. In
this case, it is 'retVal'
If there were a second set of (), then those chars would be assigned to
the second variable
How does the matchText call know just to capture the IP address in
the variable retVal?
Okay, you said you wanted to know what is going on, so here it is.
Modifier at the beginning of a statement
(?s)
says that the '.' char CAN match a return char, thus the match can
span 2 or more lines
I settled on Mark's shell script process to get IP address. I managed
to kludge together a case for Linux (Ubuntu Netbook) too. I did not
quite understand the matchtext line with its (?s) and (.*?)'s but the
Mac OSX case and Linux case almost worked without any changes.
The Linux shell is s
I posted a new version earlier today. The iOS movie player, and some
experimental retina control resizing is included. Thanks for all the
feedback so far.
http://www.splash21.com/MobGUI/
On 09/06/2011 00:51, John Craig wrote:
Following a good response after the live demo on livecode.tv, I'
It looks like for older browsers you might have to add a !DOCTYPE to make it
work.
---
http://www.w3schools.com/css/css_positioning.asp
--
No
It sure can!
On 11/06/2011, at 4:27 AM, Bob Sneidar wrote:
> I believe Datagrid Helper can do this as well.
>
> Bob
>
> On Jun 10, 2011, at 3:17 AM, John Dixon wrote:
>
>>
>> How do I set the lines of a dataGrid table to different colours ?... I can
>> seem to find it in the datagrid man
On Jun 10, 2011, at 11:15 AM, Nonsanity wrote:
> Neither of the solutions given so far in this thread have worked for my on
> my office PC. I just get my LAN 192.168.x.x number. Here's what I use. They
> do rely on outside entities, but they are both pretty stable sites that have
> lasted a good
On Jun 10, 2011, at 11:12 AM, John Patten wrote:
> Mark, I'm assuming there is a shell script for Ubuntu too that will do the
> same parse action as your script example? Your example should help me to
> understand how to parse the shell script.
Hi John,
Not sure what it is. But it will be ea
The two methods produce 2 different results for me.
Bob
On Jun 10, 2011, at 12:55 PM, James Hurley wrote:
>> -
>>
>> Message: 4
>> Date: Fri, 10 Jun 2011 10:32:45 -0700
>> From: Bob Sneidar
>> To: How to use LiveCode
>> Subject: Re: find by content with Mac OS
>> Mes
Unless, as was the case with me, it returns the FQDN from the AD DNS, and that
happens to be wrong. I get lgos-mp-bobsneidar.cccm.lan. THAT is from our AD
DNS, NOT the actual hostname of the computer as all computers will see it. What
if there are computers that are not a part of that domain, an
> -
>
> Message: 4
> Date: Fri, 10 Jun 2011 10:32:45 -0700
> From: Bob Sneidar
> To: How to use LiveCode
> Subject: Re: find by content with Mac OS
> Message-ID:
> Content-Type: text/plain; charset=us-ascii
>
> It does not. What you want to use is that little magnifying
well, you can set the cursor to different images repeatedly, therefore creating
a fake animation, kind of?
On 10 Jun 2011, at 21:29, Mark Stuart wrote:
> on Fri Jun 10 08:24:20 CDT 2011, baccheschi at tin.it wrote:
>>>
> perhapse may help you.. putting it on a .gif script
>
> on mouseUp
>
on Fri Jun 10 08:24:20 CDT 2011, baccheschi at tin.it wrote:
>>
perhapse may help you.. putting it on a .gif script
on mouseUp
set the repeatcount of img ID its_ID to -1
set cursor to 0
repeat until the mouseclick
set the loc of img ID its_ID to the mouseloc
end repeat
set th
Ah great - thanks Mark! I ignored the obvious as I thought position was just
about relative positioning within nested containers, but you seeded my Google
search perfectly http://www.w3.org/Style/Examples/007/menus
Best,
Keith..
On 10 Jun 2011, at 20:12, Mark Schonewille wrote:
> Hi Keith,
>
>
Hi Keith,
Set the position style property to fixed.
--
Best regards,
Mark Schonewille
Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553
New: Download the Installer Maker Plugin 1.6 for LiveCode here
In my last code, the localhost was just to get the hostName, something that
can also be done with LC's built in hostName function/prop like so:
put char 2 to -2 of word 3 of shell( "ping -n 1" && the hostName ) into msg
It's just an optional way to get the hostName if LC was failing to do that
pr
I forced Spotlight to re-index. Now it finds-by-content all of the stuff in
Apple applications it couldn't previously find. Sorry about the confusion.
For most purposes, exporting LC data to a text file so Spotlight could find it
by content would be far more trouble than it was worth. Certainly
On my machine (with virtualbox) using the example from above works, but
returns both addresses, for the machine as well as the virtualbox network
interface.
*on mouseUp
put the hostname into tHostName
--wait 1 sec
put the hostnametoaddress of tHostName
**end mouseUp*
*
*
Seems like if its on
Hi folks,
I'm having a little trouble with search terms for sorting the web page that
will contain my project revlet...
I want to place a little floating widget part-way down the right margin of the
web page that stays put vertically wrt the browser window as the lengthy,
underlying page conten
Or don't use localhost at all! It will always return 127.0.0.1. That is the
loopback address of every adapter under the sun.
Bob
On Jun 10, 2011, at 11:49 AM, Nonsanity wrote:
> haha I completely failed to grasp that. :)
>
> How about:
>
> put char 2 to -2 of word 3 of shell( "ping -n 1" &&
haha I completely failed to grasp that. :)
How about:
put char 2 to -2 of word 3 of shell( "ping -n 1" && word 2 of shell("ping -n
1 localhost") ) into msg
~ Chris Innanen
~ Nonsanity
On Fri, Jun 10, 2011 at 2:20 PM, John Patten wrote:
> Actually Chris I wanted the local network, behind th
So if you are using Apples, I wonder if there is a way to access the bonjour
address? When I ping the name of my computer in terminal, with .local appended
to the end I get the actual IP of the primary adapter. Now if I issue the
Livecode command put the hostname in the message box it returns t
On 6/10/11 11:12 AM, John Patten wrote:
Thanks for the quick replies!
I thought I had it figured out with Devin's suggestion. Everything seemed to
work with this script:
on mouseUp
put the hostname into tHostName
--wait 1 sec
put the hostnametoaddress of tHostName
end mouseUp
The ad
On Jun 10, 2011, at 11:20 AM, John Patten wrote:
Actually Chris I wanted the local network, behind the firewall IP
address. The project I have in mind is just using sockets in a
single classroom. All computers have 10.x.x.x. addresses.
Thanks!
You could try this.
When you send a pac
He wants the local are network IP, not the public NAT address.
Bob
On Jun 10, 2011, at 11:15 AM, Nonsanity wrote:
> Neither of the solutions given so far in this thread have worked for my on
> my office PC. I just get my LAN 192.168.x.x number. Here's what I use. They
> do rely on outside enti
This works for me. Methinks it is going to give you the address of the primary
adapter. Do you have multiple adapters? Any bridging going on, like with
Parallels networking? Also, if the hostname function is using DNS, then it may
be that your DNS records are stale. This is just a guess though.
I believe Datagrid Helper can do this as well.
Bob
On Jun 10, 2011, at 3:17 AM, John Dixon wrote:
>
> How do I set the lines of a dataGrid table to different colours ?... I can
> seem to find it in the datagrid manual.
>
> be well
>
>
Well the solutions presented in blogs i have seen are not panning out. Oddly,
zip files containing Livecode stacks ARE being found by Spotlight, but not the
stacks themselves.
I think this will require the Livecode people to create a valid mdimporter file
for livecode stacks.
Bob
On Jun 10,
Actually Chris I wanted the local network, behind the firewall IP
address. The project I have in mind is just using sockets in a single
classroom. All computers have 10.x.x.x. addresses.
Thanks!
John Patten
SUSD
On Jun 10, 2011, at 11:15 AM, Nonsanity wrote:
Neither of the solutions given
Neither of the solutions given so far in this thread have worked for my on
my office PC. I just get my LAN 192.168.x.x number. Here's what I use. They
do rely on outside entities, but they are both pretty stable sites that have
lasted a good long time...
[whatismyip.org]
put url "http://www.whatis
Thanks for the quick replies!
I thought I had it figured out with Devin's suggestion. Everything
seemed to work with this script:
on mouseUp
put the hostname into tHostName
--wait 1 sec
put the hostnametoaddress of tHostName
end mouseUp
The address returned 10.58.0.109. However, whe
Bob,
On Jun 10, 2011, at 11:48 AM, Bob Sneidar wrote:
> I may have found a solution for this but to test it I need to know what the
> file type is (not the filename extension) of a LiveCode stack. Anyone?
Are you referring to the Mac file type code? It's RSTK. The creator signature
for LiveCod
one way to see filetypes is the "detailed files".
another way is to go into the ressource fork yourself with the "resfile:"
specifier for URL:
put url ("resfile:" & the effective filename of this stack)
On 10 Jun 2011, at 19:48, Bob Sneidar wrote:
> I may have found a solution for this but to
I may have found a solution for this but to test it I need to know what the
file type is (not the filename extension) of a LiveCode stack. Anyone?
Bob
On Jun 9, 2011, at 6:04 PM, Timothy Miller wrote:
> Thanks Jim and others.
>
> I have worked out ways to search my LC stacks quickly and conve
Hi John,
Hope this helps.
function getMyIp
switch (the platform)
case "MacOS"
put shell("/sbin/ifconfig en0") into tEthernetConfig
put shell("/sbin/ifconfig en1") into tWirelessConfig
if char 1 to 4 of tIp
John,
Look at the hostName and hostNameToAddress functions
put the hostNameToAddress of the hostName into fld "info"
HTH
Devin
On Jun 10, 2011, at 11:05 AM, John Patten wrote:
> Hi All...
>
> I've been looking at all the solutions in the archive for getting the
> IP address of the machine
It does not. What you want to use is that little magnifying glass in the upper
right of your screen in the menu bar. Command-F in the Finder only searches for
the contents of files, but not I think Address Book files and such.
Still using this method, I am not seeing any of my stacks after sear
You must have Spotlight indexing turned off. It works for me in ALL of the apps
you suggested that it does not. Alternately, you may have a corrupted Spotlight
index. You can google how to remedy that.
Bob
On Jun 9, 2011, at 6:04 PM, Timothy Miller wrote:
> Thanks Jim and others.
>
> I have
I'm sorry I keep getting advertisements interrupting the presentation. I can't
watch this. It sounds promising though.
Bob
On Jun 9, 2011, at 3:47 PM, Andre Garzia wrote:
> JC,
>
> You made my day!!! I tried creating a similar tool to myself but I couldn't.
> Your tool is greater than anythin
Hi All...
I've been looking at all the solutions in the archive for getting the
IP address of the machine running a stack. Some shell scripts, some
php calls, etc. etc.
I have a situation where we are behind a firewall using NAT. So all
our computers are running a 10.x.x.x.x address. I'm
Thanks , Trevor for responding to this. It's working now with the dummy
substack method, but I will employ the stack sequence thing in the future.
sqb
On 10 June 2011 05:42, Trevor DeVore wrote:
> On Thu, Jun 9, 2011 at 8:40 PM, stephen barncard <
> stephenrevoluti...@barncard.com> wrote:
>
>
Messaggio originale
Da: mstu...@adaptcrm.com
Data: 9-giu-2011
18.05
A:
Ogg: using animated gif for a
cursor on Windows
Hi All,
I'm using an animated gif (rotating dot in a
circle) with the cursor on
Windows XP, but the gif doesn't animate in
LC v4.6.1.
the script:
on openStack
On Thu, Jun 9, 2011 at 8:40 PM, stephen barncard <
stephenrevoluti...@barncard.com> wrote:
>
> With no error, but the grid is lifeless. Can't scroll, can't put data in
> etc.
>
See my response to your original email (just posted). It sounds like
revdataGridLibrary stack isn't available when your
On Thu, Jun 9, 2011 at 5:57 AM, Alessandro Pisoni
wrote:
> I have a button that creates a row in my datagrid but I would be
> automatically moves to the specific field in that row. how can I do?
>
> on mouseup
> put the dgNumberOfLines of group "ElencoTelefoni" + 1 into theLineNo
> dispatch "a
Here we go. Event 27 crawls into existence on its last tooth, and features
these presenters:
Andreas Rozek will showcase his recently released "iPhone Control Kit", a
native iOS widgets creation tool. In addition to a small introduction, he'll
also give us a tutorial on how to use it.
http://li
Is this the one you're looking for?
http://lessons.runrev.com/spaces/lessons/manuals/datagrid/lessons/7332-How-Can-I-Colorize-Individual-Lines-in-a-Table-
On Fri, Jun 10, 2011 at 4:17 AM, John Dixon wrote:
>
> How do I set the lines of a dataGrid table to different colours ?... I can
> seem to
On Tue, Jun 7, 2011 at 6:07 PM, stephen barncard <
stephenrevoluti...@barncard.com> wrote:
> I can then use any of these stacks anywhere with no IDE. Very nice except
> I
> can't seem to make datagrids work on stacks that are used this way. I was
> able to ascertain that indeed the substack with
On Jun 10, 2011, at 3:43 AM, James Hurley wrote
Is there something I am missing? Spotlight doesn't appear to index
my scripts and I have everything checked in the Mac OS Spotlight
Preferences.
All versions of Rev and LC do not make the scripts or field data
available for spotlight index
so you'd like to help with organising?
On 10 Jun 2011, at 02:45, stephen barncard wrote:
> Such is the downside of being solely responsible for an international weekly
> independent television show!
>
>
> 2011/6/9 Björnke von Gierke
>
>> Hi
>>
>> Here is the wrap up from the last event. I'm
> ---
>
> Message: 2
> Date: Thu, 09 Jun 2011 14:11:19 -0700
> From: Richard Gaskin
> To: use-livecode@lists.runrev.com
> Subject: Re: find by content with Mac OS
> Message-ID: <4df136f7.3050...@fourthworld.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
so you volunteer for saturday in a week?
On 10 Jun 2011, at 02:55, Roger Eller wrote:
> 2011/6/9 Björnke von Gierke
>
>> Hi
>>
>> Here is the wrap up from the last event. I'm sorry it's a bit late, but
>> having no presenters stresses me out disproportionally.
>>
> I am pretty sure I saw at l
How do I set the lines of a dataGrid table to different colours ?... I can seem
to find it in the datagrid manual.
be well
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to s
I need to get the "Computername" from a Windows PC, but if
the computername contains non ASCII chars I get odd characters.
Also, the global variable (%Computername%) from inside LiveCode does
not display non ASCII chars correctly.
I also tried to use the CMD with the command "hostname", which
dis
55 matches
Mail list logo