Re: RevCloud (was Re: Line Numbers in Text Editor)

2010-06-30 Thread stephen barncard
Excellent, Richard, and worth waiting for. Thanks

sqb

On 29 June 2010 16:31, Richard Gaskin ambassa...@fourthworld.com wrote:

 And besides, there there's nothing to sell: RevCloud will be free.

 So here's the skinny:

 Over the last decade most of my projects have had between three and five
 developers working on them, and the more I learn about this community the
 more I realize these are pretty typical team sizes for the sorts of projects
 for which Rev is a good fit.

 --
-
Stephen Barncard
San Francisco
___
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


[ANN] ssImageThingy

2010-06-30 Thread Shao Sean
Give your Rev-based applications an iPhoto-like live resizing image  
thumbnail viewer..  This is being released free (Public Domain) and  
unlocked so if you feel like having features added you can (or send  
them back to share them with everyone else)..



What  : live resizing image thumbnail viewer
Where : http://shaosean.tk/
When  : now :-)
Who   : thanks to Simon Lord for the fun; mad props to Malte Pfaff- 
Brill for assistance



Set the margins on the group to control the internal padding of the  
main group..
Set the text font/size/etc on the main group to change the label  
appearance..


Speed is okay on my G4 and smooth on Intel-based Macs, but live  
resizing lots of images can slow it right down..


This is implemented as a behavior..
___
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: Mac Standalone Bug

2010-06-30 Thread Justin Sloan
True, in 4.0 I disabled destroyStack but it still happens.  The work
around was to write a resizing routine on preOpenStack for all objects
to get the to fit correctly within the stack.  This slows down the
spped at which the stack opens on initial launch but is otherwise
unnoticed.

 - Justin
___
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: Pointlist from move command?

2010-06-30 Thread Michael Kristensen

Hi and thanks for replies


I dunno: if you have an object moving round a polygon (or along a
pathway for that matter),
surely all you have to do is poll the object's position every 2 ticks
and pop the results into the lines
of a field?


I did try that but it seams that the move command is not threaded and  
can not handle other commands while executing.





Hi Mic,
if you mean that instead of the corner points of a polygon you want  
all the
intermediate points also then this came up on the forum a while ago  
and I

uploaded a little stack to the forum that does this.
See:
http://forums.runrev.com/phpBB2/viewtopic.php?f=9t=5191p=23366hilit=points+of+polygon#p23366
look for the attachement
calculate points of polygon.rev.zip

(I did not have any real use for all the points but once I had a  
graphic I
pulled out some points and animated them when one moves the  
graphic, since

it looked like a bug that is what I called it :) )
as revlet:
http://berndniggemann.on-rev.com/bug/



Thanks Bernd

That was just what I needed.

Yet there is a but...

I put this script in the left polygon and I made it none-opaque:

on mouseUp
   beep
   put the mouseLoc into x

   repeat with i = 1 to number of lines of fld fAllPoints
  if x = line i of fld fAllPoints then
 put x
 exit repeat
  else
 put M   the mouseLoc
  end if
   end repeat

end mouseUp


The beep gives me audio feedback that I clicked the graphic

In the majority of times the Loc came out with an M in front of it  
meaning that the mouseLoc was not on the pointList


So what Rev considers ON the graphic is different from your pointlist.

Tried to replace TRUNC with ROUND in your script, with same result

Mic


___
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 question

2010-06-30 Thread tkuyp...@telenet.be
Hi Jan,

Thanks, works like a charm!
Never thought about the dragImage :-(


Met vriendelijke groeten,

Ton Kuypers



On 30-jun-2010, at 06:54, Jan Schenkel wrote:

 I think the button you're dragging along will get in the way of the drop. 
 It's better to update the dragImage rather than try and move a 'shadow' 
 button around the card; besides, it won't show once your drag goes outside 
 the window.
 
 Add an image, set its name to DragImage and hide it. Then use the following 
 code:
 ##
 on dragStart
   set the itemdel to tab
   set the label of btn DragData to \
  item 2 of the hilitedText of me
   export snapshot from btn DragData \
  to image DragImage as PNG
   set the dragImage to the short id of image DragImage
   set the dragData[text] to the hilitedText of me
   pass dragStart
 end dragStart
 ##
 
 You can always play around with the dragImageOffset to better align the 
 dragImage with the cursor.
 
 HTH,
 
 Jan Schenkel.
 =
 Quartam Reports  PDF Library for Revolution
 http://www.quartam.com
 
 =
 As we grow older, we grow both wiser and more foolish at the same time.  
 (La Rochefoucauld)
 
 
 --- On Tue, 6/29/10, tkuyp...@telenet.be tkuyp...@telenet.be wrote:
 ok, something weird is happening and
 I'm lost...
 
 I have a list with some lines of text of which I want to
 drag from.
 Next I have a button on which I want to drop onto.
 
 I've created an invisible button, whose label is set to the
 line I selected, and becomes visible in the dragStart
 handler of the field.
 
 Script in field:
 on dragStart
set the itemdel to tab
set the label of btn DragData to item 2
 of the hilitedText of me
show btn DragData
set the dragData[text] to the
 hilitedText of me
pass dragStart
 end dragStart
 
 on dragEnd
hide btn DragData
 end dragEnd
 
 on dragMove
set the loc of btn DragData to the
 mouseLoc
pass dragMove
 end dragMove
 
 
 And now the strange thing.
 Drag  drop works fine, the button accepts the drop,
 but moving the text-lable-button is choppy and  stops
 when I leave the field.
 
 So I moved the DragMove handler out of the field and
 moved it to the card script.
 Moving is really smooth now, the button follows the mouse
 very nice, but the drop doesn't work anymore... The button
 that should receive the dragData just doesn't react
 anymore.
 
 What am I missing?
 
 I'm on a Mac and using the latest version of RR
 (4.5.0-dp-3), but 4.0.0-gm-1 reacts the same.
 
 Any help is welcome!
 
 
 Met vriendelijke groeten,
 Warm Regards,
 
 PublishingTools 4 U
 Ton Kuypers
 +32 (0) 477 739 530
 
 Aardbemden 11 • B-2400 • Mol • Belgium
 www.publishingtools4u.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


Re: Drag Drop question

2010-06-30 Thread tkuyp...@telenet.be
Hi Mark,

Yes, I read it yesterday, but it didn't solve my question... 
The answer Jan Schenkel posted was exactly what I was looking for, and i could 
not find that in the tutorial or in the docs...
But thanks anyway :-)

Met vriendelijke groeten,

Ton Kuypers



On 30-jun-2010, at 06:59, Mark Wieder wrote:

 tkuypers-
 
 Here's a tutorial I wrote on drag-and-drop:
 
 http://lessons.runrev.com/spaces/lessons/buckets/784/lessons/7124-Pinning-Drag-and-drop-to-the-mat-a-primer
 
 -- 
 -Mark Wieder
 mwie...@ahsoftware.net
 
 ___
 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


Over lapping buttons

2010-06-30 Thread Glen Bojsza
Hello,

I am building an application which uses a third party plug in (protected)
that places several buttons in specific locations accordingly.

The problem is that I want to move any buttons that over lap another button.

I can generate a list of buttons made by the plug in and the order they are
created.

The problem only exists once and a while and only between buttons that are
in sequence - for example regardless of the number of buttons there is only
one pair that ends up over lapping.

So is there an easy way to determine if a button is over lapping it's
neighbor?

thanks,

Glen
___
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


[CODE] MacOS X code to execute shell command with administrator priviledges

2010-06-30 Thread Andre Garzia
Folks,

I just created a tiny function that I think might be useful for people here.

Sometimes you want to execute a command with shell() on mac os x but your
command needs to be run with administrator priviledges. Some might try to
script sudo to do this or just give up because scripting sudo is not that
easy. Well, it turns out there's a simpler solution using applescript. So
here it is:

function executeWithPriviledges pCmd
   do format(do shell script \%s\ with administrator privileges, pCmd)
as applescript
   return the result
end executeWithPriviledges

also available at http://wecode.org/paste/A9HF2D6

This function will execute the command passed to it with administrator
priviledges, it will display the standard mac os x dialog box for
authorization. It uses applescript that in taps into Mac OS X Authorization
Services API.

It think it is useful, specially for all those people running apachectl
graceful from inside rev (is it just me?)

Andre

-- 
http://www.andregarzia.com All We Do Is Code.
___
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: [CODE] MacOS X code to execute shell command with administrator priviledges

2010-06-30 Thread Jerry Daniels
Great stuff, Andre, thanks!

