LiveCode Datagrid Questions

2010-10-02 Thread Peter Haworth
I'm having a number of issues with datagrids created in LiveCode 4.5.   
Datagrids created by Revolution 4.0 still work fine.


I am unable to create custom column behaviors for any columns using  
the recommended method.  I click the plus sign for the column, the  
card with the row template is displayed, I select the row template  
group but the Edit Group button in the toolbar or on the Object menu  
is greyed out and doesn't function.  If I select the card containing  
the template for the datagrid, then select the Row Template group,   
the Edit Group command is available to me.


I have a default column behavior script which I use for all my  
datagrids.  Those created under 4.0 correctly execute the various  
handlers in that script but any created under 4.5 never execute any of  
the handlers in that script (the default column behavior is set to the  
correct button).


I see two new handlers in the default column behavior supplied with  
LiveCode - PreFillinData and ResetData.  What are some uses for these  
handlers?


I also saw a recent post to this list regarding some new built in drag  
and drop reordering handlers in the default script - they don't appear  
in my default script.


I have been using the Data Group Handler plugin.  I have removed it  
from the Plugins folder in the Application bundle but these problems  
did not go away.


Any answers much appreciated.

Pete Haworth









___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: data from USB joystick

2010-10-02 Thread David Glasgow



On 29 Sep 2010, at 6:00 pm, -=JB=- wrote:

 
 Exactly and that is why I did not mention it in my first response
 because it sounded to me like he wanted to write code that is
 going to allow his program to communicate with a USD device
 and not depend on anything but his program.

You are correct in what you understood, that would be ideal - and I am sure 
would be valuable to many LiveCode users.  

However, I am desperate to know whether my idea will work or not, so, I can do 
some development  testing work using USBOverdrive, and then worry about how to 
package it all up neatly (and cross platform) later, if it does work.


Best Wishes,

David Glasgow
Carlton Glasgow Partnership

i-psych.co.uk
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Pullout menus disappear

2010-10-02 Thread FlexibleLearning
If the mouse is moved into a pullout whose first item is disabled, the
pullout vanishes as soon as the mouse leaves the main menu and enters the
pulllout. Looks like mouse-tracking is flakey. It makes using a hierarchical
menu with the first item disabled rather difficult! And yes, I know such
menus are not now recommended, but it makes sense in this instance. Is this
a general bug, a bug with Windows XP, or just a bug with me?

Also, a disabled radiomark (i.e. using !r( in front of the item) displays
a disabled radiomark, as expected. However, a purportedly disabled checkmark
(i.e. using !c( in front of the item) displays an ENABLED checkmark. Bug?


Hugh Senior

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode Datagrid Questions

2010-10-02 Thread zryip theSlug
On Sat, Oct 2, 2010 at 8:29 AM, Peter Haworth p...@mollysrevenge.com wrote:
 I'm having a number of issues with datagrids created in LiveCode 4.5.
  Datagrids created by Revolution 4.0 still work fine.

 I am unable to create custom column behaviors for any columns using the
 recommended method.  I click the plus sign for the column, the card with the
 row template is displayed, I select the row template group but the Edit
 Group button in the toolbar or on the Object menu is greyed out and doesn't
 function.  If I select the card containing the template for the datagrid,
 then select the Row Template group,  the Edit Group command is available to
 me.

 I have a default column behavior script which I use for all my datagrids.
  Those created under 4.0 correctly execute the various handlers in that
 script but any created under 4.5 never execute any of the handlers in that
 script (the default column behavior is set to the correct button).

 I see two new handlers in the default column behavior supplied with LiveCode
 - PreFillinData and ResetData.  What are some uses for these handlers?

 I also saw a recent post to this list regarding some new built in drag and
 drop reordering handlers in the default script - they don't appear in my
 default script.

 I have been using the Data Group Handler plugin.  I have removed it from the
 Plugins folder in the Application bundle but these problems did not go away.

 Any answers much appreciated.

Peter,

To clarify things about DGH (Data Grid Helper):

1) About interaction with the IDE.
- DGH traps double click and click ONLY on datagrid groups.
- it interacts with the LiveCode's inspector ONLY for the objects in
its template area.

2) About scripts
- DGH build scripts to fill column behaviors but it is not able to
change how the datagrid library performs.

3) About templates
- DGH uses its own way to edit the templates of a datagrid in a
special area and never directly in the datagrid template it edits.
- DGH not uses the IDE to edit templates.


So DGH is not capable to generate the issues you describe:
- group capability disable in the IDE  (menu and toolbar)
- handlers not working in a behavior script



Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Claudi Cornaz

Hi Richard,

It works if you create it as one var so put gaskin[richard] into  
tPropSet

set the tPropset of tObj to tValue

Or you can do

on mouseUp
 put gaskin into tPropset
 put [richard] after tPropSet
 set the tPropSet of tObj to tValue
end mouseUp

I use this the whole time


Claudi




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drag drop reordering of a DataGrid form

2010-10-02 Thread zryip theSlug
On Fri, Oct 1, 2010 at 2:23 PM, Monte Goulding
mo...@sweattechnologies.com wrote:
 Hold the phone. Looking at the data grid behavior script this might already 
 be a feature but I can't find any docs about enabling it. Trevor?

 Talking to myself here but the blog post has been updated with a drag and 
 drop script using the inbuilt support that seems to be undocumented. Scroll 
 to the bottom but I'm leaving my original script as it still might be 
 worthwhile for people that want to give their drag and drop a customised look.

 http://goulding.ws/consulting/blog/

 Cheers

Hi Monte,

