Re: Can I know the revWeb is installed?

2009-12-27 Thread Sarah Reichelt
 Can I know the revWeb plugin is installed or not by a script?
 I want to make an application for desktop + web browser.
 And desktop version can detect a plugin.

On the web page, you can use the JavaScript that comes with the sample
html to detect the plugin.

On the desktop, I guess the easiest way is to look in the expected
location and see if you can find the files.
On my Mac OS X system, I have this folder:
/Users/sarah/Library/Internet Plug-Ins
Inside the folder, I have nprevweb.plugin and wkrevweb.plugin.
So if you checked for the existence of those files, that would
indicate the plugin was installed.

Hopefully someone else can contribute the expected location of the
plugin under Windows.

Cheers,
Sarah
___
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


Megabundle Question

2009-12-27 Thread Michael Kann
The Megabundle offer looks like a  great deal. The add states that We've 
included 32 productivity boosting products.  It then describes 24 products. 
I'm just curious what the other eight are. Thanks


  
___
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-2: Can I know the revWeb is installed?

2009-12-27 Thread runrev260805
Hi,

under Windows Vista you can find the revWebPlayer in

C:\Users\USERNAME\AppData\Local\RunRev\revWebPlayer

under Windows 2003 and XP german  under
C:\Dokumente und Einstellungen\USERNAME\Lokale 
Einstellungen\Anwendungsdaten\RunRev\revWebPlayer

and for english Windows i hope that my translation is correct for that:
C:\Documents and Settings\USERNAME\Local Settings\Application 
Data\RunRev\revWebPlayer


