I am using Starling with in a Flex app. The app is using Parsley framework and doing IOC on the views.
Starling is of corse not a regular Flash displayobject. Normally within a Parsley project if I want to dynamically inject when a view is created I will just call Configure.view(this).execute() and all is well.
I'm wondering if there is a way to inject data models dynamically into my Starling view without using Configure.view sense starling view is not a DisplayObject in the normal flash display list.
Well about an hour after I posted this question I found this solution by talking to Patrick Kulling who used to work for powerflasher / FDT and knows Parsley inside and out.
Basically you have to get an instance of the Parsley Context and and then call context.addDynamicObject like so.