Avatar

Level 2

I hooked up the source for the FP9 afcs.swc, and stepped through the afcs code.  It turns out that it is a permissions problem.

I get to the following code in FilePublisher.as when I click on the upload button

public function browse(p_itemID:String, p_typeFilter:Array=null):void
        {
            // Don't open this up if the user doesn't  have upload permissions.
            if(!_model.canIUpload(_groupName)) {
                showAlertMessage(_lm.getString("You do not have sufficient permission to perform the upload operation."));
                return;   
            }

...

the line  if(!_model.canIUpload(_groupName)) {

is returning false.  showAlertMessage(_lm.getString("You do not have sufficient permission to perform the upload operation.")); is not showing an Alert box for me for some reason.

I'm stumped why I don't have permission to upload, I have 'Auto-Promote Users' checked for the room.  What do I need to do to allow guest users to upload?

thanks

Mark