There are also 2 folders in it  ( 'Database Drivers' and 'Stack Permissions'.

There is also a registry entry for Mozilla Firefox at  

  hkey_current_user\software\mozillaplugi...@runrev.com/RevletPlayer,

which points to the folder where the plugin is.

Regards,

Matthias



 Original Message 
Subject: Re: Can I know the revWeb is installed? (27-Dez-2009 9:46)
From:Sarah Reichelt sarah.reich...@gmail.com
To:  runrev260...@m-r-d.de

  Can I know the revWeb plugin is installed or not by a script?
  I want to make an application for desktop + web browser.
  And desktop version can detect a plugin.
 
 On the web page, you can use the JavaScript that comes with the sample
 html to detect the plugin.
 
 On the desktop, I guess the easiest way is to look in the expected
 location and see if you can find the files.
 On my Mac OS X system, I have this folder:
 /Users/sarah/Library/Internet Plug-Ins
 Inside the folder, I have nprevweb.plugin and wkrevweb.plugin.
 So if you checked for the existence of those files, that would
 indicate the plugin was installed.
 
 Hopefully someone else can contribute the expected location of the
 plugin under Windows.
 
 Cheers,
 Sarah
 ___
 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
 
 
 
 
 To: use-revolution@lists.runrev.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: Rev 4.0 Enterprise Splash Stack - xmlerr, can't find element

2009-12-27 Thread J. Landman Gay

Peter W A Wood wrote:

I've just upgraded to Rev 4.0 Enterprise and get an XML error
reported in the Splash Stack. The Offers tab is fine and downloads
and shows its advert nicely. When I click on the Forums tab instead
of a list of recent discussions, an xmlerr, can't find element
message is displayed. Is it a bug or something that I need to setup?


Bug. You should probably report it at the QCC.


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


4.0 not displaying text field changes

2009-12-27 Thread Kee Nethery
This kind of thing worked fine in 2.9.x but does not in 4.0.

I've got a new 4.0 stack that has a bunch of repeat loops within repeat loops. 
For a small example:

repeat with w = 1 to 1000
  repeat with x = 1 to 1000
repeat with y = 1 to 1000
  repeat with z = 1 to 1000
put A  w  x  y  z into field status
  end repeat
end repeat
  end repeat
end repeat
put A done into field status

I'm not seeing field status change while it goes through the loops. What's up 
with that? I don't have any lock screen commands in the script. 

Is there some environment variable I'm supposed to set to have the field 
contents be displayed while a script is running?

Suggestions welcome.
Kee Nethery___
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: 4.0 not displaying text field changes

2009-12-27 Thread Mark Schonewille

Hi Kee,

This changed when the graphics engine was made more efficient (I  
think). Try this:


repeat with w = 1 to 1000
 repeat with x = 1 to 1000
   repeat with y = 1 to 1000
 repeat with z = 1 to 1000 with messages
   put A  w  x  y  z into field status
wait 0 millisec with messages
 end repeat
   end repeat
 end repeat
end repeat
put A done into field status

I don't think it is necessary to change all repeat loops by adding  
with messages, but if this doesn't work you might try that as well.


--
Best regards,

Mark Schonewille

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

Full PayPal integration and automation in web site or (Revolution/ 
SuperCard/other) software. Contact me for a quote before 1 Jan 2010  
and we'll charge (reduced) 2009 prices.

http://economy-x-talk.com/contact.html

Op 27 dec 2009, om 18:07 heeft Kee Nethery het volgende geschreven:


This kind of thing worked fine in 2.9.x but does not in 4.0.

I've got a new 4.0 stack that has a bunch of repeat loops within  
repeat loops. For a small example:


repeat with w = 1 to 1000
 repeat with x = 1 to 1000
   repeat with y = 1 to 1000
 repeat with z = 1 to 1000
   put A  w  x  y  z into field status
 end repeat
   end repeat
 end repeat
end repeat
put A done into field status

I'm not seeing field status change while it goes through the  
loops. What's up with that? I don't have any lock screen commands in  
the script.


Is there some environment variable I'm supposed to set to have the  
field contents be displayed while a script is running?


Suggestions welcome.



___
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: HC convert: help with text as graphic or rotated text

2009-12-27 Thread James Hurley


Message: 2
Date: Sat, 26 Dec 2009 11:41:18 -0800
From: Scott Rossi sc...@tactilemedia.com
Subject: Re: HC convert: help with text as graphic or rotated text
To: How to use Revolution use-revolution@lists.runrev.com
Message-ID: c75ba6de.9b%sc...@tactilemedia.com
Content-Type: text/plain;   charset=US-ASCII


Recently, James Hurley wrote:

go url http://www.tactilemedia.com/site_files/downloads/textspinner.rev 




I tried to add one more element: Disembodied text, i.e. a text field
field with zero border width and opaque set to false.

Unfortunately it crashes RunRev 4.0, build 950 on my Mac running
10.5.8  every time.


Works fine here (Rev 4, OS X 10.5.8 laptop) with the source field's  
opaque

disabled and borderWidth set to zero.

As an alternative, if you don't mind creating the text image on an  
unlocked

screen, you might try importing a snapshot of the field to the card.
Comment out the portions of the script that deal with the  
templateImage

(lines 15 - 21), and use this:

 import snapshot from rect (rect of fld 1) of fld 1
 set resizeQuality of last img to best
 set loc of last img to tLoc

Remember you also need to comment out the lock screen command at the
beginning of the script since import snapshot will fail if the  
screen is

locked.

Good luck.

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design




Scott,

I went back and stepped through your handler one line at time to see  
where it failed.
Alas, it never did. And now it doesn't when running full bore in the  
IDE.

There is indeed a Ghost in the Machine.

Sorry to put you to the extra effort. Thanks for humoring me,

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: Rev 4.0 Enterprise Splash Stack - xmlerr, can't find element

2009-12-27 Thread Malte Pfaff-Brill
Hi Peter,

I am pretty sure the RSS feed broke, when the forum software was updated to the 
latest version. As Jacque mentioned already, this should go into 
quality.runrev.com

Cheers,

Malte___
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: Megabundle Question

2009-12-27 Thread Malte Pfaff-Brill
Hi Michael,

the megabundle essentially is the all you can eat of revSelect  + rev 
Enterprise + assurance pack, so IMHO yes, it is a very good deal. :-) As for 24 
vs 32 products: Some of the offerings you see are packs in themselves, as for 
example the iconpeople icon packs or the audio stuff, which are usually sold 
seperately.