On Jun 30, 2010, at 9:16 AM, Andre Garzia wrote:

 Folks,
 
 I just created a tiny function that I think might be useful for people here.
 
 Sometimes you want to execute a command with shell() on mac os x but your
 command needs to be run with administrator priviledges. Some might try to
 script sudo to do this or just give up because scripting sudo is not that
 easy. Well, it turns out there's a simpler solution using applescript. So
 here it is:
 
 function executeWithPriviledges pCmd
   do format(do shell script \%s\ with administrator privileges, pCmd)
 as applescript
   return the result
 end executeWithPriviledges
 
 also available at http://wecode.org/paste/A9HF2D6
 
 This function will execute the command passed to it with administrator
 priviledges, it will display the standard mac os x dialog box for
 authorization. It uses applescript that in taps into Mac OS X Authorization
 Services API.
 
 It think it is useful, specially for all those people running apachectl
 graceful from inside rev (is it just me?)
 
 Andre
 
 -- 
 http://www.andregarzia.com All We Do Is Code.
 ___
 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: [CODE] MacOS X code to execute shell command with administrator priviledges

2010-06-30 Thread Andre Garzia
If you ever use this on tRev or Rodeo take a screen shot of the lines and
send it to me, I will print it and put it on my wall! :-D

On Wed, Jun 30, 2010 at 11:40 AM, Jerry Daniels jerry.dani...@me.comwrote:

 Great stuff, Andre, thanks!

 On Jun 30, 2010, at 9:16 AM, Andre Garzia wrote:

  Folks,
 
  I just created a tiny function that I think might be useful for people
 here.
 
  Sometimes you want to execute a command with shell() on mac os x but your
  command needs to be run with administrator priviledges. Some might try to
  script sudo to do this or just give up because scripting sudo is not that
  easy. Well, it turns out there's a simpler solution using applescript. So
  here it is:
 
  function executeWithPriviledges pCmd
do format(do shell script \%s\ with administrator privileges, pCmd)
  as applescript
return the result
  end executeWithPriviledges
 
  also available at http://wecode.org/paste/A9HF2D6
 
  This function will execute the command passed to it with administrator
  priviledges, it will display the standard mac os x dialog box for
  authorization. It uses applescript that in taps into Mac OS X
 Authorization
  Services API.
 
  It think it is useful, specially for all those people running apachectl
  graceful from inside rev (is it just me?)
 
  Andre
 
  --
  http://www.andregarzia.com All We Do Is Code.
  ___
  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




-- 
http://www.andregarzia.com All We Do Is Code.
___
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: Location parameters in Size Inspector for stack

2010-06-30 Thread Michael D Mays

On Jun 30, 2010, at 12:16 AM, J. Landman Gay wrote:

 The default value for maxWidth and maxHeight is the topmost limit of the 
 allowable stack size. So if you click the up arrow, you're going to go off 
 into the weeds; the size will be an abstraction. The fix would be to script 
 the inspector not to accept larger values than the maximum. You could report 
 that in the Quality Control Center if you feel like it. 
 http://quality.runrev.com/

I think that 65535 is the largest unsigned 16 bit integer. Clicking the up 
arrow makes it
1     
If the magical engine thinks it is getting a 16 bit integer it throws away the 
1 and calls it zero. This is what I see if I ask the stack what its width is in 
the message box. 

But why me and not you? 

When you tab through the fields and reach the last one do you have to tab ten 
more times before going back to the first?

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: Drag Drop question

2010-06-30 Thread Mark Wieder
tkuypers-

Wednesday, June 30, 2010, 1:32:45 AM, you wrote:

 Hi Mark,

 Yes, I read it yesterday, but it didn't solve my question... 
 The answer Jan Schenkel posted was exactly what I was looking
 for, and i could not find that in the tutorial or in the docs...
 But thanks anyway :-)

Cool. Glad that worked. Jan's approach is clever...

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

___
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: Location parameters in Size Inspector for stack

2010-06-30 Thread J. Landman Gay

Michael D Mays wrote:

On Jun 30, 2010, at 12:16 AM, J. Landman Gay wrote:


The default value for maxWidth and maxHeight is the topmost limit
of the allowable stack size. So if you click the up arrow, you're
going to go off into the weeds; the size will be an abstraction.
The fix would be to script the inspector not to accept larger
values than the maximum. You could report that in the Quality
Control Center if you feel like it. http://quality.runrev.com/


I think that 65535 is the largest unsigned 16 bit integer. Clicking
the up arrow makes it 1     If the magical engine
thinks it is getting a 16 bit integer it throws away the 1 and calls
it zero. This is what I see if I ask the stack what its width is in
the message box.


Yes, I think you're right. It makes sense.



But why me and not you?


I get it too. When I said I couldn't reproduce the problem (or 
reproduct if you prefer) I didn't know exactly what you were doing. 
Once you gave a recipe I got the same results.




When you tab through the fields and reach the last one do you have to
tab ten more times before going back to the first?


Only if the objects in between have their traversalOn set to true. 
Remember that on other operating systems, you can tab into buttons and 
other controls, so that's what's happening even though on a Mac you 
can't see the selection outline.


--
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


Running revlets on the iPad

2010-06-30 Thread James Hurley

Sorry, but I'm a little behind the curve on this.

I know that we can't build for the iPod or iPad, but can we run  
revlets using the plug-in for Safari?


I tried on my iPad and I got a screen asking me to download the plug- 
in, but it didn't happen, i.e. the plug-in didn't download.


Jim Hurley
___
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: Running revlets on the iPad

2010-06-30 Thread Colin Holgate

On Jun 30, 2010, at 2:04 PM, James Hurley wrote:

 I tried on my iPad and I got a screen asking me to download the plug-in, but 
 it didn't happen, i.e. the plug-in didn't download.

Plugins don't work on the iPhone or iPad.
___
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: Running revlets on the iPad

2010-06-30 Thread Richmond

On 06/30/2010 09:10 PM, Colin Holgate wrote:

On Jun 30, 2010, at 2:04 PM, James Hurley wrote:

   

I tried on my iPad and I got a screen asking me to download the plug-in, but it 
didn't happen, i.e. the plug-in didn't download.
 

Plugins don't work on the iPhone or iPad.
___
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
   


This sounds all rather like negative ostension.

What DOES work on the iPhone or iPad that has NOT been made with
Apple's own xCode?

And, quite frankly, if Plugins don't work on those platforms they do look
a bit flat if one wants (especially with regard to the iPad) to use them
as effective web-browsers.
___
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


Smokescreen.rev

2010-06-30 Thread Simon Lord
Not immediately related to RunRev but an enterprising person(s) wrote
a Javascript service which can read a Flash SWF and decompile  run it
in near-realtime.

http://smokescreen.us/demo/

End result is that it's a little slower than Flash proper.  BUT, the
damn thing works.  And it's open source.

PS: My point is it's probably fairly trivial to do the same for rev
stacks if the right people took a stab at it.  In fact, if the rev web
server could output as JS runtimes then magic would happen WRT to web
apps for mobile.

PSPS: The irony here is that Apple won't allow Flash on smartphones,
in part, because it's slow—now it runs in JS but is even slower.
Hooray!
___
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: Running revlets on the iPad

2010-06-30 Thread Colin Holgate

On Jun 30, 2010, at 2:22 PM, Richmond wrote:

 And, quite frankly, if Plugins don't work on those platforms they do look
 a bit flat if one wants (especially with regard to the iPad) to use them
 as effective web-browsers.

I spend all day every day developing Flash content for the web, so I don't 
actually mind having a break from it while using my iPad. There's still plenty 
of things to look at on the pages.



___
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: Smokescreen.rev

2010-06-30 Thread Colin Holgate

On Jun 30, 2010, at 2:25 PM, Simon Lord wrote:

 PS: My point is it's probably fairly trivial to do the same for rev
 stacks if the right people took a stab at it

The Javascript Flash players are just replaying the graphics in the swf. A 
similar thing with Rev would be to flip through the cards. Not really very 
useful.



___
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: Running revlets on the iPad

2010-06-30 Thread Andre Garzia
HTML5 + JS + CSS3 is the future... it will superseed Flash, eventually.

On Wed, Jun 30, 2010 at 3:22 PM, Richmond richmondmathew...@gmail.comwrote:

 On 06/30/2010 09:10 PM, Colin Holgate wrote:

 On Jun 30, 2010, at 2:04 PM, James Hurley wrote:



 I tried on my iPad and I got a screen asking me to download the plug-in,
 but it didn't happen, i.e. the plug-in didn't download.


 Plugins don't work on the iPhone or iPad.
 ___
 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



 This sounds all rather like negative ostension.

 What DOES work on the iPhone or iPad that has NOT been made with
 Apple's own xCode?

 And, quite frankly, if Plugins don't work on those platforms they do look
 a bit flat if one wants (especially with regard to the iPad) to use them
 as effective web-browsers.

 ___
 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




