Search the web
Sign In
New User? Sign Up
brightcove-dev · NEW BC Forums: http://tinyurl.com/7zrqce
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4070 - 4105 of 4279   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#4105 From: Colin Holgate <coiin@...>
Date: Tue Jan 6, 2009 8:00 pm
Subject: Re: how to talk to BC3 bcPlayer
colinholgate
Offline Offline
Send Email Send Email
 

On Jan 6, 2009, at 2:44 PM, Brian Deitte wrote:

What are the usual bcPlayer methods that you are trying to call?  You should call getModule(), naming the module you'd like to access, and then call methods and properties on this object.  See the player API for more information: http://help.brightcove.com/developer/docs/playerapi/player-API.cfm 

Thanks, I did track that down. What to search for isn't obvious when you're used to the BC2 bcPlayer contains everything approach. 

#4104 From: Brian Deitte <bdeitte@...>
Date: Tue Jan 6, 2009 7:55 pm
Subject: RE: Re: Trying to delete videos - I'm getting: "error": "UNKNOWN_METHOD","code":301
bdeitte
Offline Offline
Send Email Send Email
 
Hi Joel, I asked someone else here about it, and this was the response:
 
The error they are getting is because they are passing each parameter seperatly. I think it would work if they only pass one url variable named json with the json-rpc object as the value.


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of Joel Fiser
Sent: Wednesday, December 31, 2008 12:59 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: Trying to delete videos - I'm getting: "error": "UNKNOWN_METHOD","code":301

OK - I wasn't using POST before - but now I am.
Here's the func:

private function delClip(myClipObj:Object){
    var loader:URLLoader;
    var url:String = "http://api.brightcove.com/services/post"
    var myRequest:URLRequest = new URLRequest(url);
   
    var myVars:URLVariables = new URLVariables();
     myVars.command = "delete_video";
    myVars.video_id = myClipObj.id;
    myVars.cascade = 1;
    myVars.token = "myValidSecretToken";
    myRequest.data = myVars;
    myRequest.method = URLRequestMethod.POST;
   
    try {      &nbs p ;    
        navigateToURL(myRequest); // I also tried sendToUrl and using a Loader
    }
    catch (err:Error) {
        view.displayTxt("dumpTxt", err.message, null);
    }
}


Now I get the following error message:

{"error": {"name":"MissingJSONError","message":"Could not find JSON-RPC.","code":211}, "result": null, "id": null}



--- In brightcove-dev@yahoogroups.com, "Joel Fiser" <jfiser42@...> wrote:
>
> Here's the string I'm pasting directly into the browser. Of course I
> don't include my actual token below.
>
> http://api.brightcove.com/services/library?command=delete_video&video_id=16927323&cascade=true&token=myValidSecretToken
>


#4103 From: Brian Deitte <bdeitte@...>
Date: Tue Jan 6, 2009 7:44 pm
Subject: RE: how to talk to BC3 bcPlayer
bdeitte
Offline Offline
Send Email Send Email
 
What are the usual bcPlayer methods that you are trying to call?  You should call getModule(), naming the module you'd like to access, and then call methods and properties on this object.  See the player API for more information: http://help.brightcove.com/developer/docs/playerapi/player-API.cfm 
 

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of Colin Holgate
Sent: Monday, January 05, 2009 3:44 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] how to talk to BC3 bcPlayer

In my own FLA I have BC3 code, that works ok. If I check the value of bcPlayer it shows as
Object [FederatedFactory]. Any attempt to call the usual bcPlayer methods fails. How do I call
the bcPlayer methods?


#4102 From: "Colin Holgate" <coiin@...>
Date: Mon Jan 5, 2009 8:44 pm
Subject: how to talk to BC3 bcPlayer
colinholgate
Offline Offline
Send Email Send Email
 
In my own FLA I have BC3 code, that works ok. If I check the value of bcPlayer
it shows as
Object [FederatedFactory]. Any attempt to call the usual bcPlayer methods fails.
How do I call
the bcPlayer methods?

#4101 From: "Joel Fiser" <jfiser42@...>
Date: Wed Dec 31, 2008 5:59 pm
Subject: Re: Trying to delete videos - I'm getting: "error": "UNKNOWN_METHOD","code":301
jfiser42
Offline Offline
Send Email Send Email
 
OK - I wasn't using POST before - but now I am.
Here's the func:

private function delClip(myClipObj:Object){
    var loader:URLLoader;
    var url:String = "http://api.brightcove.com/services/post"
    var myRequest:URLRequest = new URLRequest(url);
   
    var myVars:URLVariables = new URLVariables();
    myVars.command = "delete_video";
    myVars.video_id = myClipObj.id;
    myVars.cascade = 1;
    myVars.token = "myValidSecretToken";
    myRequest.data = myVars;
    myRequest.method = URLRequestMethod.POST;
   
    try {           
        navigateToURL(myRequest); // I also tried sendToUrl and using a Loader
    }
    catch (err:Error) {
        view.displayTxt("dumpTxt", err.message, null);
    }
}


Now I get the following error message:

{"error": {"name":"MissingJSONError","message":"Could not find JSON-RPC.","code":211}, "result": null, "id": null}



--- In brightcove-dev@yahoogroups.com, "Joel Fiser" <jfiser42@...> wrote:
>
> Here's the string I'm pasting directly into the browser. Of course I
> don't include my actual token below.
>
> http://api.brightcove.com/services/library?command=delete_video&video_id=16927323&cascade=true&token=myValidSecretToken
>

#4100 From: "Joel Fiser" <jfiser42@...>
Date: Tue Dec 30, 2008 7:16 pm
Subject: Trying to delete videos - I'm getting: "error": "UNKNOWN_METHOD","code":301
jfiser42
Offline Offline
Send Email Send Email
 
Here's the string I'm pasting directly into the browser. Of course I
don't include my actual token below.

http://api.brightcove.com/services/library?command=delete_video&video_id=1692732\
3&cascade=true&token=myValidSecretToken

