Thanks for the help, seraph0x
seraph0x wrote:
If your pages are named page1#, page2#, page3#, the correct range() command is range(1,3,'page').
I try this:
Code: Select all
start#page(
'text',
pic("ash013.jpg"),
delay(2sec, range(2,3,'page'))
);
page2#page(
'text',
pic("ash014.jpg"),
go(page3#)
);
page3#page(
'text',
pic("ash015.jpg"),
delay(10sec, page4#,style:secret)
);
And get this error:
Error: Action not found: null
What I wrong?
seraph0x wrote:
Code: Select all
page1#page("blah", ...)
must(page2#, page1#)
page2# will only be considered for a range() command if page1# is set.
Let me see.
must(page2#, page1#)
The first item (page2#), depends the second item (page1#)?
I´m confusing
In PCM, we have this case:
Code: Select all
[Action 1]
bla bla
.range 2 3
[Action 2]
bla bla
.must 3
.range 10 10
Page 3 must be load first. In the second time, Page 2 can be loaded too.
To this works in Nyx, I get this?
Code: Select all
page1#page("blah", ...)
must(page2#, page3#)
range (2,3)
page2#page("blah", ...)
range (10)
PCM version = must command in page 2
Nyx version = must command in page 1 (with the range command)
If Page 2 need page 3 AND page 4, I can use this?
seraph0x wrote:A word of warning: Nyx works really well for simple multiple choice (i.e. the stuff you can do with the Visual tab), anything else will be fairly tedious. Then again, it's probably about as tedious as developing for PCM.
yeah. But I like PCM code
If I dominated Nyx code, can make flash teases in notepad and just past in script tab.