Re: field information bails out on card 2

2005-03-18 Thread Paul Salyers
At 04:33 PM 3/18/2005, you wrote:
Try put field "L1" of card 1 into field "L1" of card 2
On Mar 18, 2005, at 4:20 PM, Paul Salyers wrote:
put field "L1" into field "L1"

Dear Rev Programmer
Thanks this worked great.
Paul Salyers
PS1 - Senior Rep.
[EMAIL PROTECTED]
Http://ps1.SoftSeven.org  

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: field information bails out on card 2

2005-03-18 Thread Phil Davis
Some thoughts (but maybe not answers):
- Is fld "L1" of card 2 "under" (covered by) some other object?
- Is the visible of fld "L1" of cd 2 set to true?
(You can check both the above conditions in the 'Application Browser', 
available in the Rev 'Tools' menu.)

- If the fields are positioned in the same spot on both cards, you could 
group the field and then place it (the group) on both cards with the 
field's 'sharedText' property set to true. That way you don't have to 
keep putting the same value into it.

Phil Davis

Paul Salyers wrote:
  Dear Rev Programmers,
I have the following line in a on openCard line. it places the version 
number on card 1 ok, no problem.

  --put item 5 of line 1 of tData into field "L1"
For card 2 I placed the above line in on openCard but the version does 
not come up. I also trues to use different versions of the below line. 
Still no go.

put field L1 into field "L1"
put field "L1" into field "L1"
put L1 into field "L1"
put "L1" into field "L1"
Both cards have a field L1
How do I get the field1 of card 2 to show up?
Also I have seen the term:
into field
and
after field
Does "into" replace the current data and "after" adds data?
Paul Salyers
PS1 - Senior Rep.
[EMAIL PROTECTED]
Http://ps1.SoftSeven.org 

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: field information bails out on card 2

2005-03-18 Thread Pat Trendler
Paul,
You could make tData a global variable instead of a local variable
global gData
on openCard
put item 5 of line 1 of gData into field "L1"
-- whatever else
end openCard
You will also need to declare the global in the script where you put the 
data into it.

If you are going to put from a fld on one card to a fld on another card:
put fld "L1" of cd 1 into fld "L1"
Does "into" replace the current data and "after" adds data?
Yes, that's right.
If fld "L1" is on a lot of cards, is part of a group with background 
behaviour (in the group's property inspector) set to true (you can have just 
one control in a group) and you want to display exactly the same data in the 
fld on each card, you can check   "share text" on the flds property 
inspector. Then whatever is put into one fld shows in all of them.(see 
sharedText property in the Dictionary)

- Original Message - 
From: "Paul Salyers" <[EMAIL PROTECTED]>
To: 
Sent: Saturday, March 19, 2005 8:20 AM
Subject: field information bails out on card 2


  Dear Rev Programmers,
I have the following line in a on openCard line. it places the version 
number on card 1 ok, no problem.

  --put item 5 of line 1 of tData into field "L1"
For card 2 I placed the above line in on openCard but the version does not 
come up. I also trues to use different versions of the below line. Still 
no go.

put field L1 into field "L1"
put field "L1" into field "L1"
put L1 into field "L1"
put "L1" into field "L1"
Both cards have a field L1
How do I get the field1 of card 2 to show up?
Also I have seen the term:
into field
and
after field
Does "into" replace the current data and "after" adds data?
Paul Salyers
PS1 - Senior Rep.
[EMAIL PROTECTED]
Http://ps1.SoftSeven.org
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution 
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: field information bails out on card 2

2005-03-18 Thread Douglas Westbrook
Try put field "L1" of card 1 into field "L1" of card 2
On Mar 18, 2005, at 4:20 PM, Paul Salyers wrote:
put field "L1" into field "L1"
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


field information bails out on card 2

2005-03-18 Thread Paul Salyers
  Dear Rev Programmers,
I have the following line in a on openCard line. it places the version 
number on card 1 ok, no problem.

  --put item 5 of line 1 of tData into field "L1"
For card 2 I placed the above line in on openCard but the version does not 
come up. I also trues to use different versions of the below line. Still no go.

put field L1 into field "L1"
put field "L1" into field "L1"
put L1 into field "L1"
put "L1" into field "L1"
Both cards have a field L1
How do I get the field1 of card 2 to show up?
Also I have seen the term:
into field
and
after field
Does "into" replace the current data and "after" adds data?
Paul Salyers
PS1 - Senior Rep.
[EMAIL PROTECTED]
Http://ps1.SoftSeven.org  

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution