[quote:3slv3ahi]Not multilayer! Even free version gives you 3 layers.. that is like making apple pie without a crust...
OK, what I meant by "Then simply text box "Total Time: "&time" was anywhere you needed to display the "time" variable you were filling with the time-since-start number... In order to do what you are wanting you would need to put a text box like I show ("Total Time: "&time) [The "Total Time" can be changed to anything you want between the ""] You would then need a blank type box object beside your text object if you want them to write their name. HOWEVER, unless you are storing both the name and time value in webstorage or some other method the data will be gone as soon as they close the game.
I have done a tutorial on webstorage if it helps ().
A better way would be to have to player input their name somewhere before the game starts and save it to a name variable, then at finish display both variables like so: "Awsome, "&name "you lasted "&time "seconds!" and then store these to a persistent website location (several tutorials out there for this type thing).
This is what i exactly thinking for now. I will do my best to make it in my game
[quote:3slv3ahi]This is happening because Construct2 doesn't know which instance of the object you are wanting to perform actions on. You will need to "pick" the newly spawned objects and not the old ones. In order to "pick" an instance it must be referenced in the Conditions portion of the event.
An easy way off the top of my head is to put an Instance variable inside the spawned object and say call it "finished = 0", now right after your stop action after they have spawned and run their course you would add a set Instance variable action to finished=1. Now in your initial spawning Conditions you would add a (object type)-instance variable finished (doesnot) = 1 (or either = 0 your preference).
Now i solve the time problem but still i have problem with throwing object. now i change my mind i want to throw different kind of objects with that same before conditions. I think Array will solve my issue but i don't know how to use it. do you know how ?
Thank you for the information and all details that you wrote it for me. it's really helped me and i am sure that many other will see it helpful