You are correct and Trevor could confirm that: for now there is no
documentation about the drag  drop features of a datagrid.

Concerning Drag  drop, Trevor has shared different links.

1) An example with a mp3 library:
http://tr.im/data_grid

This example shows how reorder lines in a DG or copy lines from a DG
table to a DG form

2) A sample stack
http://www.bluemangolearning.com/download/revolution/tools/dragdroptest.zip
The code used in the DG group is similar to the script you shared in
your blog excepted the dragMove handler is missing.


I shared also a small lab stack one or two weeks ago, to demonstrate
how drag  drop lines from a DG table to another DG table.
http://www.aslugontheroad.co.cc/index.php?option=com_phocadownloadview=categorydownload=11:experiment-15-drag-drop-in-dgid=7:data-gridItemid=63



You have found your way with that so I posted this in case it could be
useful for someone in the list.
Anyway the Trevor's mp3 library still interesting to study.



Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


An easy way to pipe input into shell commands?

2010-10-02 Thread David Bovill
Is there a neat way to pipe input into shell commands from STDIN? The usual
way I do it is to recreate everything as temporary files and then pass the
file references - however it is both a hassle and can leave clutter around
although I assume files stored in the tempname directory get cleared out
properly on all platforms (anyone - I've not tested this cross-platform?).

For smaller inputs (one liners) - you can construct a shell command which
pipes an echo command - like this:

put echo 'Hello world!' | commandLineThatTakesSTDIN into someShell
 put shell (someShell)


But is you have a lot of text in a variable, that you want to pipe to a
shell command this is not going to work - hence the need to write out to a
temporary file. I'm just wandering if there is a way to do something like
set the contents of STDIN from LiveCode, then just enter the shell command,
or if this could be some form of feature request?
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: An easy way to pipe input into shell commands?

2010-10-02 Thread Mark Schonewille
Hi David,

One possibility might be to use CURL to connect to your standalone through a 
socket and pipe the data from that connection to the next shell command. This 
will work on Unix machines but might bot work on Windows.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce 
Create installers for Mac and Windows on *every* Rev-compatible platform. No 
additional software needed.

On 2 okt 2010, at 14:31, David Bovill wrote:

 Is there a neat way to pipe input into shell commands from STDIN? The usual
 way I do it is to recreate everything as temporary files and then pass the
 file references - however it is both a hassle and can leave clutter around
 although I assume files stored in the tempname directory get cleared out
 properly on all platforms (anyone - I've not tested this cross-platform?).
 
 For smaller inputs (one liners) - you can construct a shell command which
 pipes an echo command - like this:
 
 put echo 'Hello world!' | commandLineThatTakesSTDIN into someShell
 put shell (someShell)
 
 
 But is you have a lot of text in a variable, that you want to pipe to a
 shell command this is not going to work - hence the need to write out to a
 temporary file. I'm just wandering if there is a way to do something like
 set the contents of STDIN from LiveCode, then just enter the shell command,
 or if this could be some form of feature request?


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drag drop reordering of a DataGrid form

2010-10-02 Thread Monte Goulding
 2) A sample stack
 http://www.bluemangolearning.com/download/revolution/tools/dragdroptest.zip
 The code used in the DG group is similar to the script you shared in
 your blog excepted the dragMove handler is missing.

Ah, this stack would have been handy. It doesn't work unless you set the 
dragAction in dragMove though.

Cheers

--
Monte Goulding
M E R Goulding Software Development
Bespoke application development for vertical markets

InstallGadget - How to create an installer in 10 seconds
revObjective  - Making behavior scripts behave

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Richard Gaskin

Claudi Cornaz wrote:


It works if you create it as one var so put gaskin[richard] into
tPropSet
set the tPropset of tObj to tValue

Or you can do

on mouseUp
  put gaskin into tPropset
  put [richard] after tPropSet
  set the tPropSet of tObj to tValue
end mouseUp

I use this the whole time


Nice!

It hadn't occurred to me to put the entire array notation string into a 
variable.  And it avoids the performance penalty of do -- good stuff. 
 Thanks!


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drag drop reordering of a DataGrid form

2010-10-02 Thread zryip theSlug
On Sat, Oct 2, 2010 at 2:51 PM, Monte Goulding
mo...@sweattechnologies.com wrote:
 2) A sample stack
 http://www.bluemangolearning.com/download/revolution/tools/dragdroptest.zip
 The code used in the DG group is similar to the script you shared in
 your blog excepted the dragMove handler is missing.

 Ah, this stack would have been handy. It doesn't work unless you set the 
 dragAction in dragMove though.

Monte,

Right. It seems necessary to set the dragAction in the dragMove
handler since LiveCode 4.5.
When I'm running the same stack with Revolution 4.5 dp2 all works like
a charm without the dragMove handler.


Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drag drop reordering of a DataGrid form

2010-10-02 Thread zryip theSlug
 On Sat, Oct 2, 2010 at 2:51 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
 2) A sample stack
 http://www.bluemangolearning.com/download/revolution/tools/dragdroptest.zip
 The code used in the DG group is similar to the script you shared in
 your blog excepted the dragMove handler is missing.

 Ah, this stack would have been handy. It doesn't work unless you set the 
 dragAction in dragMove though.

 Monte,

 Right. It seems necessary to set the dragAction in the dragMove
 handler since LiveCode 4.5.
 When I'm running the same stack with Revolution 4.5 dp2 all works like
 a charm without the dragMove handler.

Just to clarify, this is a change in the datagrid library itself not
in the LiveCode engine.
I have tried this by using the revdatagridlibrary stack from the
LiveCode 4.5 into my version of Revolution 4.5 dp2 and now I have to
set the dragAction to make the reorder perform.


Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Launch app from MacOSX system bar

