Rev 4.0 Enterprise Splash Stack - xmlerr, can't find element

2009-12-26 Thread Peter W A Wood
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?

Peter___
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


Runrev video on youTube

2009-12-26 Thread Thomas McGrath III
In case anyone missed this, it is a very funny video from the team at  
runrev:


http://www.youtube.com/watch?v=Hyu9PVaIfKo


Tom McGrath III
Lazy River Software
3mcgr...@comcast.net

iTunes Library Suite - libITS
Information and download can be found on this page:
http://www.lazyriversoftware.com/RevOne.html






___
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: Pointers to Quicktime videos in Revlets

2009-12-26 Thread Sarah Reichelt
On Sat, Dec 26, 2009 at 4:45 PM, J. Landman Gay
 wrote:
> Sarah Reichelt wrote:
>
>> Is there a way for the revlet to know where it is?
>> I would prefer not to have to hard-wire the path, so that the revlet
>> would work no matter where it was moved to, assuming that the media
>> files were kept in the same relative location.
>
> The revlet thinks it's on the user's machine, so you need some kind of link
> back to your server. If you're putting the revlet on your on-rev site, then
> you could probably get the server variables to see what the REQUEST_URI is
> and get the page name from that.


I wanted a general way to do this, that did not rely on the page being
hosted by On-Rev, so I worked out how to do this using PHP as well as
On-Rev.

You can check out the On-Rev version at
.

I edited the html produced by the standalone builder and added this line:
pageLocation=""
This was inserted into the  tag, on the line just after the instanceID.

In the revlet, I used this script to read the parameter:
  put the revletParams of this stack into tParams
  put tParams["pageLocation"] into tPageLocation

Then I was able to format the string the way I wanted. It includes the
page name at this stage e.g. "www.troz.net/rev/revweb.irev"
so I set the itemDelimiter to slash, removed the last item, added the
"http://"; and then I was left with the containing folder.

For the PHP equivalent, you will need to change the file extension of
the html file to ".php" and instead of the irev line above, use this:
pageLocation=""

This gives exactly the same data in exactly the same format, so the
processing can be the same.

So now I have a way to include media in a revlet, using relative addressing :-)

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


Re: HC convert: help with text as graphic or rotated text

2009-12-26 Thread Scott Rossi

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


___
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: Pointers to Quicktime videos in Revlets

2009-12-26 Thread Tim Lambert
Many thanks to all who replied. AlwaysBuffer false and actually putting the 
full URL now works from my server. I appreciate everone's quick help

Tim


 :
> Hi Could anyone point me to a 'How-to' to get QT vids to play from an
> uploaded revlet? The vids are in the same folder as the uploaded
> Revlet, but nowr happens.

That's how I do it. The videos are in the same folder with the revlet, 
then the script references them like this:

set the filename of player 1 to "http://www.domain.com/folder/movie.mov";

I don't use the "file://" syntax, because a revlet is like a local 
stack, and a fully qualified URL is fine as a reference. The "file://" 
designation is only for files you want to retrieve from the user's local 
hard drive, not for those on your server.

Unless it got fixed without my noticing, players in revlets only work 
reliably if the alway___
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-26 Thread James Hurley


Message: 1
Date: Thu, 24 Dec 2009 11:18:11 -0800
From: Scott Rossi 
Subject: Re: HC convert: help with text as graphic or rotated text
To: How to use Revolution 
Message-ID: 
Content-Type: text/plain;   charset="US-ASCII"

You can't physically rotate text, but you can create an image of  
text and
rotate that.  Here's one example of doing this.  Execute the  
following in

your Rev message box:
go url "http://www.tactilemedia.com/site_files/downloads/textspinner.rev 
"


If you want to print out the results, you could try creating your  
text at 4x
the final size and then scaling down the imported text image/s to  
25%.  Kind
of a pain to do but should give better print results.  You could do  
all the

manipulation in a hidden stack if necessary.

Hope this helps.

Scott Rossi
Creative Director
Tactile Media, Multimedia & Design



Scott,

Thanks. This is a great utility. All the bells an whistles.

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.


Any thoughts?

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