Re: URLencode bug?

2011-03-18 Thread Chipp Walters
For my app, the cr's screw it up. Thanks anyway.

On Thu, Mar 17, 2011 at 11:50 PM, stephen barncard 
stephenrevoluti...@barncard.com wrote:

 I think URL Encode seems to ignore linefeeds and/or returns in its midst,
 so
 an occasional line break or cr  should break up the line limit problems.

 On 17 March 2011 21:44, Mike Bonner bonnm...@gmail.com wrote:

  I ran into this earlier and tried to ask about it, but wasn't very clear.
   When you urlEncode the field it turns it into one huge unbroken line,
 and
  certain lengths of unbroken lines cause fields some problems it seems.
 The
  line length you get from the urlEncode is within the accepted limits
  according to docs, but something seems broken in fields. To see this in
  action, try this stack.. Click add data several times till the line
 length
  gets to 14700 and poof.  Only the overflow shows.  I didn't bother to
 find
  the exact breakover point, but there it is. Also, behavior varies with
 line
  wrap on and off. With line wrap off, things poof when you get to to 8400
  line length, but the overflow never shows.  So my feeling is its a field
  problem, not an encode problem.
 
  go URL http://guidezone.info/FieldBug.livecode;
 
 
 
  On Thu, Mar 17, 2011 at 9:50 PM, Chipp Walters ch...@chipp.com wrote:
 
   I am trying to URLencode some data and for some reason it won't encode.
  
   Can anyone else get this to encode? It's a simple text field with no
  funny
   chars.
  
   Here's a test: (put in msg box and hit return)
   go URL http://www.widgetgadget.com/stuff/URLencodeBug.livecode;
  
   For some reason it CAN URLencode the first 3111 chars, but barfs on any
   past
   there. Is there a char limit to what URLencode works on?
  
   TIA,
   C
  
   --
   Chipp Walters
   CEO, Shafer Walters Group, Inc.
   ___
   use-livecode mailing list
   use-livecode@lists.runrev.com
   Please visit this url to subscribe, unsubscribe and manage your
   subscription preferences:
   http://lists.runrev.com/mailman/listinfo/use-livecode
  
  ___
  use-livecode mailing list
  use-livecode@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-livecode
 



 --



 Stephen Barncard
 San Francisco Ca. USA

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




-- 
Chipp Walters
CEO, Shafer Walters Group, Inc.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Writing Externals in Pascal?

2011-03-18 Thread Scott McDonald
Mike,

Pleased to hear that it compiled for you. (Hope the modification wasn't one
necessary to get it to compile?) One of my goals, is to make sure it
compiles and works for anyone straight out of the box. (Assuming FPC is
installed and works.)

Learning Pascal isn't too hard. As a relatively old and unfashionable
language means it is often easy to pick up good texts for not much money
from second-hand book sellers.

Mark,

Look forward to any feedback, when you get the time.

-
--
Scott McDonald
Components, Controls, Tools and Resources for LiveCode
www.runrevplanet.com
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Writing-Externals-in-Pascal-tp2278157p3386394.html
Sent from the Revolution - User mailing list archive at Nabble.com.

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


Re: URLencode bug?

2011-03-18 Thread stephen barncard
Ah, but you can use them for storage Great way to preserve small blocks of
data.
FUNCTION libFile_HXEncode pData
 put base64encode(pData) into tData
 replace return with linefeed in tData
 return tData
END libFile_HXEncode

FUNCTION libFile_HXDecode pData
 replace linefeed with return with tData
 put base64decode(pData) into tData
 return tData
END libFile_HXDecode

 Base64Encode after using URLEncode can be an almost bulletproof way to
store data in situ.
one can create medium sized, neat readable blocks of data in your script
that look like formatted object code blocks.
The data could be exact htmlText that you want with placeholders encoded in.
 Or perfect MySQL calls with the 'right'  punctuation.

 /*

 BASE64Encoded:

 SELECT

 dm.Device_Number,

 dm.id

 FROM ( DEVICES_Main_R AS dm

 INNER JOIN Devices_Types AS devABBRV ON dm.Device_Abbrev=devABBRV.id )

 WHERE devABBRV.Device_Abbrev LIKE 'deviceAbbrev' ;

*/


get \


 U0VMRUNUCiAgZG0uRGV2aWNlX051bWJlciwKICBkbS5pZAogIEZST00gKCAgREVWSUNFU19N
\


 YWluX1IgQVMgZG0KICAgICAgSU5ORVIgSk9JTiAgRGV2aWNlc19UeXBlcyBBUyBkZXZBQkJS
