• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Content Type Not Supported

Community Beginner ,
Nov 14, 2013 Nov 14, 2013

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

Views

608

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 14, 2013 Nov 14, 2013

Copy link to clipboard

Copied

Did you follow the Collaboration Builder document? http://www.adobe.com/devnet/adobeconnect/sdk-eula.html

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 14, 2013 Nov 14, 2013

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?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 14, 2013 Nov 14, 2013

Copy link to clipboard

Copied

LATEST

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>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines