ok, I've gone over all the posts I can find on here, tried to do all the steps that are listed, and for the life of me, I can't get Construct to read the XML file I'm trying to use.
I've drilled down to the simplest possible test I can do and I'm still missing something simple. My expectation is that I would see "found it" on the screen when it runs... but instead, the text still says "text" meaning no change.
Can someone please school me on whatever I'm missing?
I've imported grindmobs.xml to the project
------
my capx is this simple:
1. System (on start of layout) -> AJAX (request grindmobs.xml (tag "grindmobs")
2. AJAX (on "grindmobs" completed) -> XML (Load XML document from string "AJAX.LastData")
3. XML (For each node "bestiary") -> Text (Set text to "found it"
------
And here is the XML file:
<?xml version="1.0"?>
<bestiary>
<enemy>
<name>Goblin</name>
<hp>50</hp>
</enemy>
<enemy>
<name>Big Goblin</name>
<hp>75</hp>
</enemy>
</bestiary>