\


 ViBPTiBkbS5EZXZpY2VfQWJicmV2PWRldkFCQlJWLmlkICkKV0hFUkUgZGV2QUJCUlYuRGV2
\

  aWNlX0FiYnJldiBMSUtFICc8ZGV2aWNlQWJicmV2PicgOw==

put base64decode(it) into tSQL



Nicer for some things over custom properties because you can keep all the
data and code in the same place.   Not easy to hand code this but easy to
make a code builder in rev. I will include some comment english text
explaining what it is.

On 17 March 2011 23:19, Chipp Walters ch...@chipp.com wrote:

 For my app, the cr's screw it up. Thanks anyway.


Stephen Barncard
San Francisco Ca. USA

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


Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Keith Clarke
Hi folks,
Given LiveCode's multimedia power, I want to move from presenting purely 
conceptual ideas in PowerPoint/Keynote to using LiveCode as - a container for 
concepts together with real moving parts from my evolving application as 
development progresses.

I'm thinking more along the lines of some of the RunRev Live 09 session than a 
full-blown, full self-running 'kiosk' experience. 

Are there any tutorials, example stacks or resources to help get started in the 
right way - or is this an area where everyone tends to create their own 
personal tool-belt from scratch?
Best,
Keith..   
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Live LiveCode Event #15

2011-03-18 Thread Mark Schonewille
Dear folks,

I'm happy to announce another Live LiveCode Code Event with two interesting 
presentations tomorrow. This weekend's event is scheduled for Saturday, 19 
March 2011 at 19:00h GMT (Sat. 22:00 in Moscow, Sat. 20:00 in Paris, Sat. 14:00 
in New York, Sat. 11:00 in Los Angeles, Sun. 04:00 in Tokyo, Sun. 3:00 in 
Beijing). It will be the 14th edition of the Live LiveCode Event.

Jim will demonstrate some methods of rapidly converting images to create many 
kinds of moods and styles, how to view and learn from the many scripts in 
Seamless Tiles for image handling techniques and how to create and document a 
library of unique images that can make your stacks and web sites beautiful.

Tom will be demonstrating his iOS UINavigationBar in both LiveCode and the 
simulator. He will also demonstrate a couple of ways to handle device 
resolution, orientation and how to do a one-app many-device deployment.

eHUG will be raffling off the e-book Take Control of Working with Your iPad 
courtesy of TidBITS, http://www.tidbits.com/ .

During the event, Economy-x-Talk offers a 25% discount on their Installer 
Maker, which can be found at http://installermaker.economy-x-talk.com . A 
license at 25% discount can be obtained at http://livetalk.us/im .

Make sure to use ChatRev during the happening, otherwise you won't know where 
to watch the streams, which will be announced in ChatRev. Download ChatRev here:
http://bjoernke.com?target=chatrev
or enter in the message box:
go stack URL http://bjoernke.com/chatrev/chatrev1.3b3.rev;

See also the following page for the same information (soon):
Http://livecode.tv

Kind regards,

Mark

--
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 http://qery.us/ce


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


R: LC-using Educators

2011-03-18 Thread bacches...@tin.it


Messaggio originale
Da: jper...@ecs.fullerton.edu
Data: 17-
mar-2011 0.54
A: use-livecode@lists.runrev.com
Ogg: LC-using 
Educators

I'm in a bit of a pickle... can LC-using educators please 
contact me 
off-list?

TIA,

Judy


___
use-livecode mailing 
list
use-livecode@lists.runrev.com
Please visit this url to subscribe, 
unsubscribe and manage your subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode
Hi Judy
may i 
help You ?
mario
 

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


Re: mySQL and defaults

2011-03-18 Thread Bob Sneidar
Right sorry I discovered this last night too. I think the problem was the 
Sequel Quotes. For some reason I was replacing not only double quotes with ` 
but single ones too. Trouble is, you cannot wrap default values in `. Also, the 
reference manual says that text types did not support DEFAULT. I assumed (much 
to my chagrin) that varchar was a text type. 

I found that a quick way to tell if my sequel is good is to step through the 
code until I have my statement, then copy the sequel fom the variable browser 
into the query editor in MySQLWorkbench. It will put a red X at the first line 
that has bad syntax. Very handy for troubleshooting Sequel, especially since 
when I build my Sequel, I try to isolate each statement on it's own line. 

Bob