-- 
http://www.andregarzia.com All We Do Is Code.
___
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: Running revlets on the iPad

2010-06-30 Thread Richmond

On 06/30/2010 09:28 PM, Colin Holgate wrote:

On Jun 30, 2010, at 2:22 PM, Richmond wrote:

   

And, quite frankly, if Plugins don't work on those platforms they do look
a bit flat if one wants (especially with regard to the iPad) to use them
as effective web-browsers.
 

I spend all day every day developing Flash content for the web, so I don't 
actually mind having a break from it while using my iPad. There's still plenty 
of things to look at on the pages.


   
Yes; well in your case that is understandable; although I too am sick of 
Flash content, I am not

sick of revlets.
___
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: Running revlets on the iPad

2010-06-30 Thread stephen barncard
One can make very useful apps using the excellent Safari browser in the
iPhone. Many iphone 'goodies' are available via CSS and javascript, and many
controls like the selection wheel are 'automatic' when the web page is
properly enabled. And one has an alphabet soup of server side languages from
C to RunRev to drive these apps. This requires no approval or control from
Apple, just an internet connection to run.

On 30 June 2010 11:22, Richmond richmondmathew...@gmail.com wrote:

 On 06/30/2010 09:10 PM, Colin Holgate wrote:

 On Jun 30, 2010, at 2:04 PM, James Hurley wrote:



 I tried on my iPad and I got a screen asking me to download the plug-in,
 but it didn't happen, i.e. the plug-in didn't download.


 Plugins don't work on the iPhone or iPad.
 ___
 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



 This sounds all rather like negative ostension.

 What DOES work on the iPhone or iPad that has NOT been made with
 Apple's own xCode?

 And, quite frankly, if Plugins don't work on those platforms they do look
 a bit flat if one wants (especially with regard to the iPad) to use them
 as effective web-browsers.

 ___
 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
___
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: Running revlets on the iPad

2010-06-30 Thread Mark Schonewille

Richmond,

Web Apps accessed with Safari and several systems using the Safari  
framework, such as Phonegap and Appcelerator. I think that Titanium  
has its own IDE, but you'll need XCode anyway. There's also Unity. If  
you want to make commercial apps, note that Apple may decide to not  
allow non-XCode apps any time.


--
Best regards,

Mark Schonewille

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

Subscribe to the Economy-x-Talk newsletter at http://qurl.tk/cj
Download Clipboard Link http://clipboardlink.economy-x-talk.com and  
share the clipboard of your computer over the local network.


On 30 jun 2010, at 20:22, Richmond wrote:


This sounds all rather like negative ostension.

What DOES work on the iPhone or iPad that has NOT been made with
Apple's own xCode?

And, quite frankly, if Plugins don't work on those platforms they do  
look
a bit flat if one wants (especially with regard to the iPad) to  
use them

as effective web-browsers.



___
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: Smokescreen.rev

2010-06-30 Thread Simon Lord
It's slightly more complex than that.  Hotspots, timing, rollovers etc
are all intact.  This is more than just a simple replaying of cards.



On Wed, Jun 30, 2010 at 2:30 PM, Colin Holgate co...@verizon.net wrote:

 On Jun 30, 2010, at 2:25 PM, Simon Lord wrote:

 PS: My point is it's probably fairly trivial to do the same for rev
 stacks if the right people took a stab at it

 The Javascript Flash players are just replaying the graphics in the swf. A 
 similar thing with Rev would be to flip through the cards. Not really very 
 useful.



 ___
 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: Running revlets on the iPad

2010-06-30 Thread Andre Garzia
Jim,

You can't run revlets on iPad... actually you can't run any safari plugin on
the iPad... RevWeb is for x86 only and even if they ever port it to ARM it
would not work on the iPhone/iPad because apple would not allow the
installation of the plugin.

:-/


On Wed, Jun 30, 2010 at 3:04 PM, James Hurley jhurley0...@sbcglobal.netwrote:

 Sorry, but I'm a little behind the curve on this.

 I know that we can't build for the iPod or iPad, but can we run revlets
 using the plug-in for Safari?

 I tried on my iPad and I got a screen asking me to download the plug-in,
 but it didn't happen, i.e. the plug-in didn't download.

 Jim Hurley
 ___
 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