Hope that clears up things a bit.

If you are thinking of getting yourself a bundle, AFAIK the offer ends Dec. 
31st. This is definetly the most bang for the buck offering we revSelecters and 
the mothership have cooked up in all the years we have been working together. 
And to all of those who got theirs already: First of all thank you. 2nd, you 
will get the next iteration of both animationEngine and chartsEngine included. 
And please let me know what you use them for either off- or on list. Every 
proud father wants to know what their kids are up to. :-)


All the best,

Malte___
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


Setting Playloudness was Re: 4.0 not displaying text field changes

2009-12-27 Thread Jim Lambert
Mark noted that it is now necessary under Rev = 4.0  to insert
   wait 0 millisec with messages

into repeat loops in order to see any changes made to a field.

I have found this is also needed when changing playloudness like this:

on fadeSounds
   set the playloudness to cLoud
   wait 0 milliseconds with messages
if the playloudness  1 then
  set the playloudness to gSaveLoudness
  play stop
   else
  send fadeloop to me in 10 ticks
   end if
end fadeSounds

Without the wait (either 0 milliseconds with messages or 1 millisecond), the 
'set the playloudness' command is not executed.

Note that this is needed when setting the general volume. I'm not sure whether 
it is necessary to add the 'wait' when setting individual player volumes. 
Anyone?

Jim Lambert

___
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


Context menu for Header of DataGrid

2009-12-27 Thread Mark Stuart

Hi Trevor,
I was wondering if there is a way to have 2 context menus for the DataGrid,
1 for the rows and one for the header?
Where I'd like to have a different menu set for the header (pertinent to the
DataGrid itself) and the rows context menu would be specific to the record
itself.
The header menu would be for DataGrid properties and the complete data set
in the grid, like exporting to HTML or Excel.

Regards,
Mark Stuart
-- 
View this message in context: 
http://n4.nabble.com/Context-menu-for-Header-of-DataGrid-tp989577p989577.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: Rev 4.0 Enterprise Splash Stack - xmlerr, can't find element

2009-12-27 Thread Peter W A Wood
Jacque and Malte

Thanks. I've entered into the QCC - #8512.

Peter

On 28 Dec 2009, at 02:19, Malte Pfaff-Brill wrote:

 Hi Peter,
 
 I am pretty sure the RSS feed broke, when the forum software was updated to 
 the latest version. As Jacque mentioned already, this should go into 
 quality.runrev.com
 
 Cheers,
 
 Malte___
 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


Emulate an HTTP post in Rev

2009-12-27 Thread Jim Bufalini
Hello,

Can someone tell me how to emulate an HTTP post in Rev for a Revlet or
Standalone? So... someone gives you an HTML code snippet to insert in a
webpage. It looks like:

form action=[URL] method=post
input type=hidden name=[abc] value=[123]
input type=hidden name=[def] value=[456]
...
/form

I want to use *post* from Rev to emulate their button code. How do I
structure the data string of a Rev Post command to emulate the above? And,
do I need to change the httpHeaders Property to emulate it coming from a
webpage?

Thanks in advance.

Aloha from Hawaii,

Jim Bufalini

___
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: Emulate an HTTP post in Rev

2009-12-27 Thread Sarah Reichelt
 Can someone tell me how to emulate an HTTP post in Rev for a Revlet or
 Standalone? So... someone gives you an HTML code snippet to insert in a
 webpage. It looks like:

 form action=[URL] method=post
 input type=hidden name=[abc] value=[123]
 input type=hidden name=[def] value=[456]
 ...
 /form

 I want to use *post* from Rev to emulate their button code. How do I
 structure the data string of a Rev Post command to emulate the above? And,
 do I need to change the httpHeaders Property to emulate it coming from a
 webpage?


Try something like this:

put [abc]=  urlEncode([123])  [def]=  urlEncode([456]) into tPostData
post tPostData to URL [URL]

HTH,
Sarah
___
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