On Mar 17, 2011, at 6:57 PM, Warren Samples wrote:

 On Thursday, March 17, 2011 02:00:41 PM Bob Sneidar wrote:
 Oh thanks Warren! That will work famously! Unfortunately I just finished
 the code that strips all the DEFAULT parameters from all text column
 definitions LOL! I guess it's back to work undoing my last undo. Still,
 nice to know it can be done.
 
 Bob
 
 
 Hi Bob,
 
 I just tried this myself and find that the NOT NULL doesn't seem to have been 
 the key since this works, too:
 
 mysql  CREATE TABLE myTable(ID SMALLINT UNSIGNED NOT NULL,City VARCHAR(40) 
 DEFAULT 'Unknown');
 
 Query OK, 0 rows affected (0.04 sec)
 
 So, perhaps there was some other error in your query? Punctuation and 
 spelling 
 are the usual suspects ;)
 
 Best,
 
 Warren
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread J. Landman Gay

On 3/18/11 7:38 AM, Keith Clarke wrote:

Hi folks, Given LiveCode's multimedia power, I want to move from
presenting purely conceptual ideas in PowerPoint/Keynote to using
LiveCode as - a container for concepts together with real moving
parts from my evolving application as development progresses.

I'm thinking more along the lines of some of the RunRev Live 09
session than a full-blown, full self-running 'kiosk' experience.

Are there any tutorials, example stacks or resources to help get
started in the right way - or is this an area where everyone tends to
create their own personal tool-belt from scratch?



It's so dead-simple that I don't think it needs a tutorial. You just 
create one card per slide and then add a go next button or a handler 
to catch a keystroke that goes to the next card. That's about it.


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

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


Re: URLencode bug?

2011-03-18 Thread Bob Sneidar
Hi Chipp. Any chance that stack still works? That is a great idea. 

Bob


On Mar 18, 2011, at 1:20 AM, Chipp Walters wrote:

 Yep, years ago I wrote a stack sharing library for Rev which passed back and 
 forth via a server any changes made to stacks, thus allowing multiple people 
 in remote locations to work on the same stack at the same time, and used the 
 base64encode trick you mention to encode all meta data for all controls and 
 their properties. Worked well.
 
 Chipp Walters
 CEO, Shafer Walters Group, Inc


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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Björnke von Gierke
It's even easier then that:

set the navigationArrows to true

Note that the documentation says it's true by default. that is wrong for the 
ide where they're disabled by default (but it is true in standalones).

On 18 Mar 2011, at 17:05, J. Landman Gay wrote:

 On 3/18/11 7:38 AM, Keith Clarke wrote:
 Hi folks, Given LiveCode's multimedia power, I want to move from
 presenting purely conceptual ideas in PowerPoint/Keynote to using
 LiveCode as - a container for concepts together with real moving
 parts from my evolving application as development progresses.
 
 I'm thinking more along the lines of some of the RunRev Live 09
 session than a full-blown, full self-running 'kiosk' experience.
 
 Are there any tutorials, example stacks or resources to help get
 started in the right way - or is this an area where everyone tends to
 create their own personal tool-belt from scratch?
 
 
 It's so dead-simple that I don't think it needs a tutorial. You just create 
 one card per slide and then add a go next button or a handler to catch a 
 keystroke that goes to the next card. That's about it.
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


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


Live LiveCode Event #15 - corrected times!

2011-03-18 Thread Mark Schonewille
Dear folks,

I'm happy to announce another Live LiveCode Code Event with two interesting 
presentations tomorrow. This weekend's event is scheduled for Saturday, 19 
March 2011 at 19:00h GMT (Sat. 22:00 in Moscow, Sat. 20:00 in Paris, Sat. 15:00 
in New York, Sat. 12:00 in Los Angeles, Sun. 04:00 in Tokyo, Sun. 3:00 in 
Beijing). It will be the 14th edition of the Live LiveCode Event.

Jim will demonstrate some methods of rapidly converting images to create many 
kinds of moods and styles, how to view and learn from the many scripts in 
Seamless Tiles for image handling techniques and how to create and document a 
library of unique images that can make your stacks and web sites beautiful.

Tom will be demonstrating his iOS UINavigationBar in both LiveCode and the 
simulator. He will also demonstrate a couple of ways to handle device 
resolution, orientation and how to do a one-app many-device deployment.

eHUG will be raffling off the e-book Take Control of Working with Your iPad 
courtesy of TidBITS, http://www.tidbits.com/ .

During the event, Economy-x-Talk offers a 25% discount on their Installer 
Maker, which can be found at http://installermaker.economy-x-talk.com . A 
license at 25% discount can be obtained at http://livetalk.us/im .