2010-10-02 Thread JosepM

Hi,

It's posible to launch one app from the system bar like, for example
DropBox, Evernote...

Any experience? I remember read something in some post but I don't found...

Salut,
Josep M
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Launch-app-from-MacOSX-system-bar-tp2952429p2952429.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread Mark Schonewille
Josep,

That's not really what's happening. Whenever you choose an item from the menus 
in the top-right, the menu item selection is handled by a programme (e.g. a Rev 
standalone). This programme can launch another programme.

Do you have a problem creating a menu icon in the top-right or do you have a 
problem launching another programme?

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce 
Create installers for Mac and Windows on *every* Rev-compatible platform. No 
additional software needed.

On 2 okt 2010, at 15:40, JosepM wrote:

 
 Hi,
 
 It's posible to launch one app from the system bar like, for example
 DropBox, Evernote...
 
 Any experience? I remember read something in some post but I don't found...
 
 Salut,
 Josep M

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread JosepM

Hi Mark,

I want create a custom icon that launch my standalone. I see that I must
create a menulets, isn't?


Salut,
Josep
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Launch-app-from-MacOSX-system-bar-tp2952429p2952451.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMobile Discussions

2010-10-02 Thread Michael D Mays
Is this the or is there a place for RevMobile discussions?

Thanks,
Michael
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread Mark Schonewille
Hi Josep,

You need to create an statusIcon (according o the release notes). For example:

on preOpenStack
  set statusIcon to 23001
  set the statusIconMenu to Open Programme|openStandalone
end preOpenStack

and you need a script that handles the menu selection:

on iconMenuPick theItem
  switch theItem
case openStandalone
  launch path/to/your/standalone
  break
case somethingElse
  -- do something else here
  break
case quit
  quit
  break
   end switch
end iconMenuPick

Keep these scripts in a separate standalone, which runs all the time. Whenever 
the menu item Open Standalone is selected, the iconMenuPick handler runs and 
opens your main standalone.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce 
Create installers for Mac and Windows on *every* Rev-compatible platform. No 
additional software needed.

On 2 okt 2010, at 15:51, JosepM wrote:

 
 Hi Mark,
 
 I want create a custom icon that launch my standalone. I see that I must
 create a menulets, isn't?
 
 
 Salut,
 Josep
 
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Claudi Cornaz


There is another one theat works
put richard into tProp

put the gasking[tprop] of tObj

Apparantly the set name by itself can't be a var, altough the prop  
name can.
So either put the whole thing in a var (set name en property name) or  
you can only use the property part as a var.


   Claudi


On 2 okt 2010, at 15:18, Richard Gaskin wrote:


Claudi Cornaz wrote:


It works if you create it as one var so put gaskin[richard] into
tPropSet
set the tPropset of tObj to tValue

Or you can do

on mouseUp
 put gaskin into tPropset
 put [richard] after tPropSet
 set the tPropSet of tObj to tValue
end mouseUp

I use this the whole time


Nice!

It hadn't occurred to me to put the entire array notation string  
into a variable.  And it avoids the performance penalty of do --  
good stuff.  Thanks!


--
Richard Gaskin
Fourth World
LiveCode training and consulting: http://www.fourthworld.com
Webzine for LiveCode developers: http://www.LiveCodeJournal.com
LiveCode Journal blog: http://LiveCodejournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: An easy way to pipe input into shell commands?

2010-10-02 Thread Dar Scott

On Oct 2, 2010, at 6:31 AM, David Bovill wrote:


Is there a neat way to pipe input into shell commands from STDIN?


You might consider the slave process feature of LiveCode which has  
been revamped in 4.5.  Use 'open process' to run the command-line  
tool.  Use 'write ... to process' to write to its STDIN.  Get the  
result with 'read from process'.  There is an example in the revision  
notes.  This is not new.  Working well is presumably new.


The limitation is that when you close the pipe to the process,  
LiveCode (that is, the version of Revolution I tested years ago-- 
things may have changed) also closes the pipe from the process, so  
this would not be good for things that do their work after the close,  
such as sort.



put echo 'Hello world!' | commandLineThatTakesSTDIN into someShell
put shell (someShell)


Cool!

Dar Scott


--
**
Dar Scott
Dar Scott Consulting  and  darzLAB
8637 Horacio Place NE
Albuquerque, NM 87111

Lab, office, home:  +1 505 299 9497
Fax:try 299-9497
Skype:  lets set up a time

http://www.swcp.com/dsc
d...@swcp.com

Computer programming and tinkering
**



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMobile Discussions

2010-10-02 Thread Colin Holgate

On Oct 2, 2010, at 9:54 AM, Michael D Mays wrote:

 Is this the or is there a place for RevMobile discussions?

I would think that here would be a good place. It's not really any different 
than if you were asking about a standalone specific issue, there isn't a 
special forum just for that.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMobile Discussions

2010-10-02 Thread Dar Scott

On Oct 2, 2010, at 7:54 AM, Michael D Mays wrote:

Is this the or is there a place for RevMobile discussions?


I cannot answer your question.

I can say that I would not mind.

I had assumed this is where others would focus and I might focus on  
other things, but it looks like revMobile is in my future, even in  
communicating with my microcontroller work.


The new licensing makes updating to revMobile licenses just-in-time  
and low cost, so anybody is just a few steps away.


Dar Scott


--
**
Dar Scott
Dar Scott Consulting  and  darzLAB
8637 Horacio Place NE
Albuquerque, NM 87111

