Hi Glen,

I have a custom property called connectorName that currently has the
following contents

darpa
nrl
hsecurity

I am trying to figure out how I can delete one or more than one of the
contents via script.

No need for an extra stack ;-)

on mouseup
   put the connectorName of xyz into tempCP
   delete line 1 of tempCP
   ## delete whatever you want...
   set the connectorName of xyz to tempCP
end mouseup

Also, how to add new content via script.

No need for an extra stack ;-)

on mouseup
   put the connectorName of xyz into tempCP
   if tempCP = empty then
       put "New line" into tempCP
   else
      put CR & "New line" after tempCP
  end if
   set the connectorName of xyz to tempCP
end mouseup

Is there an example stack available?

See above.

thanks,

You're welcome.

Glen

Best

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to