View Single Post
  #2  
Unread 09-25-2010, 12:09 AM
EQAditu's Avatar
EQAditu EQAditu is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Permafrost
Posts: 256
Default

Your syntax looks incorrect. And looking at it a second time, needlessly complicated.

I'm not exactly sure what your code wants to do... but I'm guessing this is more what you want.

Parent.Parent.MakeLarge.Press=Parent.Parent.MakeLarge.LargeReady

This would be exactly the same as:
Parent.Parent.MakeLarge.Press=Parent.Parent.MakeLarge.LargeReady ? true : false

Synax:
ValueToBeAssigned=BooleanValue ? ValueIfBooleanTrue : ValueIfBooleanFalse
Reply With Quote