Lab, office, home:  +1 505 299 9497
Fax:try 299-9497
Skype  Google: lets set up a time

http://www.swcp.com/dsc
d...@swcp.com

Computer programming and tinkering
**



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread JosepM

Hi Mark,

And how I put the standalone into de status bar as status item? As
NSStatusItem?

Maybe I don't explain myself or I don't understand you..., I refer to put
the item to the status bar as Airport icon, Monitor icon, the time, the
spotlight, and clicking from this show options and one of them was launch
the standalone...

Salut,
Josep
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Launch-app-from-MacOSX-system-bar-tp2952429p2952511.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread Mark Schonewille
Josep,

Apparently, you don't know that you can do this with RR 4.5 now. No need for 
NSStatusItems.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce 
Create installers for Mac and Windows on *every* Rev-compatible platform. No 
additional software needed.

On 2 okt 2010, at 17:22, JosepM wrote:

 
 Hi Mark,
 
 And how I put the standalone into de status bar as status item? As
 NSStatusItem?
 
 Maybe I don't explain myself or I don't understand you..., I refer to put
 the item to the status bar as Airport icon, Monitor icon, the time, the
 spotlight, and clicking from this show options and one of them was launch
 the standalone...
 
 Salut,
 Josep


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread Klaus on-rev
Hi Josep and Marc,

according to the 4.5 Release Notes (page 10-11) this feature is
1. experimental, which is better than unsupported :-) BUT
2. currently only implemented into the Windows version!

Am 02.10.2010 um 17:36 schrieb Mark Schonewille:
 Josep,
 
 Apparently, you don't know that you can do this with RR 4.5 now. No need for 
 NSStatusItems.
 
 --
 Best regards,
 Mark Schonewille
 
 On 2 okt 2010, at 17:22, JosepM wrote:
 Hi Mark,
 
 And how I put the standalone into de status bar as status item? As
 NSStatusItem?
 Maybe I don't explain myself or I don't understand you..., I refer to put
 the item to the status bar as Airport icon, Monitor icon, the time, the
 spotlight, and clicking from this show options and one of them was launch
 the standalone...
 
 Salut,
 Josep

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread Richard Gaskin

From the v4.5 release notes:



Status icon support (experimental)

Windows, Linux and Mac OS X all have an area where so-called 'status 
icons' can be displayed. On Windows this is the system tray on the 
bottom right of the start bar, on Linux this is typically the right of 
the panel at the top of the screen, and on Mac OS X this is on the menubar.


The engine has support for adding a single status icon, and it can be 
configured using the statusIcon, the statusIconTooltip and the 
statusIconMenu:


set the statusIcon to imageId set the statusIconMenu to iconMenuSpec set 
the statusIconToolTip to toolTip


Here imageId is the id of the image you wish to use as the icon. It will 
be scaled down automatically to the appropriate size for the platform 
and then set. The toolTip specifies what message appears when the user 
hovers over the status icon.


The iconMenuSpec allows you to configure a menu that will appear when 
the user does a 'menu' click on the icon. This string uses a subset of 
the standard engine menu specification:
[ tab * ] [ '(' ] label [ '|' tag ] Here the number of tabs 
determines the depth of the menu (i.e. use this to create sub-menus).


The optional tag is used when calling the statusIconMenuPick message.
Before the engine displays the status icon menu, it will send a 
statusIconMenuOpening menu to the current card of the defaultStack. You 
can use this opportunity to change the icon menu before it is displayed, 
this is an analog to handling mouseDown in a menu button.
When the user selects an item from the dock menu, the engine will send 
an statusIconMenuPick message to the current card of the default stack:
iconMenuPick which Here which will be a list of labels or tags (if 
specified) separated by '|' which determines which item
was selected. In addition, the engine will send the following message in 
response to clicks on the icon:


statusIconMenuClick button
statusIconMenuDoubleClick button

You can use these to perform an appropriate action.

Note: If you wish to display a menu from the status icon you must use 
the statusIconMenu property, attempting to open a normal popup menu in 
response to one of the click messages is not guaranteed to work.
Note: This syntax is only implemented on Windows at the moment and 
replaces the previously unsupported use of the icon and the iconMenu for 
this purpose. The properties specified above will have no effect on Mac 
OS X and Linux at this time.


Important: This feature is currently experimental. This means that it 
may not be complete, or may fail in some circumstances that you would 
expect it to work. Please do not be afraid to try it out as we need 
feedback to develop it further.




--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode Datagrid Questions (zryip theSlug)

2010-10-02 Thread Peter Haworth
I understand.  I wasn't placing any blame on DGH.  I always de-install  
any third party products when trying to troubleshoot weird issues like  
this and the problems still exist when DGH is not installed so no  
blame on DGH.


Pete Haworth

On Oct 2, 2010, at 7:09 AM, use-revolution-requ...@lists.runrev.com  
wrote:



Peter,

To clarify things about DGH (Data Grid Helper):

1) About interaction with the IDE.
- DGH traps double click and click ONLY on datagrid groups.
- it interacts with the LiveCode's inspector ONLY for the objects in
its template area.

2) About scripts
- DGH build scripts to fill column behaviors but it is not able to
change how the datagrid library performs.

3) About templates
- DGH uses its own way to edit the templates of a datagrid in a
special area and never directly in the datagrid template it edits.
- DGH not uses the IDE to edit templates.


So DGH is not capable to generate the issues you describe:
- group capability disable in the IDE  (menu and toolbar)
- handlers not working in a behavior script


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Datagrid option menu initialisation

