I don't understand the blink interval value, so I took it out of the property command and set it to 556 in the blinking attribute, as you suggested.
Is it supposed to be the number of microseconds that it stays on or off in which case you could leave it on longer or shorter than it is off?
I just want it to blink.
Here is what I have now: Note that the visible true and false works, just the blinking does not work:
if Aflag = 'Y' then property CustAlert visible 'true' property CustAlert blinking 'true' else property CustAlert visible 'false' property CustAlert blinking 'false endif
It's in a static text object, there is no region on the screen. I am using 80.30314 does your blink work on this release?
Bernie Lis
----- Original Message ----- From: "John Engwer" <[EMAIL PROTECTED]>
To: "RBG7-L Mailing List" <[email protected]>
Sent: Sunday, March 13, 2005 1:55 PM
Subject: [RBG7-L] - Re: blinking
Bernie,
My code is in the "on row entry" EEP but I have used the same type of code in other areas of forms.
I saw that you were setting the BLINKINTERVALON in your code. I use the
settings in the field rather than controlling via the EEP code. If you set
the blink interval in your EEP I think that you will need a BLINKINTERVALOFF
as well as a BLINKINTERVALON.
John
-----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Bernard Lis Sent: Sunday, March 13, 2005 12:51 PM To: RBG7-L Mailing List Subject: [RBG7-L] - Re: blinking
John, Where do you locate this eep? I tried putting it into forms properties in "after start" I still can't get it to blink. Bernie Lis
----- Original Message ----- From: "John Engwer" <[EMAIL PROTECTED]>
To: "RBG7-L Mailing List" <[email protected]>
Sent: Wednesday, March 09, 2005 7:02 AM
Subject: [RBG7-L] - Re: blinking
Bernie
This code works for me in one of my applications.
IF .vAMT_OWED > 0 THEN PROPERTY idAMT_OWED BLINKING 'TRUE' PROPERTY idAMT_OWED BLINKCOLOR 'red' ELSE PROPERTY idAMT_OWED BLINKING 'FALSE' ENDIF
Settings at the "Blinking tab" are: Blinking is not checked Blink interval on: 556ms Blink interval off: 556ms
John
-----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Bernard Lis Sent: Tuesday, March 08, 2005 6:14 PM To: RBG7-L Mailing List Subject: [RBG7-L] - Re: blinking
Hi Emmitt, Yes, I tried moving the visible up to top and still no blinking. My eep now looks like this:
SELECT alertflag INTO vflag FROM customer WHERE customerno=.cno IF vflag = 'Y' THEN PROPERTY CustAlert visible 'TRUE' PROPERTY CustAlert BLINKING 'TRUE' PROPERTY CustAlert BLINKINTERVALON '500' PROPERTY CustAlert BLINKCOLOR 'red' ELSE PROPERTY CustAlert visible 'False' ENDIF RETURN
I've also tried changing the interval from 2 to 20 to 200 to 500 I also tried to make it a var label instead of a static text.
Bernie Lis
----- Original Message ----- From: "Emmitt Dove" <[EMAIL PROTECTED]>
To: "RBG7-L Mailing List" <[email protected]>
Sent: Tuesday, March 08, 2005 2:05 PM
Subject: [RBG7-L] - Re: blinking
Bernie,
Have you tried setting the blinking property AFTER you make it visible?
I cannot get a static text field to blink. I have the following custom eep in "after start"
SELECT alertflag INTO vflag FROM customer WHERE customerno=.cno IF vflag = 'Y' THEN PROPERTY CustAlert BLINKINTERVALON '2' PROPERTY CustAlert BLINKCOLOR 'aqua' PROPERTY CustAlert BLINKING 'TRUE' PROPERTY CustAlert visible 'TRUE' ELSE PROPERTY CustAlert visible 'False' ENDIF RETURN
CustAlert is the component id in the static text field
I also tried setting the blinking interval in the field property
I would appreciate any help on this blinking project
Bernie Lis
Emmitt Dove Manager, DairyPak Business Systems Blue Ridge Paper Products, Inc. 40 Lindeman Drive Trumbull, CT 06611 (203) 673-2231 [EMAIL PROTECTED] [EMAIL PROTECTED]