-- 
http://www.andregarzia.com All We Do Is Code.
___
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: Smokescreen.rev

2010-06-30 Thread stephen barncard
And it's pretty efficient - in some cases faster than Flash itself.
This is a very exciting product.  And open source.

sqb

On 30 June 2010 12:04, Simon Lord sl...@karbonized.com wrote:

 It's slightly more complex than that.  Hotspots, timing, rollovers etc
 are all intact.  This is more than just a simple replaying of cards.



 On Wed, Jun 30, 2010 at 2:30 PM, Colin Holgate co...@verizon.net wrote:
 
  On Jun 30, 2010, at 2:25 PM, Simon Lord wrote:
 
  PS: My point is it's probably fairly trivial to do the same for rev
  stacks if the right people took a stab at it
 
  The Javascript Flash players are just replaying the graphics in the swf.
 A similar thing with Rev would be to flip through the cards. Not really very
 useful.
 
 
 
  ___
  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




-- 
-
Stephen Barncard
San Francisco
___
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: Over lapping buttons

2010-06-30 Thread DunbarX
Hi.

The intersect function is just what you need. Check the dictionary.

Craig Newman
___
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: Over lapping buttons

2010-06-30 Thread Glen Bojsza
Thanks Craig.

I will try intersect... originally I was trying the within function and
got stuck on it.

Glen

On Wed, Jun 30, 2010 at 1:12 PM, dunb...@aol.com wrote:

 Hi.

 The intersect function is just what you need. Check the dictionary.

 Craig Newman
 ___
 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: Running revlets on the iPad

2010-06-30 Thread Bob Sneidar
On the flip side just last week I heard a story that 20% of the apps for 
Android are capable of revealing information about your location, addresses, 
and information contained on your Android phone. 

That does not mean 20% of the Android phones are insecure. It means that a 
whole he** uv a lot more are potentially insecure. Much as I hate Apple's 
decision to disallow iApp development for Runrev, it give one pause to think 
where they might be had they installed some innocuous looking Android app and 
discovered 2 weeks later that their identity had been stolen, without any idea 
of how it happened, or started getting eAds and spam for stores or items they 
only paid cash for. 

Bob


On Jun 30, 2010, at 11:04 AM, James Hurley wrote:

 Sorry, but I'm a little behind the curve on this.
 
 I know that we can't build for the iPod or iPad, but can we run revlets using 
 the plug-in for Safari?
 
 I tried on my iPad and I got a screen asking me to download the plug-in, but 
 it didn't happen, i.e. the plug-in didn't download.
 
 Jim Hurley
 ___
 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: Running revlets on the iPad

2010-06-30 Thread Andre Garzia
thats why I always drive by circling every city block I can, this will make
crazy any geolocation/geotracking application...

On Wed, Jun 30, 2010 at 5:24 PM, Bob Sneidar b...@twft.com wrote:

 On the flip side just last week I heard a story that 20% of the apps for
 Android are capable of revealing information about your location, addresses,
 and information contained on your Android phone.

 That does not mean 20% of the Android phones are insecure. It means that a
 whole he** uv a lot more are potentially insecure. Much as I hate Apple's
 decision to disallow iApp development for Runrev, it give one pause to think
 where they might be had they installed some innocuous looking Android app
 and discovered 2 weeks later that their identity had been stolen, without
 any idea of how it happened, or started getting eAds and spam for stores or
 items they only paid cash for.

 Bob


 On Jun 30, 2010, at 11:04 AM, James Hurley wrote:

  Sorry, but I'm a little behind the curve on this.
 
  I know that we can't build for the iPod or iPad, but can we run revlets
 using the plug-in for Safari?
 
  I tried on my iPad and I got a screen asking me to download the plug-in,
 but it didn't happen, i.e. the plug-in didn't download.
 
  Jim Hurley
  ___
  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




-- 
http://www.andregarzia.com All We Do Is Code.
___
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: Running revlets on the iPad

2010-06-30 Thread Richard Gaskin

Bob Sneidar wrote:

 On the flip side just last week I heard a story that 20% of
 the apps for Android are capable of revealing information
 about your location, addresses, and information contained
 on your Android phone.


CNet has since retracted that story:

http://www.zdnet.com/blog/burnette/cnet-retracts-article-on-android-app-privacy-threat/1987?tag=content;search-results-rivers