2010-10-02 Thread Peter Haworth
I have defined an option menu in a datagrid column whose contents are  
created by reading data from an SQLite database - the contents will be  
the same for each instance of the option menu and should be loaded  
when the card containing the datagrid is opened.  Where should I put  
the code to create the option menu contents?


Pete Haworth







___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Changing Tab Stops in an Option Button

2010-10-02 Thread Len Morgan
 Is there a way to change the size of tab stops on an option (or 
combobox) button's list?  I have an Option button that I use to select 
different cards.  There used to be only one level of items but the 
customer has asked to one card to have a second set of levels for one 
item.  For example:


Search
Profile
Bookings
Arrests
Charges
Release
Photos
Maintenance

The problem I have is that the tab stop for the second nesting is too 
far over to the right and I'd like to move it back a little.  Is this 
possible?


Also, can the lines in an option (or combobox) list be colored 
differently for each item or will I have to hand craft something like that?


Thanks!

len morgan
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT][FYI] Graphic Converter 7 has been released.

2010-10-02 Thread Richmond

 On 10/01/2010 10:52 PM, Pierre Sahores wrote:

Full confirmed ! GC7 is just incredibly easy to use and powerful.

Le 1 oct. 2010 à 21:47, stephen barncard a écrit :


I know a lot of people on this list probably use Graphic Converter as a
less-expensive Photoshop and Thorsten Lemke has released his latest
version, and it ROCKS.  He's offereing an incredibly reasonable upgrade
offer, and after 5 minutes with this version, I upgraded from the last
version for about $25 US. WOW is all I can say. Great features not available
anywhere else, not even PS. This is a complete rewrite.


http://www.lemkesoft.com



I tend to use GIMP cross-platform; at a price that makes Graphic Coverter
look over-priced.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: loading another stack from splash

2010-10-02 Thread Mark Smith

Wow, very very cool. Thanks you for taking
the time to pass this along. Being able to keep the stacks inside the OSX 
application bundle will/would be fabulous. 

-- Mark

(PS Its going in my RunRev er Livecode Gold folder!)

From: Sivakatirswami [via Runtime Revolution] 
[ml-node+2768466-1431577482-120...@n4.nabble.com]
Sent: Thursday, September 30, 2010 5:23 PM
To: Mark Smith
Subject: Re: loading another stack from splash

  On 9/28/10 5:11 PM, Mark Smith wrote:
 Also, it would be real nice not to have to hard code the path in case I
 want to change its location. Having to manage two stacks instead of one does
 seems like an added burden.

 Stumped. Any help appreciated

 -- Mark
We meaning many of us here... do this all the time.
I love keeping stacks inside the OSX application bundle,
  you can develop them from inside there and ship as as single binary..

There are two common approaches These scripts may help

on loadFromDisk
 -- Setting the default folder.
 set itemdel to /
 set the defaultfolder to item 1 to -2 of the effective filename of
this stack

 -- Check for application
 if there is not a file MyNoteBook.rev then
 if checkNet() then
 checkNetworkAndDownload #If you don't have it locally then
get it from the web server
 exit loadFromDisk
 else
 answer error Please connect to the internet to install
this application
 exit loadFromDisk
 end if
 end if

 go stack url binfile:MyNoteBook.rev
 hide  stack MySplashEngine.rev
end loadFromDisk

-