#4099 From: g.jesmer@...
Date: Tue Dec 30, 2008 12:42 pm
Subject: RE: Digest Number 1043
grahambo420
Offline Offline
Send Email Send Email
 
I am away from the office for the holidays. I will be back on December 31st. I
will reply to your e-mail as soon as I can. Thank you and enjoy the holiday
season.

#4098 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 29, 2008 9:07 pm
Subject: RE: Re: Events to listen for in order to show a "post frame" before next video starts
bdeitte
Offline Offline
Send Email Send Email
 
It's been suggested that you shut off automatic advance in the list and then advance to the next in the list when postroll is completed. 
 
So you need to listen for the videoComplete event, and within that listener do the following things:
 
1. Block the playlist area with an overlay so that no other videos can be clicked on.
2. Check if automaticAdvance is on through the API
3. If automaticAdvance was on, turn off automaticAdvance through the API
4. Show postframe for X seconds
5. Hide postframe
6. Unblock the playlist area
7. If automaticAdvance was on, turn automaticAdvance back on through the API
8. If automaticAdvance was on, advance to the next video through the API


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of Brian Deitte
Sent: Monday, December 29, 2008 3:59 PM
To: brightcove-dev@yahoogroups.com
Subject: RE: [brightcove-dev] Re: Events to listen for in order to show a "post frame" before next video starts

Thanks for the details.  I've heard of ScanScout, but I wasn't sure exactly how you were using Brightcove.  I wish I could help here, but I'm scratching my head at the moment.  It could work if you could programmatically assign a postroll ad to a video (which isn't possible) or if there was a way to pause a video before it started and then unpause it again (which I don't think is possible).  I'm asking around to see if anybody else has an idea on this.  -Brian
 

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of marathonburke
Sent: Monday, December 29, 2008 3:33 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: Events to listen for in order to show a "post frame" before next video starts

Brian,
We're an ad network with an AdSwf that delivers overlay ads during
the stream. We are loaded when the video player is loaded and on the
start of each content (whether manually started or automatically in
started from playlist rotation), we start serving overlays.

At the end of a video we want to show our postframe. However, if the
site's player is set up to auto-advance, we need to halt that auto-
advance while our postframe is showing.

So to answer your questions:
* The adSwf has 2 roles: show overlays during the video and a
postframe after completion (but not let the next video begin)
* We do not control the player, so we have to work around auto-
advance that might exist for the player

--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...>
wrote:
>
> How is the ad SWF triggered? ad SWFs are supposed to be triggered
at specific ad policy events. For instance, an ad SWF can happen at
the postroll, as set up in the ad module. It sounds to me like this
ad SWF just stays around?
>
> Can you just use "videoComplete" here, or does it have to be when
the video is changed?
>
> If it helps, you can also turn off (and then back on)
automaticAdvance through the API. It is a property of List and
TileList.
> ________________________________
> From: brightcove-dev@yahoogroups.com [mailto:brightcove-
dev@yahoogroups.com] On Behalf Of marathonburke
> Sent: Monday, December 29, 2008 2:46 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] Re: Events to listen for in order to show
a "post frame" before next video starts
>
>
> This is happening in an AdSwf.
>
> I was going to use "videoChange" and when that happens, I'd do the
> following:
> 1) VideoChange is thrown
> 2) Pause Video
> 3) Show Postframe for X seconds
> 4) Hide Postframe
> 5) Resume Video
>
> Not the most elegant, but it would do the trick.
>
> However, I saw that "videoChange" event has been removed?
> http://help.brightcove.com/publisher/docs/intro/known-
issues.cfm#BC14359
>


#4097 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 29, 2008 8:58 pm
Subject: RE: Re: Events to listen for in order to show a "post frame" before next video starts
bdeitte
Offline Offline
Send Email Send Email
 
Thanks for the details.  I've heard of ScanScout, but I wasn't sure exactly how you were using Brightcove.  I wish I could help here, but I'm scratching my head at the moment.  It could work if you could programmatically assign a postroll ad to a video (which isn't possible) or if there was a way to pause a video before it started and then unpause it again (which I don't think is possible).  I'm asking around to see if anybody else has an idea on this.  -Brian
 

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of marathonburke
Sent: Monday, December 29, 2008 3:33 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: Events to listen for in order to show a "post frame" before next video starts

Brian,
We're an ad network with an AdSwf that delivers overlay ads during
the stream. We are loaded when the video player is loaded and on the
start of each content (whether manually started or automatically in
started from playlist rotation), we start serving overlays.

At the end of a video we want to show our postframe. However, if the
site's player is set up to auto-advance, we need to halt that auto-
advance while our postframe is showing.

So to answer your questions:
* The adSwf has 2 roles: show overlays during the video and a
postframe after completion (but not let the next video begin)
* We do not control the player, so we have to work around auto-
advance that might exist for the player

--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...>
wrote:
>
> How is the ad SWF triggered? ad SWFs are supposed to be triggered
at specific ad policy events. For instance, an ad SWF can happen at
the postroll, as set up in the ad module. It sounds to me like this
ad SWF just stays around?
>
> Can you just use "videoComplete" here, or does it have to be when
the video is changed?
>
> If it helps, you can also turn off (and then back on)
automaticAdvance through the API. It is a property of List and
TileList.
> ________________________________
> From: brightcove-dev@yahoogroups.com [mailto:brightcove-
dev@yahoogroups.com] On Behalf Of marathonburke
> Sent: Monday, December 29, 2008 2:46 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] Re: Events to listen for in order to show
a "post frame" before next video starts
>
>
> This is happening in an AdSwf.
>
> I was going to use "videoChange" and when that happens, I'd do the
> following:
> 1) VideoChange is thrown
> 2) Pause Video
> 3) Show Postframe for X seconds
> 4) Hide Postframe
> 5) Resume Video
>
> Not the most elegant, but it would do the trick.
>
> However, I saw that "videoChange" event has been removed?
> http://help.brightcove.com/publisher/docs/intro/known-
issues.cfm#BC14359
>