--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.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: Over lapping buttons

2010-06-30 Thread DunbarX
A logical deduction. But within (either the function or the operator) 
deals with points only. Intersect does a lot of geometry for you.

Craig Newman
In a message dated 6/30/10 4:16:53 PM, gboj...@gmail.com writes:


 
 
 
___
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


How do you fix this?

2010-06-30 Thread charles61

I had problems with the cutting off of the bottom because of not setting the
Set as Stack Menu bar in the Menu Builder. I have set the Destroystack of my
splash, app and substacks to false. Now when I created my Mac app, I get the
top of my second card showing the upper 1/4 inch of blue from the my main
card! 
I have tried increasing the height property of my stack but it only causes
the top to go down after increasing one pixel and then increasing by another
pixel it causes the top to go up. This in turn shows the blue at the top and
then shows the blue at the bottom. Beside starting creating my stack, how
can I fix this annoying problem?
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/How-do-you-fix-this-tp2274538p2274538.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: Running revlets on the iPad

2010-06-30 Thread Alejandro Tejada

Hi Andre,


Andre Garzia-3 wrote:
 
 HTML5 + JS + CSS3 is the future... it will superseed Flash, eventually.
 

Actually, the problem is not Flash, but the persistent abuse
and misuse of SWF for advertising content. 

You could find, easily, 4 or 5 swf files on the same page,
trying to get your attention, your bandwidth and your
processor, all of them, at the same time.

The solution that i envision to this is:
Only the more recent (or latest) SWF
is able to run. The rest should wait
until the user clicks on them.

If HTML5 + JS + CSS3 replace SWF files, then
this problem would become only more evident.

Al
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Running-revlets-on-the-iPad-tp2273949p2274547.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: last available version of revBrowser.dll (windows) ?

2010-06-30 Thread Alejandro Tejada

Hi Pierre,

Could you post the MD5 of the DLL that
you are using?

Al
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/last-available-version-of-revBrowser-dll-windows-tp2272925p2274548.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: Smokescreen.rev

2010-06-30 Thread Alejandro Tejada

A lot of possibilities, but at least
here, the sound finished before
the animation... 

no syncronization.

Al
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Smokescreen-rev-tp2273969p2274551.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: Running revlets on the iPad

2010-06-30 Thread Simon Lord
If you haven't already, install Clicktoflash on OS X.  It's been a
godsend for me.  I rarely see Flash SWF's anymore (other than sites I
expressly need them to appear).  Flash ads are a thing of history as
well.

http://clicktoflash.com/

I also use Readabilty in conjunction with clicktoflash to rid myself of ads.

http://lab.arc90.com/experiments/readability/

Safari 5 has Reader now which is essentially a better version of
Readabilty, but at least it's cross platform (pure js).


On Wed, Jun 30, 2010 at 10:35 PM, Alejandro Tejada
capellan2...@gmail.com wrote:

 Hi Andre,


 Andre Garzia-3 wrote:

 HTML5 + JS + CSS3 is the future... it will superseed Flash, eventually.


 Actually, the problem is not Flash, but the persistent abuse
 and misuse of SWF for advertising content.

 You could find, easily, 4 or 5 swf files on the same page,
 trying to get your attention, your bandwidth and your
 processor, all of them, at the same time.

 The solution that i envision to this is:
 Only the more recent (or latest) SWF
 is able to run. The rest should wait
 until the user clicks on them.

 If HTML5 + JS + CSS3 replace SWF files, then
 this problem would become only more evident.

 Al
 --
 View this message in context: 
 http://runtime-revolution.278305.n4.nabble.com/Running-revlets-on-the-iPad-tp2273949p2274547.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

___
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: Smokescreen.rev

2010-06-30 Thread Simon Lord
The project is about 6 weeks old I think.  Been keeping my eye on it.
Very curious to get my hands on the code to see how they are
reassembling the graphics and code in JS.  If you're fast enough you
can actually grab some of the sliding graphics in their demos.  So
somehow they are hijacking the swf elements and reconstructing them.



On Wed, Jun 30, 2010 at 10:44 PM, Alejandro Tejada
capellan2...@gmail.com wrote:

 A lot of possibilities, but at least
 here, the sound finished before
 the animation...

 no syncronization.

 Al
 --
 View this message in context: 
 http://runtime-revolution.278305.n4.nabble.com/Smokescreen-rev-tp2273969p2274551.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

___
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