on preopenstack
   go stack url (getPath(MyNoteBook.rev)
end preopenstack

function getPath tStack
 set the itemdel to /
 put the effective filename of this stack into tPath
 put tStack into item -1 of tPath
 return tPath
end getPath

By separating the function you have the interesting option of offering
the user the option to open any number stacks you might bundle into the
same folder:

On the splash screen you can have a pull down menu like this

on mousedown
set the defaultfolder to item 1 to -2 of the effective filename of
this stack
put the files into tFiles
filter tFiles with (*.livecode)
put tFiles into me
end mousedown

on menuPick pStack
 go stack url (getPath(pStack))
 hide this stack # hide the splash screen now...
end menupick

Now you can put what ever stacks you like into that folder.

Don't forget to include quit handlers in all the stacks so that you
don't leave a hung process Hidden splash screen still running.

HTH

aloha





Mark assuming that you will always put the data stacks in the same
folder as the splash-engine stack



___
use-revolution mailing list
[hidden email]/user/SendEmail.jtp?type=nodenode=2768466i=0
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution



View message @ 
http://runtime-revolution.278305.n4.nabble.com/loading-another-stack-from-splash-tp2547155p2768466.html
To unsubscribe from loading another stack from splash, click 
herehttp://runtime-revolution.278305.n4.nabble.com/template/TplServlet.jtp?tpl=unsubscribe_by_codenode=2547155code=TWFya19TbWl0aEBjcGUudW1hbml0b2JhLmNhfDI1NDcxNTV8MTc4NDM5NjU4NQ==.


-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/loading-another-stack-from-splash-tp2547155p2952707.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: WINDOWS VERSION MENU PROBLEM - architect

2010-10-02 Thread J. Landman Gay

On 10/1/10 1:42 AM, Joe Lewis Wilkins wrote:

I see that the List won't allow me to show even a very small screen
shot. So, to describe the problem in words: The menu consists of four
menus - File Edit Go Help. The menus all work, but you can't read the
File or Go menus easily. It's as if the background is set to some
very dark color. TIA, Joe


It sounds like somehow the buttons have not only acquired a dark 
background color but also have become opaque. Just set the style of each 
menu button to transparent and that should fix it.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: WINDOWS VERSION MENU PROBLEM - architect

2010-10-02 Thread Joe Lewis Wilkins
Thanks Jaqi. As later noted, I just rebuilt the menus from scratch after saving 
all the scripts as text so it wasn't all that bad. I've managed to solve all my 
other problems one way or another.

Joe Lewis Wilkins





On Oct 2, 2010, at 1:07 PM, J. Landman Gay wrote:

 On 10/1/10 1:42 AM, Joe Lewis Wilkins wrote:
 I see that the List won't allow me to show even a very small screen
 shot. So, to describe the problem in words: The menu consists of four
 menus - File Edit Go Help. The menus all work, but you can't read the
 File or Go menus easily. It's as if the background is set to some
 very dark color. TIA, Joe
 
 It sounds like somehow the buttons have not only acquired a dark background 
 color but also have become opaque. Just set the style of each menu button to 
 transparent and that should fix it.
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Gregory Lypny
Thank you for your responses.  It's an interesting thread.  So, if I've 
understood correctly, the LiveCode manual is incorrect because arrays can, in 
fact, be stored as custom props.   Not one to complain, but probably the only 
thing that saps my productivity in working with Rev or LiveCode is the poor 
documentation and built-in dictionary.  This list, however, is indispensable!


Gregory




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread J. Landman Gay

On 10/2/10 3:30 PM, Gregory Lypny wrote:

Thank you for your responses.  It's an interesting thread.  So, if
I've understood correctly, the LiveCode manual is incorrect because
arrays can, in fact, be stored as custom props.   Not one to
complain, but probably the only thing that saps my productivity in
working with Rev or LiveCode is the poor documentation and built-in
dictionary.  This list, however, is indispensable!


It would be good to report this in the QCC as a documentation error. 
They try to find everything and update it with each new release, but 
sometimes entries are accidentally overlooked. Documentation bugs almost 
always get fixed quickly because they are so easy to fix.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Joe Lewis Wilkins
While we're talking about bugs, I found that you cannot change the field 
property TAB on Return from the multi line msg box. Maybe from the single 
line too, but I didn't try that one. I had hundreds of fields for which I 
wanted that property changed. Ended up doing them one at a time. I was able to 
change some of the other properties using the msg box.

Joe Wilkins


On Oct 2, 2010, at 2:06 PM, J. Landman Gay wrote:

 On 10/2/10 3:30 PM, Gregory Lypny wrote:
 Thank you for your responses.  It's an interesting thread.  So, if
 I've understood correctly, the LiveCode manual is incorrect because
 arrays can, in fact, be stored as custom props.   Not one to
 complain, but probably the only thing that saps my productivity in
 working with Rev or LiveCode is the poor documentation and built-in
 dictionary.  This list, however, is indispensable!
 
 It would be good to report this in the QCC as a documentation error. They try 
 to find everything and update it with each new release, but sometimes entries 
 are accidentally overlooked. Documentation bugs almost always get fixed 
 quickly because they are so easy to fix.
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Richard Gaskin

Joe Lewis Wilkins wrote:

 While we're talking about bugs, I found that you cannot change
 the field property TAB on Return from the multi line msg box.

That's because there is no property called Tab in Return.

By default, the Rev Property Inspector hides the English-like names 
used in the language and instead shows what is presumably an 
Even-More-English-Like label.  The problem is that there is then no 
direct way to know the name of the property you're setting.


In this case the actual property name is autoTab.


The first thing I tell my clients to do when they begin learning Rev is:

1. Go to Preferences
2. In the section with the heading Property labels are:, click the
   option labeled Name of LiveTalk Property.

Once that's done the Inspector provides reinforcement of the tokens 
you'll have to learn for scripting anyway.


And without that, as you've found it just raises the learning curve.

--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread JosepM

Hi,

So, Menulets power!, well, now I have compiled my Xcode project that put one
awesome icon into the menubar :)

