Razzak

I'm really glad you posted this example because it allows me to formulate a
question that I've found hard to phrase.

In this example:

1.  Where would this run? I assume as  a form eep?  On entry to the row of
the form showing the GIF?

2.  Can you put into plain English what this does with comments?  It looks
like if when the form opens, the animation is be animated, then the EEP
turns it off.  If it's off it turns it on.

Is that correct?  If so, how long then would it run?

David Blocker
[EMAIL PROTECTED]
781-784-1919
Fax: 781-784-1860
Cell: 339-206-0261
----- Original Message -----
From: "A. Razzak Memon" <[EMAIL PROTECTED]>
To: "RBG7-L Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, December 06, 2004 11:52 AM
Subject: [RBG7-L] - Re: Annimated GIF


>
> At 11:20 AM 12/6/2004 -0500, Joel Solomon wrote:
>
> >I have an animated GIF that I want to use as a splash
> >screen.  The only problem is that I want the GIF to
> >run only one time instead of continusously looping.
> >Is there any command to set the GIF to loop only one
> >time?
>
> Joel,
>
> Here's how:
>
> GETPROPERTY <AnimatedGIFComponentID> ANIMATE vGIFAct
> IF vGIFAct = 'TRUE' THEN
>     PROPERTY <AnimatedGIFComponentID> ANIMATE 'FALSE'
> ELSE
>     PROPERTY <AnimatedGIFComponentID> ANIMATE 'TRUE'
> ENDIF
> RETURN
>
> That will allow you to turn ON/OFF the animation
> feature on demand!
>
> You may also take a look at that exact feature and
> properties implemented in Running R:BASE Your Way!
> (Part 5).
>
> Database: RRBYW5
> Form: RRBYW5MainMenu
>
> Enjoy and make sure to have fun!
>
> Very Best R:egards,
>
> Razzak.
>
>

Reply via email to