I was curious if Someone could comment on the Capx or explain what these mean.
1: "Request Dialogue.xml (tag "Dialogue")"
Why does a tag have to be used here? Wouldn't the name of the XML file be enough?
2: "Load XML document from string AJAX.LastData"
Why do I need to use AJAX to load an XML? and what is LastData actually doing?
I looked it up, but don't fully understand it.
"The LastData expression can be used to access the content of the response."
3: Every 1.0/10 Seconds
"left(xml.StringValue("/chapter1/hint—/text()"),len(Text.Text)+1)"
I am not fully understanding the
"(/chapter1/hint—/text()"),len(Text.Text)+1)"
part, can somebody explain this a bit?
4: Is there a reason to have "Every 1.0/10 Seconds" instead of just having "0.1"?
I sometimes miss simple things. I don't think there is, but I may be missing something.
5: Compare two values
len(Text.Text)
=
len(xml.StringValue("/chapter1/hint—/text()"))
I don't understand the 1st value. It is seemingly getting length, but what is (Text.Text) doing?
The 2nd value is the same as in question 3. If question 3 is explained then this would be too.
I know this is getting the current value as well.
Another question. How do I just post the text all at once instead of having a typing effect that is in question 3?
I would like to use the typing effect, but in some spots I need to just have the text appear all at once.
Thanks. I know it may be a bit of a large request.
It is just if you don't know something or the lingo is a commonly used word, it is sometimes hard to look up.