#4096 From: "marathonburke" <jason@...>
Date: Mon Dec 29, 2008 8:33 pm
Subject: Re: Events to listen for in order to show a "post frame" before next video starts
marathonburke
Offline Offline
Send Email Send Email
 
Brian,
We're an ad network with an AdSwf that delivers overlay ads during
the stream. We are loaded when the video player is loaded and on the
start of each content (whether manually started or automatically in
started from playlist rotation), we start serving overlays.

At the end of a video we want to show our postframe. However, if the
site's player is set up to auto-advance, we need to halt that auto-
advance while our postframe is showing.

So to answer your questions:
* The adSwf has 2 roles: show overlays during the video and a
postframe after completion (but not let the next video begin)
* We do not control the player, so we have to work around auto-
advance that might exist for the player



--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...>
wrote:
>
> How is the ad SWF triggered?  ad SWFs are supposed to be triggered
at specific ad policy events.  For instance, an ad SWF can happen at
the postroll, as set up in the ad module.  It sounds to me like this
ad SWF just stays around?
>
> Can you just use "videoComplete" here, or does it have to be when
the video is changed?
>
> If it helps, you can also turn off (and then back on)
automaticAdvance through the API.  It is a property of List and
TileList.
> ________________________________
> From: brightcove-dev@yahoogroups.com [mailto:brightcove-
dev@yahoogroups.com] On Behalf Of marathonburke
> Sent: Monday, December 29, 2008 2:46 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] Re: Events to listen for in order to show
a "post frame" before next video starts
>
>
> This is happening in an AdSwf.
>
> I was going to use "videoChange" and when that happens, I'd do the
> following:
> 1) VideoChange is thrown
> 2) Pause Video
> 3) Show Postframe for X seconds
> 4) Hide Postframe
> 5) Resume Video
>
> Not the most elegant, but it would do the trick.
>
> However, I saw that "videoChange" event has been removed?
> http://help.brightcove.com/publisher/docs/intro/known-
issues.cfm#BC14359
>

#4095 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 29, 2008 8:15 pm
Subject: RE: Re: Events to listen for in order to show a "post frame" before next video starts
bdeitte
Offline Offline
Send Email Send Email
 
How is the ad SWF triggered?  ad SWFs are supposed to be triggered at specific ad policy events.  For instance, an ad SWF can happen at the postroll, as set up in the ad module.  It sounds to me like this ad SWF just stays around?
 
Can you just use "videoComplete" here, or does it have to be when the video is changed?
 
If it helps, you can also turn off (and then back on) automaticAdvance through the API.  It is a property of List and TileList.

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of marathonburke
Sent: Monday, December 29, 2008 2:46 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: Events to listen for in order to show a "post frame" before next video starts

This is happening in an AdSwf.

I was going to use "videoChange" and when that happens, I'd do the
following:
1) VideoChange is thrown
2) Pause Video
3) Show Postframe for X seconds
4) Hide Postframe
5) Resume Video

Not the most elegant, but it would do the trick.

However, I saw that "videoChange" event has been removed?
http://help.brightcove.com/publisher/docs/intro/known-issues.cfm#BC14359


#4094 From: "marathonburke" <jason@...>
Date: Mon Dec 29, 2008 7:45 pm
Subject: Re: Events to listen for in order to show a "post frame" before next video starts
marathonburke
Offline Offline
Send Email Send Email
 
This is happening in an AdSwf.

I was going to use "videoChange" and when that happens, I'd do the
following:
1) VideoChange is thrown
2) Pause Video
3) Show Postframe for X seconds
4) Hide Postframe
5) Resume Video

Not the most elegant, but it would do the trick.

However, I saw that "videoChange" event has been removed?
http://help.brightcove.com/publisher/docs/intro/known-issues.cfm#BC14359

#4093 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 29, 2008 7:41 pm
Subject: RE: Events to listen for in order to show a "post frame" before next video starts
bdeitte
Offline Offline
Send Email Send Email
 
Is this work being done in an ad SWF, a SWFLoader component, or outside of both of these?
 

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of marathonburke
Sent: Monday, December 29, 2008 12:43 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Events to listen for in order to show a "post frame" before next video starts

I want to show an "postframe" after the video is over and BEFORE the
next video auto-starts.

I could listen for "videoComplete", but how would one stop the next
video so that the postframe can be shown. When the postframe display
time is over, I'd want to resume the loading of the next video in the
lineup.


#4092 From: "marathonburke" <jason@...>
Date: Mon Dec 29, 2008 5:42 pm
Subject: Events to listen for in order to show a "post frame" before next video starts
marathonburke
Offline Offline
Send Email Send Email
 
I want to show an "postframe" after the video is over and BEFORE the
next video auto-starts.

I could listen for "videoComplete", but how would one stop the next
video so that the postframe can be shown. When the postframe display
time is over, I'd want to resume the loading of the next video in the
lineup.

#4091 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 22, 2008 8:35 pm
Subject: RE: getLineupById in BC3
bdeitte
Offline Offline
Send Email Send Email
 
getPlaylist() would be the correct player API.  Can you post some of the code that you tried?
 

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of fllw00
Sent: Thursday, December 11, 2008 11:03 AM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] getLineupById in BC3

Hello Everyone -

In version 2, I used getLineupById in the javascript API. What would
be the equivalent in version BC3?

I've tried getPlaylist with the onStreamStart event, but it returns a
null.

Tony


#4090 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 22, 2008 8:31 pm
Subject: RE: override the stage.align TL in AS2
bdeitte
Offline Offline
Send Email Send Email
 
If you are using Loader, try changing LoaderContext.applicationDomain.  I'm not positive if this affects stage values, though.  -Brian


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of milorand
Sent: Thursday, December 18, 2008 12:28 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] override the stage.align TL in AS2

I have a container movie that has a stage.align = "T". when i load the
brightcove player into this container, the entire site, including
other embedded swfs all shift to the stage.align = "TL" and wont
restore after. how do i override the default stage.align value that is
coming from the player?


#4089 From: Brian Deitte <bdeitte@...>
Date: Mon Dec 22, 2008 8:27 pm
Subject: RE: Embedding Brightcove player using flex.
bdeitte
Offline Offline
Send Email Send Email
 
I've never seen someone instantiate a UIComponent (not a subclass) and call addChild() on it.  Does this work for other UI elements?  Maybe the x and y values need to be set on UIComponent or player when loaded this way?  Some alternatives/workarounds would be to create a subclass of BrightcovePlayer that implements IUIComponent or load in a BrightcovePlayer using SWFLoader.  -Brian


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of anay_nayak
Sent: Friday, December 19, 2008 12:17 AM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Embedding Brightcove player using flex.

We have been trying to embed the Brightcove player inside a custom flex component. The
brightcove player however has positioning issues.

The wrapper flex component is pretty simple with just the following code:

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" initialize="initApp();"
height="340" width="518" backgroundGradientColors="[#FF0000, #FF0000]"
usePreloader="false">
<mx:Script><![CDATA[
import mx.core.UIComponent;
private var mPlayer:Object;
private var mContent:Object;
private var mExp:Object;
private var player:BrightcovePlayer;
public function initApp():void {
player = new BrightcovePlayer();
player.x = 0;
player.y = 0;
player.addEventListener("templateLoaded", templateLoaded);
var component:UIComponent = new UIComponent();
component.addChild(player);
this.addChild(component);
}
public function templateLoaded(evt:Event):void {
mPlayer = player.getModule("videoPlayer");
mContent = player.getModule("content");
mExp = player.getModule("experience");
mExp.addEventListener("contentLoad", contentLoad);
}
public function contentLoad(evt:Event):void {
var clipId:String = "someclipid";
mPlayer.cueVideo(clipId, "referenceId");
}

]]></mx:Script>
</mx:Application>

However the generated swf has the brightcove player at an offset of around 200px. Giving
a negative offset temporarily solves the problem but on trying the fullscreen option if the
video has a logo, the logo shifts off the screen.

NB: The Brightcove player class above is the default one provided by
studio3.brightcove.com site.

Any help would be greatly appreciated.


#4088 From: "cnetjowensbysandifer" <cnetjowensbysandifer@...>
Date: Mon Dec 22, 2008 3:59 pm
Subject: media id
cnetjowensby...
Offline Offline
Send Email Send Email
 
I have a player that loads multiple "videos".  I am listening for the
MediaLoad javascript event exposed in the brightcove api to determine
when a new video is loaded into the player. Like this...
callFlash("addEventListener", "mediaLoad", "onMediaLoad");

I would like to determine the media or video id when it is loaded.  It
doesn't seem like any of the information available in the DTO's is
what I am really looking for.  Possibly, the videoIds in the LineupDTO
(like in this post:
http://tech.groups.yahoo.com/group/brightcove-dev/message/3634).  Any
one know if there is a simpler way to get the media id after the media
event has been fired?

#4087 From: "anay_nayak" <anayak007@...>
Date: Fri Dec 19, 2008 5:17 am
Subject: Embedding Brightcove player using flex.
anay_nayak
Offline Offline
Send Email Send Email
 
We have been trying to embed the Brightcove player inside a custom flex
component. The
brightcove player however has positioning issues.

The wrapper flex component is pretty simple with just the following code:

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
initialize="initApp();"
height="340" width="518" backgroundGradientColors="[#FF0000, #FF0000]"
usePreloader="false">
     <mx:Script><![CDATA[
         import mx.core.UIComponent;
         private var mPlayer:Object;
         private var mContent:Object;
         private var mExp:Object;
         private var player:BrightcovePlayer;
         public function initApp():void {
             player = new BrightcovePlayer();
             player.x = 0;
             player.y = 0;
             player.addEventListener("templateLoaded", templateLoaded);
             var component:UIComponent = new UIComponent();
             component.addChild(player);
             this.addChild(component);
         }
         public function templateLoaded(evt:Event):void {
             mPlayer = player.getModule("videoPlayer");
             mContent = player.getModule("content");
             mExp = player.getModule("experience");
             mExp.addEventListener("contentLoad", contentLoad);
         }
         public function contentLoad(evt:Event):void {
             var clipId:String = "someclipid";
             mPlayer.cueVideo(clipId, "referenceId");
         }

         ]]></mx:Script>
</mx:Application>

However  the generated swf has the brightcove player at an offset of around
200px. Giving
a negative offset temporarily solves the problem but on trying the fullscreen
option if the
video has a logo, the logo shifts off the screen.

NB: The Brightcove player class above is the default one provided by
studio3.brightcove.com site.

Any help would be greatly appreciated.

#4084 From: "milorand" <milo@...>
Date: Thu Dec 18, 2008 5:28 pm
Subject: override the stage.align TL in AS2
milorand
Offline Offline
Send Email Send Email
 
I have a container movie that has a stage.align = "T". when i load the
brightcove player into this container, the entire site, including
other embedded swfs all shift to the stage.align = "TL" and wont
restore after. how do i override the default stage.align value that is
coming from the player?

#4081 From: Brian Deitte <bdeitte@...>
Date: Fri Dec 12, 2008 10:11 pm
Subject: RE: Re: ad translator to display swf companion banner w/built in clickthru not working
bdeitte
Offline Offline
Send Email Send Email
 
This is the XML before it's processed... can you trace out the actual XML that's being sent?  If you use trace() and flashlog.txt, you can see it.  This would really help figure out what's going on with it.  -Brian


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of jrinco11
Sent: Thursday, December 11, 2008 12:18 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: ad translator to display swf companion banner w/built in clickthru not working

I don't have a working case, as each time the clickthru for the swf
(when it has the clickthru in the querystring) never works.

and what I have below is XML that I'm sending to setAdXML().

--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...> wrote:
>
> Can you send the XML that you are sending to setAdXML() in the
working and non-working case? Thanks.
>
> ________________________________
> From: brightcove-dev@yahoogroups.com
[mailto:brightcove-dev@yahoogroups.com] On Behalf Of jrinco11
> Sent: Tuesday, December 09, 2008 1:16 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] ad translator to display swf companion
banner w/built in clickthru not working
>
>
> hey ya'll -- so I am using the XML as format to connect to a 3rd party
> adserver to display ads (preroll video and companion banners), and I'm
> having issues getting swf clickthrus to work for the companion banners.
>
> The banner displays just fine, and is clickable, but the url it goes
> to is undefined. The swf is setup such that the clickthru url is
> grabbed from the querystring in it's own url, so for example the swf
> would be
> "http://www.urlToBanner.com/banner.swf?clickthru=http://url.com" and
> the swf itself has a "on release{getURL(_level0.clickthru, "_blank");}"
>
> using the xml ad format for the ad translation layer, I'm trying it
> like this:
>
> var lcXML:String = "<SynchedBanner468x60 duration=\"" + duration +
> "\" trackStartURLs=\""+trackStartURLs+"\"
> trackMidURLs=\""+trackMidURLs+"\" trackEndURLs=\""+trackEndURLs+"\" >" +
> "<videoURL>" + videoURL + "</videoURL>" +
> "<videoClickURL>" + videoClickURL + "</videoClickURL>" +
> "<expandedBannerURL>" + expandedBannerURL + "</expandedBannerURL>";
> if (bannerClickURL != undefined) {
> lcXML+= "<expandedBannerClickURL>" + bannerClickURL +
> "</expandedBannerClickURL>";
> }
>
> Before, I did not have that if statement, and it would 'assign'
> undefined as the URL (bannerClickURL is undefined for such swfs). I
> thought that if not sending an <expandedBannerClickURL> the it
> wouldn't try to assign it and it would just use the internal
> clickthru, but I guess not.
>
> However, if I use a swf that has a URL hard coded (such as
> getURL{"http://www.google.com", _blank), and I have the if statement
> above, the clickthru works.
>
> Any suggestions? Perhaps I'm missing something obvious?
>


#4080 From: "dan_miller_nyc" <dan_miller_nyc@...>
Date: Fri Dec 12, 2008 3:49 pm
Subject: Re: Consumer Media - How can I get the id up newly uploaded media?
dan_miller_nyc
Offline Offline
Send Email Send Email
 
I also am interested in the same exact thing. If you come across a
solution or someone answers you, I would greatly appreciate it to hear
and learn about it too.

Thanks.

#4079 From: "jrinco11" <jrinco11@...>
Date: Thu Dec 11, 2008 5:17 pm
Subject: Re: ad translator to display swf companion banner w/built in clickthru not working
jrinco11
Offline Offline
Send Email Send Email
 
I don't have a working case, as each time the clickthru for the swf
(when it has the clickthru in the querystring) never works.

and what I have below is XML that I'm sending to setAdXML().


--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...> wrote:
>
> Can you send the XML that you are sending to setAdXML() in the
working and non-working case?  Thanks.
>
> ________________________________
> From: brightcove-dev@yahoogroups.com
[mailto:brightcove-dev@yahoogroups.com] On Behalf Of jrinco11
> Sent: Tuesday, December 09, 2008 1:16 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] ad translator to display swf companion
banner w/built in clickthru not working
>
>
> hey ya'll -- so I am using the XML as format to connect to a 3rd party
> adserver to display ads (preroll video and companion banners), and I'm
> having issues getting swf clickthrus to work for the companion banners.
>
> The banner displays just fine, and is clickable, but the url it goes
> to is undefined. The swf is setup such that the clickthru url is
> grabbed from the querystring in it's own url, so for example the swf
> would be
> "http://www.urlToBanner.com/banner.swf?clickthru=http://url.com" and
> the swf itself has a "on release{getURL(_level0.clickthru, "_blank");}"
>
> using the xml ad format for the ad translation layer, I'm trying it
> like this:
>
> var lcXML:String = "<SynchedBanner468x60 duration=\"" + duration +
> "\" trackStartURLs=\""+trackStartURLs+"\"
> trackMidURLs=\""+trackMidURLs+"\" trackEndURLs=\""+trackEndURLs+"\" >" +
> "<videoURL>" + videoURL + "</videoURL>" +
> "<videoClickURL>" + videoClickURL + "</videoClickURL>" +
> "<expandedBannerURL>" + expandedBannerURL + "</expandedBannerURL>";
> if (bannerClickURL != undefined) {
> lcXML+= "<expandedBannerClickURL>" + bannerClickURL +
> "</expandedBannerClickURL>";
> }
>
> Before, I did not have that if statement, and it would 'assign'
> undefined as the URL (bannerClickURL is undefined for such swfs). I
> thought that if not sending an <expandedBannerClickURL> the it
> wouldn't try to assign it and it would just use the internal
> clickthru, but I guess not.
>
> However, if I use a swf that has a URL hard coded (such as
> getURL{"http://www.google.com", _blank), and I have the if statement
> above, the clickthru works.
>
> Any suggestions? Perhaps I'm missing something obvious?
>

#4076 From: Crystal West <cwest@...>
Date: Thu Dec 11, 2008 3:29 pm
Subject: RE: Re: AdSWF: How to catch fullscreen events from within AdSwf
crystlwest
Offline Offline
Send Email Send Email
 

To work around this bug you can add the following to your ad swf:

 

 

import flash.display.StageDisplayState;

import flash.events.Event;

 

stage.addEventListener(Event.RESIZE, onStageResize);

 

        private function onStageResize(event:Event):void {

            if (stage.displayState == StageDisplayState.NORMAL) {

                addEventListener(Event.ENTER_FRAME, exitFullScreenFrame);   

            }

            else {

                addEventListener(Event.ENTER_FRAME, enterFullScreenFrame);   

            }

        }

      

        private function enterFullScreenFrame(event:Event):void {

            removeEventListener(Event.ENTER_FRAME, enterFullScreenFrame);

            // add code to size for full screen here

        }

       

        private function exitFullScreenFrame(event:Event):void {

            removeEventListener(Event.ENTER_FRAME, exitFullScreenFrame);

            // add code to resize ad here                    

        }

 

 

 

Crystal West  |  Software Engineer

 

Brightcove, Inc. www.brightcove.com 

One Cambridge Center, 12th Floor, Cambridge, MA 02142

P: 617.395.0000  F: 617.395.8352

 


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of marathonburke
Sent: Wednesday, December 10, 2008 10:24 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: AdSWF: How to catch fullscreen events from within AdSwf

 

--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...> wrote:
>
> Have you see the AdSwfConfig value related to full screen? This may
solve your full screen issue if it's related to the display of the ad.
>
> Any events that are exposed in the API should be accessible through
the ad SWF. I'm not sure what's happening in this case, but I'll enter
a bug on it.
>
Any update on this? Still not seeing the fullscreen events from within
the AdSwf -- when should we expect this bug to be fix. This bug results
in overlay ads not rendering visible when player goes into fullscreen
mode


#4075 From: "chris57972000" <chris@...>
Date: Thu Dec 11, 2008 3:07 pm
Subject: Re: Bandwidth Not Detected
chris57972000
Offline Offline
Send Email Send Email
 
Yes, we were using dynamic delivery. After a discussion with
Brightcove, we plan to switch to streaming rather than progressive
video. As I understand it, with progressive video the bandwidth is
only detected at the start, but is continuously detected with streaming.

After playing around a little more, I think my browser cache _may_
having been preventing the bandwidth from being properly detected, but
I'm not certain.

Chris



--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...> wrote:
>
> Are you using dynamic delivery (that is, having more than one FLV
associated with a video)?  We probably don't detect bandwidth when
dynamic delivery isn't being used, and so it's just that the message
is confusing.  -Brian
>
> ________________________________
> From: brightcove-dev@yahoogroups.com
[mailto:brightcove-dev@yahoogroups.com] On Behalf Of chris57972000
> Sent: Tuesday, December 09, 2008 1:36 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] Bandwidth Not Detected
>
>
> When I turn on "show debug information" in my player, under detected
> bandwidth it reads "not able to detect" and the rendition used is
> always the lowest.
>
> Does anyone have an idea what might prevent bandwidth from being
> detected? We are using Brightcove 3.0.
>
> Cheers,
> Chris
>

#4074 From: "marathonburke" <jason@...>
Date: Thu Dec 11, 2008 3:23 am
Subject: Re: AdSWF: How to catch fullscreen events from within AdSwf
marathonburke
Offline Offline
Send Email Send Email
 
--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...> wrote:
>
> Have you see the AdSwfConfig value related to full screen?  This may
solve your full screen issue if it's related to the display of the ad.
>
> Any events that are exposed in the API should be accessible through
the ad SWF.  I'm not sure what's happening in this case, but I'll enter
a bug on it.
>
Any update on this? Still not seeing the fullscreen events from within
the AdSwf -- when should we expect this bug to be fix. This bug results
in overlay ads not rendering visible when player goes into fullscreen
mode

#4073 From: Brian Deitte <bdeitte@...>
Date: Wed Dec 10, 2008 9:37 pm
Subject: RE: ad translator to display swf companion banner w/built in clickthru not working
bdeitte
Offline Offline
Send Email Send Email
 
Can you send the XML that you are sending to setAdXML() in the working and non-working case?  Thanks.


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of jrinco11
Sent: Tuesday, December 09, 2008 1:16 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] ad translator to display swf companion banner w/built in clickthru not working

hey ya'll -- so I am using the XML as format to connect to a 3rd party
adserver to display ads (preroll video and companion banners), and I'm
having issues getting swf clickthrus to work for the companion banners.

The banner displays just fine, and is clickable, but the url it goes
to is undefined. The swf is setup such that the clickthru url is
grabbed from the querystring in it's own url, so for example the swf
would be
"http://www.urlToBanner.com/banner.swf?clickthru=http://url.com" and
the swf itself has a "on release{getURL(_level0.clickthru, "_blank");}"

using the xml ad format for the ad translation layer, I'm trying it
like this:

var lcXML:String = "<SynchedBanner468x60 duration=\"" + duration +
"\" trackStartURLs=\""+trackStartURLs+"\"
trackMidURLs=\""+trackMidURLs+"\" trackEndURLs=\""+trackEndURLs+"\" >" +
"<videoURL>" + videoURL + "</videoURL>" +
"<videoClickURL>" + videoClickURL + "</videoClickURL>" +
"<expandedBannerURL>" + expandedBannerURL + "</expandedBannerURL>";
if (bannerClickURL != undefined) {
lcXML+= "<expandedBannerClickURL>" + bannerClickURL +
"</expandedBannerClickURL>";
}

Before, I did not have that if statement, and it would 'assign'
undefined as the URL (bannerClickURL is undefined for such swfs). I
thought that if not sending an <expandedBannerClickURL> the it
wouldn't try to assign it and it would just use the internal
clickthru, but I guess not.

