Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently November 15th, 2024, 9:17 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: text animation "letter by letter"
PostPosted: February 25th, 2005, 3:06 pm 
Offline

Joined: November 3rd, 2004, 12:12 pm
Posts: 117
Location: France - Bretagne
hi,

my customer sometimes ask me for text entrance/exit effect "like powerpoint". I decided yesterday, to look at those text effect of powerpoint (powerpoint 2002) : surprise ! some effect are really very good... and easy to use (especially those "letter by letter" : typewriter, grow and turn...). It would be interesting to have that in opus, because it is important when you use opus pro04 for live presentation to have the ability to emphasis the text.
I have already try to do the job by integrating flash in opus but because of the "no transparency" of the flash's background, that do not the job.
In next release of opus pro, the include of "text animation letter by letter" (without scripting of course) is one of my first wish.

Benoit

_________________
Opus Pro 06, Win XP.


For this message benoit has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: February 25th, 2005, 5:42 pm 
Offline

Joined: October 25th, 2004, 12:27 pm
Posts: 526
Location: Digital Workshop
Hi,

Thank you for your enquiry.

benoit wrote:
without scripting of course


You can achieve this with only a few lines of script and can attach this script action directly to the text object so that the object can be saved in the component gallery for future use.

All you need to do is add a text object to the page, then apply an On Show trigger to the text object, followed by a script action. In the script pane, copy and paste the following:

Code:
mytext = "typewritertext"
textlength = String.length(mytext)
for (n=1;n<=textlength;n++) {
display = mytext.substring(0,n)
this.SetSelection(0,-1)
this.ReplaceSelection(display)
wait(0.3)
}


Simply change the string "typewritertext" to the text you wish to display and change the value of the wait() action to the time delay you wish to leave between letters.

Now apply the changes and preview the publication. The contents of the mytext string will appear letter-by-letter with the text object.

You can now simply save this text object to a component gallery. Whenever you need to use a typewriter effect, simply drag this component onto the page and edit the script actions to the required string and time delay.

Kind regards,

_________________
Robin Garrett
Digital Workshop Technical Support


For this message Robin Garrett has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: February 25th, 2005, 9:57 pm 
Offline

Joined: November 3rd, 2004, 12:12 pm
Posts: 117
Location: France - Bretagne
thank you for your answer but...
i was not just talking about typewriter effect. I was talking about all the effect you can achieve when the software allow you to animate text "letter by letter" or "word by word" or "line by line" like text animation in powerpoint, swish, flash, mediator... (example: the line appear letter by letter with zoom and fade on each letter...)
I know that animation is not the first goal of opus (for my corporate cd-rom this software is very, very good)... but because i'd like to do all my work with this software (cd-rom + live presentation) , i'd like to see opus improve in text animation (for live presentation).
(embedded flash file is not the solution because of non-transparent background of it)

good Week-end
benoit

_________________
Opus Pro 06, Win XP.


For this message benoit has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: February 27th, 2005, 2:53 am 
Offline

Joined: November 28th, 2004, 6:05 am
Posts: 141
Location: USA
Maybe the next best thing.

Just type the text into the textbox.
Set the size, font, and position however you like
then set the labled animation parameters at
the top of the script

Animated text template

Cheers
Chris

_________________
Opus Resources and Services


For this message Chris Jones has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject: good work
PostPosted: February 27th, 2005, 7:25 am 
Offline

Joined: November 11th, 2004, 4:05 am
Posts: 636
Location: Christchurch, NZ
Nice one Chris
cheers
Paul


For this message Paul has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: February 27th, 2005, 9:58 am 
Offline

Joined: November 3rd, 2004, 12:12 pm
Posts: 117
Location: France - Bretagne
whaouuu ! super

it is what i need...
i am going to study your script, it sure give me a lot of lesson of scripting.

thank you very, very much

benoit

_________________
Opus Pro 06, Win XP.


For this message benoit has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: February 27th, 2005, 4:40 pm 
Offline

Joined: November 3rd, 2004, 12:12 pm
Posts: 117
Location: France - Bretagne
hi,

to adapt your script at my need i have try some different things.
There is something that i don't understand when i use "var TextInfo = myText.PointFromChart()" :
1- var A = TextInfo.x return a good value
2- var B = TextInfo.y return a good value
3- var C = TextInfo.height return a good value
4- var D = TextInfo.width always return 0 !!!!

It seems to me that "TextInfo.width" should return the width of the letter ?? Is it somethings i have not understand ?? I'd like this function to try to adapt space between letter witch is different (i for example)

Benoit

_________________
Opus Pro 06, Win XP.


For this message benoit has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: February 27th, 2005, 5:36 pm 
Offline

Joined: November 28th, 2004, 6:05 am
Posts: 141
Location: USA
Hi Benoit

yes I noticed that the .width value was missing, and
in fact it made the script a bit longer.

I also reported in the advanced section as a bug.

Cheers
Chris

_________________
Opus Resources and Services


For this message Chris Jones has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject: any more text effect scripts ?
PostPosted: March 9th, 2005, 5:02 pm 
Offline

Joined: November 19th, 2004, 1:36 pm
Posts: 178
Location: Birmingham
If anyone else has anymore text effect scripts they can share - that would be just ACE!

I'm a complete code phobic..


For this message Craig Gilman has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: March 9th, 2005, 8:28 pm 
Offline

Joined: November 28th, 2004, 6:05 am
Posts: 141
Location: USA
what kind of text effects did you have in mind?

Chris

_________________
Opus Resources and Services


For this message Chris Jones has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject: take a look at wildform swfx
PostPosted: March 21st, 2005, 11:20 pm 
Offline

Joined: November 19th, 2004, 1:36 pm
Posts: 178
Location: Birmingham
http://www.wildform.com/wildfx/wildfxpro.php

Now theres a product with some cool text effects.. Some are a bit over the top to be honest!!!

I used to use a previous version if this app when I did a fair bit of flash work..

now i'm doing less flash and more Opus - and Opus to replace powerpoint.

Text effects can help to augment a project. But need to be used in moderation!

Maybe theres someone out there that likes the idea/challenge has the coding skills and knowledge to play with making a series of text effect components??

I'm sure theres lots of opus users who'd like to use them???


For this message Craig Gilman has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: April 1st, 2005, 12:41 am 
I missed this post when it first appeared.

I have used a product called Anim-FX which does a fantastic job on creating animated text Flash intros , Flash banners , and text effects with Flash templates.

Anim-FX might not be for everyone, but a visit to http://www.anim-fx.com/ might be useful. At US$27 it is not expensive and updates are free.


Top
   
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 12 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group