Is there a way to do this. If I use a scale operator I can only scale over the 100% range. I've tried using a particle script operator with the following code but this does not work. My lack of knowledge when using scripting ! 

Code:
on ChannelsUsed pCont do ( pCont.useScale = true ) on Init pCont do ( ) on Proceed pCont do ( count = pCont.NumParticles() for i in 1 to count do ( pCont.particleIndex = i pCont.particleScale = Random (50 100) ) ) on Release pCont do ( )
Comment