Hi-
I'm trying to use the Flex SDK to compile the SimpleChatExample.
Here's my command line:
david@nebula-worker01:~/flashdev/afcs_sdk$ ~/flashdev/flex_sdk/bin/mxmlc -compiler.library-path+=com.adobe.afcs/libs/player10/afcs.swc com.adobe.afcs/sampleApps/SimpleChat/SimpleChatExample.mxml
Loading configuration file /home/david/flashdev/flex_sdk/frameworks/flex-config.xml
/home/david/flashdev/afcs_sdk/com.adobe.afcs/sampleApps/SimpleChat/SimpleChatExample.mxml(16): Error: Type was not found or was not a compile-time constant: SimpleChatModel.
public var chatModel:SimpleChatModel;
/home/david/flashdev/afcs_sdk/com.adobe.afcs/sampleApps/SimpleChat/SimpleChatExample.mxml(22): Error: Call to a possibly undefined method SimpleChatModel.
chatModel = new SimpleChatModel();
/home/david/flashdev/afcs_sdk/com.adobe.afcs/sampleApps/SimpleChat/SimpleChatExample.mxml(32): Error: Type was not found or was not a compile-time constant: ChatMessageDescriptor.
var cmd:ChatMessageDescriptor = new ChatMessageDescriptor();
/home/david/flashdev/afcs_sdk/com.adobe.afcs/sampleApps/SimpleChat/SimpleChatExample.mxml(32): Error: Call to a possibly undefined method ChatMessageDescriptor.
var cmd:ChatMessageDescriptor = new ChatMessageDescriptor();
Do you have any ideas why it isn't picking up SimpleChatModel and ChatMessageDescriptor from afcs.swc?
(I'm probably doing something dumb)
Thanks
David