Now the question (I'm newbie) how call my standalone from the IBAction?

If anyone want the xcode project to play with sendme a email.


Salut,
Josep M
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Launch-app-from-MacOSX-system-bar-tp2952429p2952776.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Joe Lewis Wilkins
Sorry, but I  said TAB on Return, which IS a field property.

Joe Wilkins

On Oct 2, 2010, at 2:56 PM, Richard Gaskin wrote:

 Joe Lewis Wilkins wrote:
 
  While we're talking about bugs, I found that you cannot change
  the field property TAB on Return from the multi line msg box.
 
 That's because there is no property called Tab in Return.
 
 By default, the Rev Property Inspector hides the English-like names used in 
 the language and instead shows what is presumably an Even-More-English-Like 
 label.  The problem is that there is then no direct way to know the name of 
 the property you're setting.
 
 In this case the actual property name is autoTab.
 
 
 The first thing I tell my clients to do when they begin learning Rev is:
 
 1. Go to Preferences
 2. In the section with the heading Property labels are:, click the
   option labeled Name of LiveTalk Property.
 
 Once that's done the Inspector provides reinforcement of the tokens you'll 
 have to learn for scripting anyway.
 
 And without that, as you've found it just raises the learning curve.
 
 --
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread stephen barncard
there are no  property names with spaces.

sqb

On 2 October 2010 17:10, Joe Lewis Wilkins pepe...@cox.net wrote:

 Sorry, but I  said TAB on Return, which IS a field property.

 Joe Wilkins

 On Oct 2, 2010, at 2:56 PM, Richard Gaskin wrote:

  Joe Lewis Wilkins wrote:
 
   While we're talking about bugs, I found that you cannot change
   the field property TAB on Return from the multi line msg box.
 
  That's because there is no property called Tab in Return.
 
  By default, the Rev Property Inspector hides the English-like names
 used in the language and instead shows what is presumably an
 Even-More-English-Like label.  The problem is that there is then no direct
 way to know the name of the property you're setting.
 
  In this case the actual property name is autoTab.
 
 
  The first thing I tell my clients to do when they begin learning Rev is:
 
  1. Go to Preferences
  2. In the section with the heading Property labels are:, click the
option labeled Name of LiveTalk Property.
 
  Once that's done the Inspector provides reinforcement of the tokens
 you'll have to learn for scripting anyway.
 
  And without that, as you've found it just raises the learning curve.
 
  --
  Richard Gaskin
  Fourth World
  LiveCode training and consulting: http://www.fourthworld.com
  Webzine for LiveCode developers: http://www.LiveCodeJournal.com
  LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 



Stephen Barncard
San Francisco Ca. USA

more about sqb  http://www.google.com/profiles/sbarncar
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Joe Lewis Wilkins
I didn't use spaces, but it is shown with spaces in the Inspector, which is why 
I told Richard that some of the names are iffy. I did it the correct way and 
it doesn't work as I said it doesn't.

Joe Lewis Wilkins


On Oct 2, 2010, at 3:20 PM, stephen barncard wrote:

 there are no  property names with spaces.
 
 sqb
 
 On 2 October 2010 17:10, Joe Lewis Wilkins pepe...@cox.net wrote:
 
 Sorry, but I  said TAB on Return, which IS a field property.
 
 Joe Wilkins
 
 On Oct 2, 2010, at 2:56 PM, Richard Gaskin wrote:
 
 Joe Lewis Wilkins wrote:
 
 While we're talking about bugs, I found that you cannot change
 the field property TAB on Return from the multi line msg box.
 
 That's because there is no property called Tab in Return.
 
 By default, the Rev Property Inspector hides the English-like names
 used in the language and instead shows what is presumably an
 Even-More-English-Like label.  The problem is that there is then no direct
 way to know the name of the property you're setting.
 
 In this case the actual property name is autoTab.
 
 
 The first thing I tell my clients to do when they begin learning Rev is:
 
 1. Go to Preferences
 2. In the section with the heading Property labels are:, click the
  option labeled Name of LiveTalk Property.
 
 Once that's done the Inspector provides reinforcement of the tokens
 you'll have to learn for scripting anyway.
 
 And without that, as you've found it just raises the learning curve.
 
 --
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv
 
 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMobile Discussions

2010-10-02 Thread Michael D Mays
Back in March and April in the pre-Alpha release notices there was mention of 
setting up a such discussion group. The release in August did not. I was hoping 
it had been set up.

Thanks,
Michael

On Oct 2, 2010, at 10:05 AM, Dar Scott wrote:

 On Oct 2, 2010, at 7:54 AM, Michael D Mays wrote:
 Is this the or is there a place for RevMobile discussions?
 
 I cannot answer your question.
 
 I can say that I would not mind.
 
 I had assumed this is where others would focus and I might focus on other 
 things, but it looks like revMobile is in my future, even in communicating 
 with my microcontroller work.
 
 The new licensing makes updating to revMobile licenses just-in-time and low 
 cost, so anybody is just a few steps away.
 
 Dar Scott
 


On Oct 2, 2010, at 10:04 AM, Colin Holgate wrote:

 
 On Oct 2, 2010, at 9:54 AM, Michael D Mays wrote:
 
 
 Is this the or is there a place for RevMobile discussions?
 
 I would think that here would be a good place. It's not really any different 
 than if you were asking about a standalone specific issue, there isn't a 
 special forum just for that.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread David C.
 I didn't use spaces, but it is shown with spaces in the Inspector, which is 
 why I told Richard that some of the names are iffy. I did it the correct 
 way and it doesn't work as I said it doesn't.


As Richard was trying to explain above, the Tab On Return that you
are seeing is nothing more than a descriptive label that is used in
the IDE for the autoTab property. The actual property is autoTab,
which can be manipulated by script or message box like this:

set the autoTab of field Myfield to true
-or-
set the autoTab of field Myfield to false

Read Richard's message again and give his suggestion a try it will
make everything much easier!

Best regards,
David C.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread Joe Lewis Wilkins
Thanks David. Then that's what the property should be named in the Inspector 
and I wouldn't have had this problem.

I'm sure that Richard's suggestion is a good one, but just that much more for 
us to learn. KISS!

Joe Lewis Wilkins


On Oct 2, 2010, at 4:21 PM, David C. wrote:

 I didn't use spaces, but it is shown with spaces in the Inspector, which is 
 why I told Richard that some of the names are iffy. I did it the correct 
 way and it doesn't work as I said it doesn't.
 
 
 As Richard was trying to explain above, the Tab On Return that you
 are seeing is nothing more than a descriptive label that is used in
 the IDE for the autoTab property. The actual property is autoTab,
 which can be manipulated by script or message box like this:
 
 set the autoTab of field Myfield to true
 -or-
 set the autoTab of field Myfield to false
 
 Read Richard's message again and give his suggestion a try it will
 make everything much easier!
 
 Best regards,
 David C.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMobile Discussions

2010-10-02 Thread Colin Holgate

On Oct 2, 2010, at 7:16 PM, Michael D Mays wrote:

 Back in March and April in the pre-Alpha release notices there was mention of 
 setting up a such discussion group. The release in August did not. I was 
 hoping it had been set up.


I would still hope we can talk about things here, because much of it would be 
of general interest, mobile is becoming more important in general, and even 
though I'm interested in mobile, I'm not interested in yet another email list!



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Storing an Array as a Custom Property

2010-10-02 Thread J. Landman Gay

On 10/2/10 6:25 PM, Joe Lewis Wilkins wrote:

Thanks David. Then that's what the property should be named in the
Inspector and I wouldn't have had this problem.

I'm sure that Richard's suggestion is a good one, but just that much
more for us to learn. KISS!


The IDE offers two ways to view property labels in the inspector, as 
Richard was saying. One way is to provide a descriptive label, which is 
the default for all new installations. The descriptive label tries to 
tell more explicitly what the property acutally does, but is usually not 
a term you can use in a script. The other way to view the labels is by 
the actual LiveTalk property name that is used in scripts and which 
appears in the dictionary.


You can indeed make the property inspector show the actual property 
names, as you suggest. Do that by setting the very first preference in 
the General pane of the Preferences dialog to Name of LiveTalk 
property. Then the inspector will do as you suggest above, and show the 
real names of the properties. Like Richard, I also tell all new 
scripters to turn off the descriptive terms and use the actual property 
names instead.


If you want to leave the inspector as you are used to with description 
showing instead of names, there is a second way to see the actual 
property name. You must have tooltips turned on for it to work (they are 
on by default.) Just hover your mouse over the property label in the 
inspector and the actual property name will appear in a tooltip. If you 
have reversed the preferences so that the actual name is in the label, 
the tooltip will display the descriptive term instead. In other words, 
tooltips will show whichever label you have not set as the default in 
preferences.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Launch app from MacOSX system bar

2010-10-02 Thread Warren Samples
use-revolution-requ...@lists.runrev.com wrote on Sat, 2 Oct 2010
09:09:47 -0500:

Date: Sat, 2 Oct 2010 06:40:06 -0700 (PDT)
From: JosepM jmye...@mac.com
Subject: Launch app from MacOSX system bar
To: use-revolution@lists.runrev.com
Message-ID: 1286026806787-2952429.p...@n4.nabble.com
Content-Type: text/plain; charset=us-ascii


Hi,

It's posible to launch one app from the system bar like, for example
DropBox, Evernote...

Any experience? I remember read something in some post but I don't found...

Salut,
Josep M

I see Josep has crafted a solution, but an easy way to make a simple app-
launcher for the OS X menubar is an application called Tapir. http://
www.sveinbjorn.org/tapir Feed it the shell command open -a + the path
to your app.

Cheers,

Warren

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: WINDOWS VERSION MENU PROBLEM - architect

2010-10-02 Thread Mark Smith
Hi Joe, is that a feature of LC (saving all scripts as text), or do you have to 
select and save them out 1 at a time?

From: use-revolution-boun...@lists.runrev.com 
[use-revolution-boun...@lists.runrev.com] On Behalf Of Joe Lewis Wilkins 
[pepe...@cox.net]
Sent: Saturday, October 02, 2010 3:12 PM
To: How to use Revolution
Subject: Re: WINDOWS VERSION MENU PROBLEM - architect

Thanks Jaqi. As later noted, I just rebuilt the menus from scratch after saving 
all the scripts as text so it wasn't all that bad. I've managed to solve all my 
other problems one way or another.

Joe Lewis Wilkins





On Oct 2, 2010, at 1:07 PM, J. Landman Gay wrote:

 On 10/1/10 1:42 AM, Joe Lewis Wilkins wrote:
 I see that the List won't allow me to show even a very small screen
 shot. So, to describe the problem in words: The menu consists of four
 menus - File Edit Go Help. The menus all work, but you can't read the
 File or Go menus easily. It's as if the background is set to some
 very dark color. TIA, Joe

 It sounds like somehow the buttons have not only acquired a dark background 
 color but also have become opaque. Just set the style of each menu button to 
 transparent and that should fix it.

 --
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: WINDOWS VERSION MENU PROBLEM - architect

2010-10-02 Thread Joe Lewis Wilkins
Hi Mark,

I don't think it is a feature. I had to do it one at a time, but no big deal. 
Saved a lot of time in rebuilding them. It would probably be a good idea to 
save them routinely as I've lost them a number of times in the past when I was 
experimenting. The more I think about it, there MUST be something built into 
rev to do that. 

Joe Lewis Wilkins


On Oct 2, 2010, at 10:06 PM, Mark Smith wrote:

 Hi Joe, is that a feature of LC (saving all scripts as text), or do you have 
 to select and save them out 1 at a time?
 
 From: use-revolution-boun...@lists.runrev.com 
 [use-revolution-boun...@lists.runrev.com] On Behalf Of Joe Lewis Wilkins 
 [pepe...@cox.net]
 Sent: Saturday, October 02, 2010 3:12 PM
 To: How to use Revolution
 Subject: Re: WINDOWS VERSION MENU PROBLEM - architect
 
 Thanks Jaqi. As later noted, I just rebuilt the menus from scratch after 
 saving all the scripts as text so it wasn't all that bad. I've managed to 
 solve all my other problems one way or another.
 
 Joe Lewis Wilkins
 
 
 
 
 
 On Oct 2, 2010, at 1:07 PM, J. Landman Gay wrote:
 
 On 10/1/10 1:42 AM, Joe Lewis Wilkins wrote:
 I see that the List won't allow me to show even a very small screen
 shot. So, to describe the problem in words: The menu consists of four
 menus - File Edit Go Help. The menus all work, but you can't read the
 File or Go menus easily. It's as if the background is set to some
 very dark color. TIA, Joe
 
 It sounds like somehow the buttons have not only acquired a dark background 
 color but also have become opaque. Just set the style of each menu button to 
 transparent and that should fix it.
 
 --
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution