Raybaudi Posted September 6, 2005 Posted September 6, 2005 It seems to me that this script step don't go any more to the next field of a repeating field (as it does in 7). Is this correct ?
Ugo DI LUCA Posted September 6, 2005 Posted September 6, 2005 (edited) It does Daniele, Make sure the Tab order defined is correctly set. FM8 Advanced MacOSX Tiger in case this makes a difference... Edited September 6, 2005 by Guest
Raybaudi Posted September 6, 2005 Author Posted September 6, 2005 Hi Ugo but this don't go: Set Variable [$count;Value:1] Set Field [repeating;$count] Loop Set Variable[$count;Value:$count+1] Go to Next Field Exit Loop if [$count=10] End Loop and there is only the repeating[10] field in the layout.
Raybaudi Posted September 6, 2005 Author Posted September 6, 2005 Ok I make a mistake... the right loop is: Set Variable [$count;Value:1] Set Field [repeating;$count] Loop Set Variable[$count;Value:$count+1] Go to Next Field Set Field [$count] Exit Loop if [$count=10] End Loop and this does correctly
Ugo DI LUCA Posted September 6, 2005 Posted September 6, 2005 But why loop through the fields now Daniele ? It's no more a need with FM8. Ex : Set Variable [$loop;Value:1] Loop SetField[RepField[$loop];DayName($loop)] Set Variable[$loop;$loop+1] Exit Loop If [$loop>7] End Loop
Raybaudi Posted September 6, 2005 Author Posted September 6, 2005 Yes, I knew this... But for 7 compatibilies ! BTW: Thank you as always
Ugo DI LUCA Posted September 6, 2005 Posted September 6, 2005 Yes, I knew this... But for 7 compatibilies ! BTW: Thank you as always You're welcome. Though 7 does not recognize script variables...
Recommended Posts
This topic is 7021 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now