[Flashcoders] Re:Problem with getting a code to work

2008-08-11 Thread Shane Deguara

Ok I have tried the advice given to me but i still am getting two different 
errors

1. Saying ## [Tweener] Error: The property 'transitions' doesn't seem to be a 
normal object property of [object ticket_1] or a registered special property.
## [Tweener] Error: The property 'frame' doesn't seem to be a normal object 
property of [object ticket_1] or a registered special property. This is an 
output error

2. the other one is still the same saying The class or interface 'MouseEvent' 
could not be loaded.function butt_ROLLOVER(e:MouseEvent):void This is a 
complier Error

Shane

_
Win a Nokia E51 with mobile Hotmail SMS alertsĀ  
http://www.livelife.ninemsn.com.au/compIntro.aspx?compId=4589___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re:Problem with getting a code to work

2008-08-11 Thread Zeh Fernando

1. Saying ## [Tweener] Error: The property 'transitions' doesn't
seem to be a normal object property of [object ticket_1] or a
registered special property. ## [Tweener] Error: The property 'frame'
doesn't seem to be a normal object property of [object ticket_1] or a
registered special property. This is an output error


The correct name are transition and _frame (on Tweener, all special 
properties start with a _, regardless of the AS version).




2. the other one is still the same saying The class or interface
'MouseEvent' could not be loaded.function
butt_ROLLOVER(e:MouseEvent):void This is a complier Error



MouseEvent is a class, you have to import it before using it.

import flash.events.MouseEvent;



Zeh
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders