 Crazy6a3er
		
			Crazy6a3er
		
		
		
		
		
		
		
		
	
			01-21-2017 09:20 AM
Simple question: How to create "Page" property node with "PageVis"? I checked through the property node of tab control but I still can't find it.
Solved! Go to Solution.
 GerdW
		
			GerdW
		
		
		 
		
		
		
		
		
	
			01-21-2017 10:14 AM - edited 01-21-2017 10:16 AM
Hi Crazy,
the property node in your image clearly shows the name "pages[]" and gives you an array of references.
Then use an indexing operation to get the reference for each page…
To get the "Page" property node inside to FOR loop you place a generic property node inside the loop and connect it with a wire to the "pages[]" property.
Have you tried this simple wiring operation?
01-21-2017 10:27 AM
Greetings, GerdW.
I tried it and for some reason, it really works! Can you explain it to me why do I need to put FOR loop? If I don't put FOR loop, it will show an error.
 RavensFan
		
			RavensFan
		
		
		 
		
		
		
		
		
	
			01-21-2017 10:33 AM - edited 01-21-2017 10:54 AM
The For Loop has an autoindexing tunnel so it indexes out each page element from the array of pages that comes ouf the the Pages[] property node.
01-21-2017 10:45 AM
Many thanks for the explanation, RavensFan! Now, it really makes sense.