struggling with for loop...

  • well dont laugh reading following lines...
    ... solved of course I assume millions of times...
    ... but somehow I dont get my feet off the "cable"...

    currently I've some lines like:

    my failed try for a for loop:

    Code
    for(	set(i,0), 
    			i LT 11, 
    			inc(i),
    			set('plugin[',get(i),'of10].visible',true);
    			);

    somehow the set or the for loop has errors...
    thanks for help
    Georg

  • you cant create string like that

    try

    Code
    for(	set(i,0), 
    			i LT 11, 
    			inc(i),
    txtadd(pname, get(i), of10);
    			set(plugin[get(pname)].visible,true);
    			);


    many thanks for your solution.

    final working loop:

    Code
    for(	set(i,0), i LT 11, inc(i),
    			txtadd(tmp1,volume-,get(i),of10);
    			set(plugin[get(tmp1)].visible,true);
    			);

    Georg

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!