GLaDOS9000's Forum Posts

  • 8 posts
  • Solved my own problem...which I found out was a stupid mistake....

    I re-read the manual on picking instances and on how events work over and over and eventually I realized I wasn't resetting the picked instances between sub-events like I needed to. I added in some pick all events in between and now it works! ^_^

  • Come on guys I need this for a project :/

  • So I have this application I've made that displays data from an XML file on stickynotes on a scrollable bulletinboard. When the stickynotes are created, one is made for each node in the xml, and they're each assigned different nodes to display. When doubleclicked, they expand and show additional information. They can be closed by doubleclicking again. I'm trying to make it so that when you try to open a note when one is already open it closes the other one then opens the one you clicked. I can't get this to work. It seems that it's not picking the right instance when I tell it to.

    EDIT

    I fixed it...

  • Thanks. Though I've actually resolved the problem I was having by myself.... I'll probably hit another though before the end of the day.

  • Sorry for this random reply but I can't create a new thread on the forums, it gives something like internal server error 500

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • This doesn't seem to work for me... :/

    I'm using google chrome, most things work with it....

  • I can but I don't think it'll be of any use....

  • So I've been having a really hard time with xml too, and I've tried all the stuff on this page including what zedden did and I just can't get it to show up.

    I'm using ajax to load a file, then having an XML object load AJAX.LastData, and the text object display XML.StringValue("info").

    Here's my XML:

    <?xml version="1.0" encoding="ISO-8859-1"?>

    <info>HELLOWORLD</info>

    And before you ask:

    Yes, ajax is loading it, I can put AJAX.LastData in the text object and I get my xml back.

    Yes, I have XML set to global and in the layout.

    Yes, I've tried putting the XML directly in to no avail.

    Thanks in advance.

    ----EDIT----

    Ok I posted this a bit too soon. After messing with my stuff I managed to get the error: Extra content at the end of the document

    Do I need a closing tag for xml files?

    ----EDIT----

    Ok I solved my own problem. In XML you need to have one root node in which everything resides. I didn't know this before. Hopefully this post will at least help someone else with the same problem.

  • 8 posts