Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

sFor some reason components aren't attached to the ApplicationDomain of their parent clip. I'm adding a custom component to the stage in flash and at runtime the the components parent ApplicationDomain is null. Also the ApplicationDomain of the swf with the component on it is not equal to the ApplicationDomain of the component. The reason I need it to be linked is for embedded fonts. What can I do to link the application domains?

Update:

Code in SWF frame 1:

import flash.system.ApplicationDomain;

if( myTextField.appDomain == ApplicationDomain.currentDomain )
{
    trace( "The domains are the same" );
}
else
{
    trace( "The domains are different" );
}

There is an instance of my component on the stage with an instance name of "myTextField".

Code in component:

public function get appDomain( ) : ApplicationDomain
{
    return ApplicationDomain.currentDomain;
}

The code on the stage returns "The domains are different" when I compile and run this.

Also "ApplicationDomain.currentDomain.parentDomain" is null in the component.

There is other code in the component, but nothing that would interfere with the appDomain getter.

share|improve this question
1  
Perhaps show some code? Do you load the components, or do you just place them on the stage of the same SWF, where you make your test? There's no reason the ApplicationDomains differ inside one SWF. Or do you use frames and put the components on a frame other then the rest of the code? – wvxvw Sep 25 '12 at 7:46
I'm adding the components to the stage of the swf and compiling the swf. There is no custom loading in my code. This is all in a one frame swf. – Jordan Sep 25 '12 at 16:58
1  
Ooook, then try this: in Flex SDK there's a utility called swfdump. On Unix systems: cd $FLEX_HOME/bin, then ./swfdump your.swf | grep -i "doabc" and tell us how many lines do you get. On Windows: ./swfdump your.swf > some-file.txt, open some-file.txt and search it for <DoABC> tags, and tell how many of those do you have. Do the same for <FrameLabel>. Perhaps some components have multiple frames or something like that. And post some code, please. – wvxvw Sep 25 '12 at 17:34
Doing a swf dump on the swf searching for "doabc" gives: <DoABC2 name=''> </DoABC2> Doing the same for "framelabel" gives no lines. Code to come in question. – Jordan Sep 25 '12 at 18:54
Well, then you are definitely doing something wrong in your code... or, you have embedded some SWF as bytes and then loading those bytes - otherwise there's no way that the domain won't match. – wvxvw Sep 25 '12 at 20:05
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.