Yeah, a screenshot of the events would definitely help, because I don't understand what exactly the problem is. Or even better if you could share your project file.
What information do you want to save?
Develop games in your browser. Powerful, performant & highly capable.
Posted an idea on the Suggestions platform:
construct3-21h2.ideas.aha.io/ideas/C321H2-I-283
We've asked Ashley about this just a few days ago:
construct.net/en/forum/construct-3/how-do-i-8/create-hierarchy-tilemap-in-168930
Use "Write" actions of the NWJS object.
I can think of two ways to do this -
1. Make a long sprite. Don't change its width. Instead, put a mask sprite with Destination Out blend mode on top of it to "cut off" the part of the laser beam which should be invisible.
2. Use a TiledBackground object. You can animate it with events, see this example:
dropbox.com/s/ja8ator97sskcur/AnimatedTB2.c3p
Pick a note instance, corresponding to the pressed key. Add another condition checking if the note is visible.
You can simply pick the notes which correspond to the current difficulty.
I don't know your project, but it may look something like this:
On Start Of Layout: Note compare variable Difficulty=CurrentDifficulty .. Note set visible Note compare variable Difficulty≠CurrentDifficulty .. Note set invisible On Key X pressed: Note is visible ... Play audio
There are CORS proxies you can try. For example, this URL works for me even in preview:
https://api.allorigins.win/raw?url=https://pastebin.com/raw/NC33t4ZB
(I don't know if there may be any problems with using this proxy site)
The trick is to process the array in reverse order - from (Array.width-1) to 0
I used pastebin in Construct 2 project without any issues. I think the problem is with preview, it should work in the exported game.
Try changing "Sampling" parameter in project properties. If this doesn't work - use TiledBackground object instead of the sprite.
CORS is a very common problem, try searching this forum for solutions. You may need to export your game and upload to a website to test.
And also don't use square brackets [] in your own custom tags if you have BBcode in text. You can use curly ones - {}
What exactly do you want to know?
The text file is loaded into a string variable. Then a random line is extracted using tokenat and tokencount expression, you can find them in the documentation.