| View previous topic :: View next topic |
| Author |
Message |
steveb
Joined: 10 Oct 2005 Posts: 11
|
Posted: Mon Apr 24, 2006 9:14 pm Post subject: #format only keeps one argument |
|
|
The help for #format implies that it will take up to 20 arguments, but I'm only seeing the first argument get passed the formatting.
| Code: | #format {test}{%l}{The Quick Brown Fox}
#FORMAT: $test IS NOW SET TO {the} |
Am I just missing something?
Steve |
|
| Back to top |
|
 |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3274
|
Posted: Tue Apr 25, 2006 8:47 am Post subject: |
|
|
Use:
#format {test}{%l}{{The Quick Brown Fox}}
or:
#format {test} {%l %l %l %l} {The Quick Brown Fox}
or:
#format {test} {%l %l %l %l} {{The} {Quick} {Brown} {Fox}}
It's a bit odd, but would mess up too many scripts to fix it I guess. |
|
| Back to top |
|
 |
|