However, if I use a swf that has a URL hard coded (such as
getURL{"http://www.google.com", _blank), and I have the if statement
above, the clickthru works.

Any suggestions? Perhaps I'm missing something obvious?


#4072 From: Brian Deitte <bdeitte@...>
Date: Wed Dec 10, 2008 9:34 pm
Subject: RE: Re: Using Ad Tag Translator to call Ads with 3rd party ad server
bdeitte
Offline Offline
Send Email Send Email
 
If you are making "trace()" statements, they will always appear in flashlog.txt.  This is a general Flash player issue, and I'm guessing that something is misconfigured locally for flashlog.txt. 
 
The documentation on setting up the example (as given at http://help.brightcove.com/developer/docs/advertising/ad-translator.cfm) is all that's needed in Flash for creating a translator.


From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of ymuflkpictures
Sent: Wednesday, December 10, 2008 7:00 AM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Re: Using Ad Tag Translator to call Ads with 3rd party ad server

Just to update...I have now got flash logging working...

None of the trace code I have put into my swf seems to appear in the
log.

Only if I apply a trace to the first keyframe does it get output.

So although i have linked my brightcove.as file as a document class
of the FLA, do i need to link the code using actionscript with the
timeline in some way?

Tim

--- In brightcove-dev@yahoogroups.com, "ymuflkpictures" <ymuflk@...>
wrote:
>
> I have not managed to get my flash logging to work, but I have
tried
> a new test....I have pointed my player at one of the existing 3rd
> party ad translators built by Brightcove. I can see the semicolons
in
> the ad call being changed to &. In my case I want to change the
> semicolons to /. This means that there must be a problem with my
swf
> file or the way I have built it.
>
> Could someone email me their FLA file and associated .as file so I
> can see where I might be going wrong?
>
> tim.edmonds@...
>
> Thanks
>
> --- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@>
> wrote:
> >
> > I'm not sure what the issue is here. Have you tried tracing out
> messages from the translator? If you Google on "flashlog.txt", you
> can find out how to trace out messages from the translator.
> >
> > The new player logging may also help you figure out what's going
on
> in the player. I'll send out a separate message on this. -Brian
> >
> > ________________________________
> > From: brightcove-dev@yahoogroups.com [mailto:brightcove-
> dev@yahoogroups.com] On Behalf Of ymuflkpictures
> > Sent: Thursday, December 04, 2008 11:57 AM
> > To: brightcove-dev@yahoogroups.com
> > Subject: [brightcove-dev] Re: Using Ad Tag Translator to call Ads
> with 3rd party ad server
> >
> >
> > Hello All,
> >
> > Firstly...thanks Sean for your advice. It turns out that the
> problem I was having is that both
> > our server and the 3rd party ad provider did not have the
> crossdomain.xml file set up to
> > allow the various domains involved.
> >
> > I now have a new problem. Although I am getting ads coming
through,
> this is only
> > because of the URL set up as the player-level base ad tag URL,
> which is being called and
> > adding on the key value pairs I have configured in Brightcove.
> >
> > The ad translator file appears to be called, but no matter what i
> put in it I am not able to
> > change the parameters being passed into the ad URL. Its almost as
> if brightcove is
> > ignoring the swf file completely, despite a call to it appearing
in
> httpfox.
> >
> > Is there a way to alert things from the ad translator swf itself?
> >
> > Tim
> >
> > --- In brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>, "Sean Dillon" <sean.dillon@> wrote:
> > >
> > >
> > > > From: brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>
> > > > [mailto:brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>] On Behalf Of ymuflkpictures
> > > > Sent: 03 December 2008 15:41
> > > > To: brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>
> > > > Subject: [brightcove-dev] Using Ad Tag Translator to call Ads
> > > > with 3rd party ad server
> > > >
> > > > Hello...
> > > >
> > > > I am trying to use a 3rd party ad server to run ads in my BC
> > > > video player.
> > > >
> > > > I have had the ad translator field added to my account. I
> > > > have also created an ad translator swf using CS3 based on the
> > > > example provided by BC.
> > > >
> > > > Everything is set up as per the documentation and I am seeing
> > > > my test video with no problems, but no ads. Although I
> > > > suspect i need to tweak my swf file a little, I have no idea
> > > > how to debug this since it is BC that calls my swf file.
> > > >
> > > > I am not terribly experienced with Actionscript, but would
> > > > like to alert some variables. Can anyone advise?
> > >
> > >
> > > For debugging you need somethin like httpWatch or httpFox, it
> allows
> > > you to see what's being called from the page and is invaluable
> when
> > > you're doing this sort of dev work.
> > >
> > > Even I the swf is calling the ad/url it is in effect the browser
> > > that calls it and as such will be caught by these tools and
> displayed.
> > >
> > > httpWatch is pricey (but good) httpFox is free, other products
> include:
> > >
> > > Personally I recommend httpWatch & httpFox, they're in my
> USB/toolkit.
> > >
> > >
> > > Seán
> > >
> > >
> > >
> > =======================================================
> > ============
> > > Seán Dillon
> > > Manager - Advertising Operations
> > >
> > > Telegraph Media Group Ltd
> > > 111 Buckingham Palace Rd
> > > Victoria
> > > London
> > > SW1W 0DT
> > >
> > > t: +44-20-7931-3236
> > > m: +44-77-7335-2803
> > >
> > =======================================================
> > ============
> > > What am I reading [Public RSS Feeed]: http://tinyurl.com/adtools
> > >
> > =======================================================
> > ============
> > >
> > >
> > > For all the latest news and comment visit www.telegraph.co.uk.
> This
> > > message, its contents and any attachments to it are private,
> confidential
> > > and may be the subject of legal privilege. Any unauthorised
> disclosure,
> > > use or dissemination of the whole or part of this message
> (without our
> > > prior written consent) is prohibited. If you are not the
intended
> > > recipient, please notify us immediately. Incoming and outgoing
> telephone
> > > calls to our offices may be monitored or recorded for training
> and quality
> > > control purposes and for confirming orders and information.
> Telegraph Media
> > > Group Limited is a limited liability company registered in
> England and
> > > Wales (company number 451593). Our registered office address
is:
> 111
> > > Buckingham Palace Road, London, SW1W 0DT.
> > >
> >
>


#4071 From: Brian Deitte <bdeitte@...>
Date: Wed Dec 10, 2008 9:14 pm
Subject: RE: Bandwidth Not Detected
bdeitte
Offline Offline
Send Email Send Email
 
Are you using dynamic delivery (that is, having more than one FLV associated with a video)?  We probably don't detect bandwidth when dynamic delivery isn't being used, and so it's just that the message is confusing.  -Brian
 

From: brightcove-dev@yahoogroups.com [mailto:brightcove-dev@yahoogroups.com] On Behalf Of chris57972000
Sent: Tuesday, December 09, 2008 1:36 PM
To: brightcove-dev@yahoogroups.com
Subject: [brightcove-dev] Bandwidth Not Detected

When I turn on "show debug information" in my player, under detected
bandwidth it reads "not able to detect" and the rendition used is
always the lowest.

Does anyone have an idea what might prevent bandwidth from being
detected? We are using Brightcove 3.0.

Cheers,
Chris


#4070 From: "ymuflkpictures" <ymuflk@...>
Date: Wed Dec 10, 2008 12:00 pm
Subject: Re: Using Ad Tag Translator to call Ads with 3rd party ad server
ymuflkpictures
Offline Offline
Send Email Send Email
 
Just to update...I have now got flash logging working...

None of the trace code I have put into my swf seems to appear in the
log.

Only if I apply a trace to the first keyframe does it get output.

So although i have linked my brightcove.as file as a document class
of the FLA, do i need to link the code using actionscript with the
timeline in some way?

Tim

--- In brightcove-dev@yahoogroups.com, "ymuflkpictures" <ymuflk@...>
wrote:
>
> I have not managed to get my flash logging to work, but I have
tried
> a new test....I have pointed my player at one of the existing 3rd
> party ad translators built by Brightcove. I can see the semicolons
in
> the ad call being changed to &. In my case I want to change the
> semicolons to /. This means that there must be a problem with my
swf
> file or the way I have built it.
>
> Could someone email me their FLA file and associated .as file so I
> can see where I might be going wrong?
>
> tim.edmonds@...
>
> Thanks
>
> --- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@>
> wrote:
> >
> > I'm not sure what the issue is here.  Have you tried tracing out
> messages from the translator?  If you Google on "flashlog.txt", you
> can find out how to trace out messages from the translator.
> >
> > The new player logging may also help you figure out what's going
on
> in the player.  I'll send out a separate message on this.  -Brian
> >
> > ________________________________
> > From: brightcove-dev@yahoogroups.com [mailto:brightcove-
> dev@yahoogroups.com] On Behalf Of ymuflkpictures
> > Sent: Thursday, December 04, 2008 11:57 AM
> > To: brightcove-dev@yahoogroups.com
> > Subject: [brightcove-dev] Re: Using Ad Tag Translator to call Ads
> with 3rd party ad server
> >
> >
> > Hello All,
> >
> > Firstly...thanks Sean for your advice. It turns out that the
> problem I was having is that both
> > our server and the 3rd party ad provider did not have the
> crossdomain.xml file set up to
> > allow the various domains involved.
> >
> > I now have a new problem. Although I am getting ads coming
through,
> this is only
> > because of the URL set up as the player-level base ad tag URL,
> which is being called and
> > adding on the key value pairs I have configured in Brightcove.
> >
> > The ad translator file appears to be called, but no matter what i
> put in it I am not able to
> > change the parameters being passed into the ad URL. Its almost as
> if brightcove is
> > ignoring the swf file completely, despite a call to it appearing
in
> httpfox.
> >
> > Is there a way to alert things from the ad translator swf itself?
> >
> > Tim
> >
> > --- In brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>, "Sean Dillon" <sean.dillon@> wrote:
> > >
> > >
> > > > From: brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>
> > > > [mailto:brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>] On Behalf Of ymuflkpictures
> > > > Sent: 03 December 2008 15:41
> > > > To: brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
> 40yahoogroups.com>
> > > > Subject: [brightcove-dev] Using Ad Tag Translator to call Ads
> > > > with 3rd party ad server
> > > >
> > > > Hello...
> > > >
> > > > I am trying to use a 3rd party ad server to run ads in my BC
> > > > video player.
> > > >
> > > > I have had the ad translator field added to my account. I
> > > > have also created an ad translator swf using CS3 based on the
> > > > example provided by BC.
> > > >
> > > > Everything is set up as per the documentation and I am seeing
> > > > my test video with no problems, but no ads. Although I
> > > > suspect i need to tweak my swf file a little, I have no idea
> > > > how to debug this since it is BC that calls my swf file.
> > > >
> > > > I am not terribly experienced with Actionscript, but would
> > > > like to alert some variables. Can anyone advise?
> > >
> > >
> > > For debugging you need somethin like httpWatch or httpFox, it
> allows
> > > you to see what's being called from the page and is invaluable
> when
> > > you're doing this sort of dev work.
> > >
> > > Even I the swf is calling the ad/url it is in effect the browser
> > > that calls it and as such will be caught by these tools and
> displayed.
> > >
> > > httpWatch is pricey (but good) httpFox is free, other products
> include:
> > >
> > > Personally I recommend httpWatch & httpFox, they're in my
> USB/toolkit.
> > >
> > >
> > > Seán
> > >
> > >
> > >
> > =======================================================
> > ============
> > > Seán Dillon
> > > Manager - Advertising Operations
> > >
> > > Telegraph Media Group Ltd
> > > 111 Buckingham Palace Rd
> > > Victoria
> > > London
> > > SW1W 0DT
> > >
> > > t: +44-20-7931-3236
> > > m: +44-77-7335-2803
> > >
> > =======================================================
> > ============
> > > What am I reading [Public RSS Feeed]: http://tinyurl.com/adtools
> > >
> > =======================================================
> > ============
> > >
> > >
> > > For all the latest news and comment visit www.telegraph.co.uk.
> This
> > > message, its contents and any attachments to it are private,
> confidential
> > > and may be the subject of legal privilege. Any unauthorised
> disclosure,
> > > use or dissemination of the whole or part of this message
> (without our
> > > prior written consent) is prohibited. If you are not the
intended
> > > recipient, please notify us immediately. Incoming and outgoing
> telephone
> > > calls to our offices may be monitored or recorded for training
> and quality
> > > control purposes and for confirming orders and information.
> Telegraph Media
> > > Group Limited is a limited liability company registered in
> England and
> > > Wales (company number 451593). Our registered office address
is:
> 111
> > > Buckingham Palace Road, London, SW1W 0DT.
> > >
> >
>

Messages 4070 - 4105 of 4279   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help