Project>Actions>↓
复制程式
NEXT Button>Script>On Click>↓
复制程式
if (_Show == 2) then
Paragraph.SetVisible("Paragraph2", false);
Paragraph.SetVisible("Paragraph3", true);
_Show = _Show +1;
end
if (_Show == 1) then
Paragraph.SetVisible("Paragraph1", false);
Paragraph.SetVisible("Paragraph2", true);
_Show = _Show +1;
end
if (_Show == 0) then
Paragraph.SetVisible("Paragraph1", true);
_Show = _Show +1;
end
BACK Button>Script>On Click>↓
复制程式
if (_Show == 1) then
Paragraph.SetVisible("Paragraph1", false);
_Show = _Show -1;
end
if (_Show == 2) then
Paragraph.SetVisible("Paragraph2", false);
Paragraph.SetVisible("Paragraph1", true);
_Show = _Show -1;
end
if (_Show == 3) then
Paragraph.SetVisible("Paragraph3", false);
Paragraph.SetVisible("Paragraph2", true);
_Show = _Show -1;
end