Make sure to use ChatRev during the happening, otherwise you won't know where 
to watch the streams, which will be announced in ChatRev. Download ChatRev here:
http://bjoernke.com?target=chatrev
or enter in the message box:
go stack URL http://bjoernke.com/chatrev/chatrev1.3b3.rev;

See also the following page for the same information (soon):
Http://livecode.tv

Kind regards,

Mark

--
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 http://qery.us/ce


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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Keith Clarke
OK, thanks. I suspected the approach would be DIY (do it yourself) - I don't 
need to waste any time looking for pre-cooked answers and can just dive in ;-)
Bjoernke - thanks for the arrow key navigation tip.

On 18 Mar 2011, at 16:21, Björnke von Gierke wrote:

 It's even easier then that:
 
 set the navigationArrows to true
 
 Note that the documentation says it's true by default. that is wrong for the 
 ide where they're disabled by default (but it is true in standalones).
 
 On 18 Mar 2011, at 17:05, J. Landman Gay wrote:
 
 On 3/18/11 7:38 AM, Keith Clarke wrote:
 Hi folks, Given LiveCode's multimedia power, I want to move from
 presenting purely conceptual ideas in PowerPoint/Keynote to using
 LiveCode as - a container for concepts together with real moving
 parts from my evolving application as development progresses.
 
 I'm thinking more along the lines of some of the RunRev Live 09
 session than a full-blown, full self-running 'kiosk' experience.
 
 Are there any tutorials, example stacks or resources to help get
 started in the right way - or is this an area where everyone tends to
 create their own personal tool-belt from scratch?
 
 
 It's so dead-simple that I don't think it needs a tutorial. You just create 
 one card per slide and then add a go next button or a handler to catch a 
 keystroke that goes to the next card. That's about it.
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread J. Landman Gay

On 3/18/11 2:06 PM, stephen barncard wrote:

Kevin Miller, the ceo, was spotted at a Revcon a couple of years ago using
his own home-made presentation stack.


Yup. And in fact, almost all the conference presentations have been 
home-made stacks, and for more recent conferences RR has been sending 
out template stacks so everyone's presentations will be more consistent.


It's still just basically go next or arrow keys though. And I suspect 
if any presenter showed up with a Powerpoint presentation at a RevLive 
conference, they'd be ridiculed. :)


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

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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Richard Gaskin

J. Landman Gay wrote:


On 3/18/11 2:06 PM, stephen barncard wrote:

Kevin Miller, the ceo, was spotted at a Revcon a couple of years ago using
his own home-made presentation stack.


Yup. And in fact, almost all the conference presentations have been
home-made stacks, and for more recent conferences RR has been sending
out template stacks so everyone's presentations will be more consistent.


Same here.  When I presented at SCaLE last month, the MacTech conference 
in November, an archaeology symposium the year before, and every Rev 
conference I've attended, I always made my slide shows in Rev.


I find most presentation tools too cumbersome to work with, but with Rev 
I not only get them exactly how I want them but I can also automate some 
of their construction from my outlines in ways that would be way too 
complicated to attempt in PowerPoint of OpenOffice.


At SCaLE someone asked me what I made my presentation in, and I told him 
I was able to make the presentation and the authoring system to build it 
all within three hours using a tool called LiveCode. :)


--
 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-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Ben Rubinstein
I moderate occasional 'Pecha Kucha'-style sessions at our company, where a 
number of people present using a strict format of 20 slides, 20 seconds/slide. 
 Theoretically you can set this up using PowerPoint or Keynote, but in 
practise amalgamating everyone's deck is a pain, and they always send them 
only just before the start.  So I use a similar set up to Chris, with a 
controller stack on my laptop, and a display stack on the second 
display/project.  It's set up to simply work from folders of images, and takes 
care of timing, centering people's odd-sized images, etc.


As I naturally hacked it up half-an-hour before the first session, the first 
presenters suffered a few glitches and some in the second session... but 
it works pretty well now, and they've mostly forgiven me.


Ben

On 18/03/2011 19:19, Nonsanity wrote:

I've not done a business-style presentation from LiveCode before, but I've
been running the jumbotron display at a convention that holds a
tongue-in-cheek game show each year. I connect the AV gear to my laptop as a
second monitor, and use two stacks to run the show. One is the visible one
that lives on the second screen, and the other stays on my laptop and lets
me control the scores and game elements in real time.

It's worked great for many years now. I even completely re-wrote it in a
single evening for last year's show. Just to remind everyone how fast it is
to develop in LiveCode... :)

  ~ Chris Innanen
  ~ Nonsanity


