Effects mask ok in preview but ignored when file created

APE10: I applied a B&W mask to a portion of the image.  It works fine in preview, but when I generate ("share") it as an .mpg file, the effect is ignored.

Actually, I need to clarify...   It did not have a red line when I started.  The red line appeared only after applying the effects mask.
Sony DCR-SR200, set at HQ, wide
The files are .MPG
The initial settings were: NTSC-hard disk, flash memory camcorders - widescreen 48KHz
General & video settings show...
Editing mode: DV NTSC
Timebase: 29.97fps
frame size: 720x480
Pixel aspect ratio: D1/DV NTSC Widescreen 16:9 (1.2121)
Fields: upper field first
Display format: 30fps drop-frame timecode
Title safe area 20x20
Action safe area 10x10
Also, can you tell me what APE settings I should be using with this video camera?

Similar Messages

  • Masking works in preview but not when published

    I am dynamically loading higher-res images into a movie clip
    that
    correspond to the place in a 360 degree rotation the main
    clip is at,
    then resizing that movie clip to "zoom" the image. Since I
    don't want
    to overflow the whole screen, I've created another movie clip
    that
    masks the loader movie clip.
    When I preview the flash file, it works perfectly. When I
    publish the
    file, the mask doesn't get applied. Thoughts?
    zoom_btn.onPress = function(){
    if(iszoomed == false){
    loadMovie("zoomimages/" + Math.floor((_currentframe-4)/3) +
    "big.jpg", image_mc);
    stop();
    zoom_btn.onRelease = function(){
    if(iszoomed == false){
    Loading progress loop begins, extra code
    removed...
    if (pcLoaded >= 99){loader_mc._alpha = 0;
    image_mc._visible = true;
    myMask_mc._visible = true;
    image_mc.setMask(myMask_mc);
    .....Loading progress loop ends}
    iszoomed = true;
    }

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • When i open a picture it opens at preview but "all my files" opens everything else with it , same happens with MS word when i open document every word document opens with it

    When i open a picture it opens at preview but "all my files" opens everything else with it , same happens with MS word when i open document every word document opens with it

    Hi MIXAYA,
    Thanks for using Apple Support Communities.  In OS X, by default apps will open with any previously opened documents opening as well.  To disable this feature, select "Close windows when quitting an application" from System Preferences > General.  To learn more, see this article:
    OS X Mavericks: General preferences
    http://support.apple.com/kb/ph13803
    Close windows when quitting an application
    If you quit apps with windows still open on your screen, selecting this checkbox prevents the windows from reopening automatically the next time you start their app.
    Cheers,
    - Ari

  • Iphone camera effects display in photo album but disappear when you open the photo itself. why is this ?

    iphone camera effects display in photo album but disappear when you open the photo itself. why is this ?

    Hi Cyclosaurus,
    Thank you for your reply. Sorry to bug you again but can I ask some further questions? Pls excuse my lack of knowledge on these things.
    In relation to your points:
    1) In the ftp publishing settings, public_html is acutal in where it says "site name", where it says "URL" I have http://www.gippmed.com. I was advised to put public_html in "site name" from my hosting. If I put anything else it publishes the entire site to a folder with that name on the server and is not viewable online?
    2) I have removed the spaces in the album page name and will reupload soon. In relation to the image file names, am I correct in saying that iweb is naming them from the captions? Do you really have to use one word captions or use underscores, it looks a little odd? I have read troubleshooting articles about iweb and spaces and it also recommends similar as you are, suggesting that all page names should have underscore instead of spaces. Problem is, if for example I change the page name "About Me" to "About_Me" iweb automatically changes it in the navigation menu and this looks silly to have undescores in the Nav Menu. Is there a way around this?
    Lastly, a new problem that I have never had before:
    Previously, iweb would remember what I had published and only publish new site changes. Now, every time I turn my computer off and on, I open iweb and it doesn't recognise any of the previous publishing, ie it republishes the entire site.
    Thank you again for your help

  • Captivate 3 shows skin in preview but not when I run after published?

    Captivate 3 shows skin in preview but not when I run after published.  It shows it is included, what's up?

    Is the Skin externalised?  If so, perhaps Flash Global Security is interfering:
    http://www.infosemantics.com.au/adobe-captivate-troubleshooting/how-to-set-up-flash-global -security
    You could also try NOT externalising the skin.

  • Load swf works in Publish Preview but not when published

    Hi Folks,
    I having a problem where im trying to load two 1mb SWF movies into my Flash piece. It works fine in Publish Preview but not when I finally publish. I get this error in IE:
    SecurityError: Error #2000: No active security context.
    I have googled around and there is some talk online of a hack where by you get a timeout to overcome this. However im not so technical do I dont really know how to do this to my code in AS3. My code at the moment is below.
    Any help would be much appreciated and rewarded with Karma
    movieClip_12.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_9);
    var fl_Loader_9:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_9:Boolean = true;
    function fl_ClickToLoadUnloadSWF_9(event:MouseEvent):void
    if(fl_ToLoad_9)
      fl_Loader_9 = new Loader();
      fl_Loader_9.load(new URLRequest("search.swf"));
      addChild(fl_Loader_9);
    else
      fl_Loader_9.unload();
      removeChild(fl_Loader_9);
      fl_Loader_9 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_9 = !fl_ToLoad_9;
    movieClip_14.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_10);
    var fl_Loader_10:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_10:Boolean = true;
    function fl_ClickToLoadUnloadSWF_10(event:MouseEvent):void
    if(fl_ToLoad_10)
      fl_Loader_10 = new Loader();
    fl_Loader_10.load(new URLRequest("refunds.swf"));
      addChild(fl_Loader_10);
    else
      fl_Loader_10.unload();
      removeChild(fl_Loader_10);
      fl_Loader_10 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_10 = !fl_ToLoad_10;

    I think this is either a problem with my site preLoader or my external .swf Loader. I was checking out the bandwith profiler and saw something weird and I wondered if anyone could explain...I've added a picture. I have a blank frame on only my actions layer to export classes to and it seems that frame 2 is "bleeding" into frame 1. Could this be my problem? Why would this happen? Thanks

  • Effect works in the preview, but not after export. (10.1.1)

    Hi all.
    I am new to FCP, making a simple slide show movie with some Ken Burns images, music and titles. For one image there is some color correction, Ken Burns, and I want the image to fade from Black and White to Color. I did this by adding the Black and White effect, choosing "show video animation" in the timeline and making the B&W effect gradually decrease. It works perfectly in the preview, but when I share the video, the effect is always missing (it just stays B&W). I have tried:
    Undoing and redoing the effect
    Exporting to different formats
    Turning off background rendering and deleting render files
    to no avail. Any thoughts?
    Thanks in advance!

    I'm hoping to avoid updating until after this movie is delivered. I find it best not to tinker with stable software mid-project. Maybe if I get desperate enough I'll give it a whirl, though.

  • Works in preview but not when published in captivate 8?

    My youtube widget used in captivate 8 works just fine in the preview, but when published there's nothing where the video should be, any idea as to why?

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • PayPal button action works in preview but not when published

    Hi! 
    Any thoughts as to why this works correctly in CS5 publish preview but when I publish it I either get no action or (XP comupter) or a blank page (vista).  Any thoughts or insight would be appreciated.  Also, I'm new to flash and here's the button action:
    on (release) {
            //create the LoadVars that will hold our paypal information
            var paypal = new LoadVars();
            //specify the business, amount of the item, shipping, etc.
            paypal.cmd="_xclick";
            paypal.upload="1";
            paypal.business="[email protected]";
            paypal.currency_code="USD";
            paypal.amount="275.00";
            //paypal.handling = "0";
            //paypal.no_shipping = "0";
            paypal.item_name="One Session";
            //added
            //paypal.lc="GB";
            paypal.bn="PP-BuyNowBF";
            //paypal.no_note="1";
            //send our information to PayPal, including all the optional  variables we have collected from customer
             paypal.send("https://www.paypal.com/cgi-bin/webscr","_blank","POST");
    Thanks!
    Robert

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • Site works in preview but not when uploaded to the web

    I have been trying to add a link from my website to another project I have been doing, a mini site made with Flash.
    I wanted the link to open up a new window with the animation playing inside, and it works perfectly when I use "preview in safari" within dreamweaver, but now I've uploaded to the web it just opens up a blank window.
    This is the url for the homepage:
    http://kayleighthompson.com/
    and the link is the ActiveAid button at the bottom of the navigation list.
    If anyone knows how to get this working I'd be very grateful! It's for a uni project due in this afternoon :S

    I think you may be having a problem with how Flash is displayed. The Flash on the first page doesn't display in IE8... although it does in Chrome. The second page doesn't display in either. Your link is correct. I checked that.
    Wish I could be more helpful, I'm having the same issue with IE and DW CS4 myself, and can't figure it out.
    This may help: http://code.google.com/p/swfobject/wiki/documentation
    Good luck! Let me know if you figure it out.
    [email protected]

  • Query works in preview, but not when added under a Query Group

    Hello Experts-
    I'm trying to use this query as one of the options under the drop down on the Supplier Search under the Supplier Management.
    Error message:
    while trying to invoke the method com.sap.odp.comp.query.QueryParamValue.getPromptParamDef() of a null
    object loaded from local variable 'paramValue' while trying to invoke the method
    com.sap.odp.comp.query.QueryParamValue.getPromptParamDef() of a null object
    loaded from local variable 'paramValue'
    The query itself is complicated, but it works fine when executed under preview.
    Wondering if any one has ever seen this behavior and knows of any typical causes?
    Thanks,
    Mike

    Thanks for the offer, Vignesh.
    Sorry, I'm currently having trouble duplicating it, but next time it happens I'll try to get some screenshots.
    I have narrowed it down to blank values in optional string fields when the query loads. I fixed (kind of) the ones I was having trouble with by rearranging the filter parameters so there would not be blanks.
    Thanks again,
    Mike

  • Pdf image good in preview but distorted when printing without preview

    Hi all, I have added a graphic to my adobe form and it looks good when I view the pdf. It also prints fine when I open the pdf and then print it. The problem is when the pdf is sent directly to the printer without previewing it, the image will print but the colors will be distorted.
    The image was saved as 256 colors bmp and uploaded using SE78.
    Any help is appreciated:). Thanks.

    HI friend,
    I think it might be the problem with the printer settings just check that else what it must have happened is some code gets trigerred during the print preview which makes the color to print correctly.
    But while sending directly that part of code might not have been executed. Try to debug if possible and see whether its because of this else see the printer settings.
    I think this might be the issue there might not be any error from smartform.
    Just check the driver program print settings also.
    If you still face issues please revert back to me i will help you.
    Thanks,
    Sri Hari.

  • Plays in preview but not when posted on internet CS4

    Hello,
    I created a quiz that has several small video in AS2.  It works fine when I preview it, but when I post in on the internet it plays the first video and goes to a black screen.  I created the page and clicked to publish it.  I then exported the swf by hitting file/export/export movie then saved this and posted it to the internet.  This is how I have done it in the past, but now I get a blank screen.  Any help would be appreciated.
    Mark.

    At least on my side it only plays the first video and does not progress.  There are twenty-five videos after this, they are all very short  but they progress.   Is this progressing for you?  Perhaps it is my computer if so. Please let me know.
    Thanks again,
    Mark.

  • Slit Scan looks fine in Motion preview but not when I Export to Movie

    I have a project that I finally got to look exactly the way I wanted, but when I export it to a Quicktime Movie, it's all messed up. I used the Slit Scan filter on a PSD image for the background, and it looks great in the preview in Motion, but when I go to export it, the top half and the bottom half alternately drop out to black. I've tried every setting I can think of but nothing changes it. I've tried several different export options as well, but no luck. I'm up against a hard deadline and I just can't get it to work. Anyone have any ideas?

    Thanks for your reply, Ben.
    The render settings are:
    Resolution: Dynamic and Full
    Quality: Best
    Lighting on
    Shadows on
    Reflections on
    Frame Blending on
    In the export settings, I typically just leave everything as current settings, and use canvas settings, but I've tried changing everything and nothing makes any difference. I posted it to YouTube if you'd like to see what the problem is. The link is:
    http://youtu.be/oL3Mx5yGKVs
    You can see at about the 3 second mark that the Castle logo with drop shadow is on a black background. The background isn't ever supposed to be black, and isn't in the canvas window. It's supposed to vary from light gray, to yellow and white, but never black. There is also supposed to be a white horizontal glow that spans the width of the frame right about the center, and that has just dropped out completely. The top also drops to black and shouldn't. Any help you can give is greatly appreciated.

  • Text visible in preview but not when uploaded.

    I'm designing a mobile site in Muse.
    The fonts I'm using are from the Museo family through Typkit.
    I've uploaded the site a few times during the design process and had no trouble with text frames or text appearing.
    Yesterday I added a new text frame in one section to link to a phone number and now sections of text are not visible when I upload the site. It is, however visible in the Muse preview!?
    I've tried creating the text boxes from scratch but they still disappear in that particular section of the site.
    Does anyone know why this is!?
    The pale grey line is the text box where the text should appear.

    Hi Michael,
    It works fine at my end, please try clear browser cookies/cache and then check. If possible, check this on a different device and see how that goes.
    - Abhishek Maurya

Maybe you are looking for

  • Ras_admin tool does not discover my 6130

    I have recently acquired several 6130 units. I am having problems discovering these units after I installed "SUNWstade". I connected the 6130 directly to the management host using crossover ethernet cables as defined in the documentation. Even though

  • What are files in $AGENT_HOME/sysman/emd/state/statemgmt/oracle_home

    Greetings. I have found my OEM 12c, 12.1.0.1 reporting on some targets which don't exist ad some which are reported incorrectly. Some poking around on a particular host for which this behavior is exhibited (this host is a member of a two node cluster

  • Acrobat Connet Pro Report Help

    I really need a report that shows this information or somthing similar. Is there a report that could do this? This report shows who is in the event and the number of polling question and the number of responses the polling question recieved.

  • Qosmio X300-11S - How long for processing order?

    Hello, I just purchased a Qosmio X300-11S and 3 year warranty. I got an e-mail saying "Thank you for purchasing from Toshiba, your order has been received and is now being processed." Does this mean my product is being still being looked at or is bei

  • Spry panel - the first panel opens by default on entering the site

    The first panel is open on default, I can close it, and access the others, but whenever i go there for the first time, its open.  I want vistors to see the front page with all three panels closed.   http://www.diocesanministriesfund.org   Also, not a