Geurge: Unidentified Bug???

Please use this part to report bugs & errors, ask questions & "How to..."
Post Reply
User avatar
Mads Juul
Posts: 3992
Joined: 02 May 2007, 19:18
Location: Viborg,Denmark
Contact:

Geurge: Unidentified Bug???

Post by Mads Juul »

This little script should alert the layerInfo for the first 10 layers
(made to demonstrate the bug)
but it doesnt
am I doing something wrong???
-mads

Code: Select all

pos = 0
	
	WHILE (pos<10)
		
		tv_LayerGetID pos
		id = result
		
		tv_layerInfo id
		
		tv_warn "Pos:"pos "ID:"result
		
		pos = pos+1
	END
Manuel
Posts: 673
Joined: 09 Feb 2006, 14:09
Location: France-Moselle

Post by Manuel »

All the scripts must begin with a param command :
Example : Param none
Manuel
User avatar
Mads Juul
Posts: 3992
Joined: 02 May 2007, 19:18
Location: Viborg,Denmark
Contact:

Post by Mads Juul »

I will explain more clear::

on a new project with 3 layers named "mads1" "mads2" "mads3"

Code: Select all


Param none
pos = 0
   
WHILE (pos<4)

tv_LayerGetID pos
id = result

tv_layerInfo id

Parse result display position opacity name type 

tv_warn  name


pos = pos+1
END 

I get thew 4 warning
""
""
""
"mads3"

WHere it should be
"mads1"
"mads2"
"mads3"
""

is this a bug?

-mads
User avatar
Hervé
Site Admin
Posts: 3490
Joined: 08 Feb 2006, 17:00
Location: Metz France
Contact:

Post by Hervé »

Hi mads

Your script work fine here !
Post Reply