On Fri, Mar 18, 2011 at 2:17 PM, Keith Clarke
keith.cla...@clarkeandclarke.co.uk  wrote:


OK, thanks. I suspected the approach would be DIY (do it yourself) - I
don't need to waste any time looking for pre-cooked answers and can just
dive in ;-)
Bjoernke - thanks for the arrow key navigation tip.


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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Richmond

On 03/18/2011 10:11 PM, Ben Rubinstein wrote:

I moderate occasional 'Pecha Kucha'-style


Umm; what are 'Pecha Kucha' sesions ?

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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Nonsanity
Google Says: http://www.pecha-kucha.org/

 ~ Chris Innanen
 ~ Nonsanity


On Fri, Mar 18, 2011 at 4:20 PM, Richmond richmondmathew...@gmail.comwrote:

 On 03/18/2011 10:11 PM, Ben Rubinstein wrote:

 I moderate occasional 'Pecha Kucha'-style


 Umm; what are 'Pecha Kucha' sesions ?

 sincerely, Richmond.

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

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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Judy Perry
This is the way I have always done it back when I taught an intro class 
(which was more than 5 years ago methinks).


Having said that, however, I'm still chewing on my pickle.

Judy

On Fri, 18 Mar 2011, stephen barncard wrote:


Kevin Miller, the ceo, was spotted at a Revcon a couple of years ago using
his own home-made presentation stack.

Perfect for Livecode presentations about Livecode, as the engine is always
there to demonstrate within.


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


Re: Presenting with LiveCode instead of PowerPoint/Keynote

2011-03-18 Thread Judy Perry
When I did my presentation a few years ago at either SITE or AACE, I did 
it in either Keynote or the OpenOffice PPT version because, well, this was 
a bunch of educators and that's pretty much all they're taught.


I actually had one or two people ask me why I didn't do it in Rev ;-) 
Needless to say, I nearly fell over.


Judy

On Fri, 18 Mar 2011, Richard Gaskin wrote:

Same here.  When I presented at SCaLE last month, the MacTech conference in 
November, an archaeology symposium the year before, and every Rev conference 
I've attended, I always made my slide shows in Rev.


I find most presentation tools too cumbersome to work with, but with Rev I 
not only get them exactly how I want them but I can also automate some of 
their construction from my outlines in ways that would be way too complicated 
to attempt in PowerPoint of OpenOffice.


At SCaLE someone asked me what I made my presentation in, and I told him I 
was able to make the presentation and the authoring system to build it all 
within three hours using a tool called LiveCode. :)


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


Re: OT: George Beekman Amazon Romance Suggestions

2011-03-18 Thread Mark Wieder
Judy-

Friday, March 18, 2011, 2:46:51 PM, you wrote:

 Some of you might remember that George Beekmann wrote the book titled
 Hypercard in a Hurry and a few related books.

 Today I just received the following suggestion from Amazon.com:

 Customers who have purchased or rated books by George Beekman might
 like to know that The End of Faking It. Natalie Anderson (Mills 
 Boon Hardback Romance) will be released on April 1, 2011.  You can
 pre-order yours by following the link below.

I hate faking Hypercard, don't you? Even when I'm in a hurry...

-- 
-Mark Wieder
 mwie...@ahsoftware.net


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


Re: OT: George Beekman Amazon Romance Suggestions

2011-03-18 Thread Judy Perry

Mark,

On Fri, 18 Mar 2011, Mark Wieder wrote:


I hate faking Hypercard, don't you? Even when I'm in a hurry...


--Hahaha!  Especially when it's hardcore, er, hardcover :-p

Judy

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


RE: [TEASER] LiveCode 3 Facebook

2011-03-18 Thread Walt Brown
Unless the computer made you the upgradee...

-Original Message-
From: use-livecode-boun...@lists.runrev.com
[mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Thomas McGrath
III
Sent: Thursday, March 17, 2011 4:18 PM
To: How to use LiveCode
Subject: Re: [TEASER] LiveCode 3 Facebook

Well, that's no excuse!!! What are we coming to when we can't bring our
computers on our honeymoons???

That's it. I'm not getting married again. Once this one is done I'm not
upgrading.


-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net

On Mar 17, 2011, at 1:54 PM, Andre Garzia wrote:
 
 
 Tom,
 
 Haven't touched the library because I was on my honeymoon and my wife 
 made me promise not take a computer there. Now that I am back, I plan 
 to develop it further and release soon. Mark has a commercial 
 offering, might solve your needs faster since I still need to iron out
some bugs.
 
 Andre
 


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


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