Copy link to clipboard
Copied
I created a custom pod in Flash Builder 4.5 - I am using Brightcove to load videos. But whenever I load the zip file of my bin-release files from the flex project I get "Content Type Not Supported" even though I have renamed an index swf and/or index.html file. There are so little warnings in Connect I need more help identifying possible pitfalls.
Todd
Copy link to clipboard
Copied
Did you follow the Collaboration Builder document? http://www.adobe.com/devnet/adobeconnect/sdk-eula.html
Copy link to clipboard
Copied
Oh yeah, I did forget that I had to build with Flex Framework 3.5 - 4.5 has been out forever, is Adobe ever going to let us use the latest and greatest of Flex or are they scrapping it for HTML 5?
Copy link to clipboard
Copied
Hmmm, still running into an issue. I have the libs in my folder. I converted everything to mx and compiling in 3.6 framework, which has worked in the past. And still getting an error.
Here is the portion of code that is for the user role being changed and the components I have in my piece:
protected function syncConnector_rollChangedHandler(event:SyncSwfEvent):void
{
switch (connector.role)
{
case SyncConnector.k_HOST:
{
bcp = new BrightcovePlayer(null, 2546469775001)
container.addChild(bcp);
bcp.x = 50;
bcp.y=200;
bcp.addEventListener ("templateLoaded", templateLoaded);
break;
}
default:
{
bcp = new BrightcovePlayer(null, 75826530001)
container.addChild(bcp);
bcp.x = 50;
bcp.y=200;
bcp.addEventListener ("templateLoaded", templateLoaded);
break;
}
}
}
]]>
</mx:Script>
<!-- Place non-visual elements (e.g., services, value objects) here -->
<syncswf:SyncConnector id="connector"
roleChanged="syncConnector_rollChangedHandler(event)"/>
<!--<syncswf:ConnectionEmulator bSyncConnector="{connector}"/>
-->
<mx:Canvas id="container"/>
<mx:TextArea id="displayTest">
</mx:TextArea>
<mx:UIComponent id="uic" x="314" y="255"/>
<mx:DataGrid id="videoList" x="211" y="10" width="706" height="237" >
</mx:DataGrid>