RS Control problem with decklink multibridge

Hello,
I wish to control a HDCAM VTR true 9-pin RS. I've got a Blackmagic Multibridge Extreme and FCP. I could control the vtr in BM decklink control but I don't see any time code... Need help....
Greetz,
Wim

1)make sure the deck settings match what you shot. the frame rate indicator should show what the deck is set at. while you're in playback if the data on tape doesn't match the deck the frame rate indicator will flash. set the deck to match the tape format.
2)while the deck is playing make sure the counter is set to TC and see if you're getting numbers there. if you are getting good numbers in the tc window and the frame rate isn't flashing check your decklink and or FCP settings.

Similar Messages

  • User Account Control Problems with Premier Elements 7 32 bit in 64 Bit Windows 7

    I found User Account Control Problems in other forums but didn't see much in Premiere Elements, so I hope this helps others who may be having problems with 32 bit programs in a 64 bit computor. When I first got my 64 bit I didn't have problems.
    Back in February I bought a Quad Core Desktop with Windows 7 64 bit. Haven't been on the forum for 7 months since I wrote in regarding importing video with the Pyro AV Link (Premiere Elements Tips and Tricks). I was having problems importing video which started after March 28 sometime, as that was the last time I didn't have a problem importing VHS. Took me a few months off and on to find out what worked.
    I started uninstalling Windows updates and any programs I had installed back to that point in time. Checked after uninstalling each item. The capture screen would come up on a delayed basis but clicking on capture did nothing. Although no driver is required for IE1394 (so they say) I read where some people using the Legacy driver had fixed some problems, so I switched to the Legacy. Seemed to work great (for a few minutes).
    I had even uninstalled and reinstalled PE7 but no difference. Finally I noticed a shield in the PE7 Desktop icon. Thats weird. Never had that before. Just decided to show up after I had done all of the stuff I mentioned. Turns out at some point in time since I've had the computor Windows 7 decided to flag my 32 bit program as misusing the 64 bit system. User Account Control. I never bothered too much with UAC and just clicked on the yes box wen it popped up asking if I wanted this or that to take control of my computor. I tried using the minimum setting for safety reasons, and then finally turned User Account Control off. Bingo! PE7 capture works again and still working.
    While I am not recommending that people arbitrarily turn UAC off, this appeared to be my problem. I would recommed that they try turning it off before uninstallin a bunch of stuff. Having a restore point may or may not have been a fix for me. I think one of the Windows Updates caused the problem but I am not going to uninstall any more stuff at this point, I have not been back on the internet or installed any more updates in my desktop. I am going to use my laptop for internet and used the desktop for video.
    I am guessing this could be a problem for any 64 bit systems trying to use 32 bit programs. IE: XP,Vista,Windows 7 64 bit. In Vista there is also Data Execution Prevention (DEP) which you can turn on or off, supposedly to prevent misuse of memory (as I understand it), but Win7 either doesn't have it or I haven't found where it's located.
    Maybe this has been covered in the forum somewhere and I missed reading it. Hope I am not too confusing. Anyway, whatever feedback you guys have would be great.  

    John,
        Thanks for your answer, and I did check out the link you suggested. However, I have Windows 7 Home Premium as most people have I think, and the XP program was not available. I started with Vista and now have Win 7. I never could navigate around in XP anyway so am content to just leave User Account Control off.
        Interesting side note to turning UAC off is that my desktop seemed to be using more of the CPUs, where half of them were "Parked" as I wrote in also about 7 months ago when I 1st got my desktop. I am pleased to say that video processing seems to go quicker with UAC off. Have to observe things some more to confirm.
        I just thought if others were having problems after installing Windows Updates and leaving UAC off worked then they could possibly pinpoint a problem.

  • Game controll problem with keyAdapter

    hi folks,
    I have build an game in which i want to move the player sprite with the W,A,S,D keys(use them as arrows as in maby games). It works fine, but for example: when i walk up(w) en press then (a) to walk diagonal across the screen the sprite hangs for an moment. before it actualy does go diagonal across the screen. How can i get this movement without any hanging?
    I got the following code in my application: (where up, down, left and right are instance variables)
    private void activateGameControlsKeys(){
              addKeyListener(new KeyAdapter(){
                   public void keyPressed(KeyEvent e){
                        int keyCode = e.getKeyCode();
                        if(!isPaused&&!gameOver){
                             if(keyCode == KeyEvent.VK_W){
                                  up = true;
                             if(keyCode == KeyEvent.VK_S){
                                  down = true;
                             if(keyCode == KeyEvent.VK_A){
                                  left = true;
                             if(keyCode == KeyEvent.VK_D){
                                  right = true;
                             if(up){
                                  player.movePlayer("W");
                             if(down){
                                  player.movePlayer("S");
                             if(left){
                                  player.movePlayer("A");
                             if(right){
                                  player.movePlayer("D");
                   public void keyReleased(KeyEvent e){
                        if(!isPaused&&!gameOver){
                             int keyCode = e.getKeyCode();
                             if(keyCode == KeyEvent.VK_W){
                                  up = false;
                             }else if(keyCode == KeyEvent.VK_S){
                                  down = false;
                             }else if(keyCode == KeyEvent.VK_A){
                                  left = false;
                             }else if(keyCode == KeyEvent.VK_D){
                                  right = false;
              });Hope someone can help me out..
    Greetz,

    hi folks,
    I have build an game in which i want to move the
    player sprite with the W,A,S,D keys(use them as
    arrows as in maby games). It works fine, but for
    example: when i walk up(w) en press then (a) to walk
    diagonal across the screen the sprite hangs for an
    moment. before it actualy does go diagonal across the
    screen. How can i get this movement without any
    hanging?
    I got the following code in my application: (where
    up, down, left and right are instance variables)
    private void activateGameControlsKeys(){
              addKeyListener(new KeyAdapter(){
                   public void keyPressed(KeyEvent e){
                        int keyCode = e.getKeyCode();
                        if(!isPaused&&!gameOver){
                             if(keyCode == KeyEvent.VK_W){
                                  up = true;
                             if(keyCode == KeyEvent.VK_S){
                                  down = true;
                             if(keyCode == KeyEvent.VK_A){
                                  left = true;
                             if(keyCode == KeyEvent.VK_D){
                                  right = true;
                             if(up){
                                  player.movePlayer("W");
                             if(down){
                                  player.movePlayer("S");
                             if(left){
                                  player.movePlayer("A");
                             if(right){
                                  player.movePlayer("D");
                   public void keyReleased(KeyEvent e){
                        if(!isPaused&&!gameOver){
                             int keyCode = e.getKeyCode();
                             if(keyCode == KeyEvent.VK_W){
                                  up = false;
                             }else if(keyCode == KeyEvent.VK_S){
                                  down = false;
                             }else if(keyCode == KeyEvent.VK_A){
                                  left = false;
                             }else if(keyCode == KeyEvent.VK_D){
                                  right = false;
              });Hope someone can help me out..
    Greetz,Wait, what?
    Your making it to complicated. Anyway, it would be easier if you did this:
    private void activateGameControlsKeys()
    { addKeyListener(new KeyAdapter(){public void keyPressed(KeyEvent e)
    { int keyCode = e.getKeyCode();
    if(!isPaused&&!gameOver)
    { if(keyCode == e.VK_UP)
    { //Execute code here }
    if(keyCode == e.VK_DOWN)
    { //Execute code here }
    if(keyCode == e.VK_LEFT)
    { //Execute code here }
    if(keyCode == e.VK_RIGHT)
    { //Execute code here }
    } } } ); }I think i got the right amount of { things...
    Anyway, execute the code within the keyPressed code, it's much easier. Believe me, I know. And the code won't repeat itself if you don't have the keyRelease code. And I have the same problem with the sprite hanging, it's just the way the code executes. I tried to find a way around it, but with no luck. I hope my revision of your code helps some.
    Message was edited by:
    g@m3r

  • Problem with Decklink card during voice over

    Hi,
    i have PMG5 2.5 GHz with FCS & Blackmagic Decklink extreme card.
    all these days i had a great time working on FCP . till i faced a peculiar problem
    when i am capturing video from Beta or DV 50 , i am able to select video Only or Audio only , or Video & Audio .
    but when iam trying to capture Audio Only option through the the Mic which is connected to the mixer, i am not able to capture audio.
    even i have noticed one more strange thing, i have tried Voice Over tool in FCP 5.04 with Decklinik card and i am not able to grab any audio through the Decklink card.
    but i can use built in audio for my voiceover.
    has anybody come across this kind of problem,
    can somebody help me .

    Hi Rajendra,
    your questions is marked as solved, but I haven't seen your question answered, so I might be wasting time. Anyway.
    I bumped into the same problem not long ago. I'm using a Multibridge, but the problem and solution are the same. Here's the reply I got from Kristian Lam over at Blackmagic:
    In order to get vo tool in Final Cut Pro HD to work, these are the
    steps to follow:
    1) Video Input in Blackmagic DeckLink preferences is set to match the audio input type. For example, if you're recording via the XLR connectors of your card, then then 'Inputs' under 'DeckLink Video Connections' must set to analog. It doesn't matter if it's component or composite analog video.
    2) In the View menu of Final Cut Pro HD, set External Video to “Off”. When finished with the Voice Over tool, set External Video to “All Frames” to use the broadcast monitor.
    3) You must have a stable video signal going into the card when using the vo tool or Final Cut Pro HD will not see the audio. (or use a Blackburst generator)
    4) Use the Displays menu to set the DeckLink desktop to the same format as the video source, eg. NTSC 720 x 486.
    Well, then select your Decklink Card in the Voiceover Input selection. Even after I had done all that, I couldn't see any audio coming into FCP. The solution to that was to raise the Trim at the top of the mixer. I got a nice signal into the Mackie and voilà also sound into FCP.
    Hope this helps,
    Colin

  • Controlling- Problem with Assigned

    Hi
    I have the following problem:
    I implemet the budget control through customizing.
    I start to creat internal orders and i settlement the original budget.
    Then i continued working as normal creating PO, invoices etc, all against the internal order.
    When i go to KO22 to see the original budget and the assigned, in some orders, the assigned is upper than the budget (its wrong becuase i implement the Bugdget controlling for internal orders). And in some cases the commitments plas the actual postings is upper than the assigned (its is wrog becuase the assigned is form by the commitments and actual postings).
    I dont know why it happend.
    Please if someone have a similar problem or know about this issue, please help me.
    Thanks in advance for your help
    Enzo

    Commitments and actual postings can exceed budget if tolearnce limt for 100% of usage is set up at warning / information i.e. it will allow to post additional costs /create PO against the order with information / warning message to the user.
    Check the tolearnce limit in customizing and it should be level '3' (error message) against 100% usage.
    Assigned value should be equal to actual & commitments. You can 'Set up Availability Control again' (KO31) to reconstruct the database for the orders with error.
    Regards,

  • Volume control problem with 30GB iPod 3G, Universal Dock, and Apple Remote

    I just hooked up my 30GB iPod 3G to the Universal Doc and tried the my new Apple remote. The only buttons on the remote that work in controlling my iPod while on the dock are the play/pause and the skip forward and back buttons.
    For some reason the volume up and down buttons don't adjust the volume on my iPod while it's on the dock. Any ideas? Shouldn't the volume up and down work? Or do they only work on the newer iPods?
    Any info appreciated.
    17' Aluminum Powerbook Mac OS X (10.4.3) 30GB iPod 3G
    17' Aluminum Powerbook   Mac OS X (10.4.3)  

    btabz,
    Thanks for your response. No the iPod doesn't respond at all--the volume display doesn't come up or change.
    When I press the play/pause or either skip forward or back on the remote, the iPod, while on the dock, lights up and responds to the command as it should. But when I press volume up or down on the remote the iPod does not respond at all.
    According to Apple's store info on the remote, the volume up/down controls should work. I am wondering if maybe it doesn't work with the 3Gs for some reason. But if that is the case, Apple should indicate that. It is kind of frustrating to not be able to adjust the volume.
    Thanks,
    gerb38
    17' Aluminum Powerbook   Mac OS X (10.4.3)  
    17' Aluminum Powerbook   Mac OS X (10.4.3)   30GB 3G iPod

  • SSC web control problem with Crossover

    Hey i've installed Crossover to work with a control...and this one sscwebcontrol will not work. any advice? is there a program that I can download through crossover to get it working?

    You should probably contact Crossover support. If the app is not supported by Crossover then you'll probably need to install Windows on your Mac via Boot Camp or Parallels.

  • ActiveX control Problem with Froms 6.0.8.11.3

    Hi,
    I am using Oracle Forms 6.0.8.11.3 version on windows XP.
    I am inserting the activex object in the layout and when runing the form the object is not shown.
    After that when i am checking in the design (FMB) file the object is not shown and asking me to reinsert the object.
    Can any body guide me on this? Is there any bugs are there related to this ?
    Thank you
    Gouri

    Yup - Sounds like 593051 which is to do with the licence information used by the ActiveX not being correctly stored with the control. This is fixed in 6.0.8.15.1

  • Problem with custom control and focus

    I've a problem with the focus in a custom control that contains a TextField and some custom nodes.
    If i create a form with some of these custom controls i'm not able to navigate through these fields by using the TAB key.
    I've implemented a KeyEvent listener on the custom control and was able to grab the focus and forward it to the embedded TextField by calling requestFocus() on the TextField but the problem is that the TextField won't get rid of the focus anymore. Means if i press TAB the first embedded TextField will get the focus, after pressing TAB again the embedded TextField in the next custom control will get the focus AND the former focused TextField still got the focus!?
    So i'm not able to remove the focus from an embeded TextField.
    Any idea how to do this ?

    Here you go, it contains the control, skin and behavior of the custom control, the css file and a test file that shows the problem...
    control:
    import javafx.scene.control.Control;
    import javafx.scene.control.TextField;
    public class TestInput extends Control {
        private static final String DEFAULT_STYLE_CLASS = "test-input";
        private TextField           textField;
        private int                 id;
        public TestInput(final int ID) {
            super();
            id = ID;
            textField = new TextField();
            init();
        private void init() {
            getStyleClass().add(DEFAULT_STYLE_CLASS);
        public TextField getTextField() {
            return textField;
        @Override protected String getUserAgentStylesheet() {
                return getClass().getResource("testinput.css").toExternalForm();
        @Override public String toString() {
            return "TestInput" + id + ": " + super.toString();
    }skin:
    import com.sun.javafx.scene.control.skin.SkinBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.control.TextField;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputSkin extends SkinBase<TestInput, TestInputBehavior> {
        private TestInput control;
        private TextField textField;
        private boolean   initialized;
        public TestInputSkin(final TestInput CONTROL) {
            super(CONTROL, new TestInputBehavior(CONTROL));
            control     = CONTROL;
            textField   = control.getTextField();
            initialized = false;
            init();
        private void init() {
            initialized = true;
            paint();
        public final void paint() {
            if (!initialized) {
                init();
            getChildren().clear();
            getChildren().addAll(textField);
        @Override public final TestInput getSkinnable() {
            return control;
        @Override public final void dispose() {
            control = null;
    }behavior:
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputBehavior extends BehaviorBase<TestInput> {
        private TestInput control;
        public TestInputBehavior(final TestInput CONTROL) {
            super(CONTROL);
            control = CONTROL;
            control.getTextField().addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                @Override public void handle(final KeyEvent EVENT) {
                    if (KeyEvent.KEY_PRESSED.equals(EVENT.getEventType())) {
                        keyPressed(EVENT);
            control.focusedProperty().addListener(new ChangeListener<Boolean>() {
                @Override public void changed(ObservableValue<? extends Boolean> ov, Boolean wasFocused, Boolean isFocused) {
                    if (isFocused) { isFocused(); } else { lostFocus(); }
        public void isFocused() {
            System.out.println(control.toString() + " got focus");
            control.getTextField().requestFocus();
        public void lostFocus() {
            System.out.println(control.toString() + " lost focus");
        public void keyPressed(KeyEvent EVENT) {
            if (KeyCode.TAB.equals(EVENT.getCode())) {
                control.getScene().getFocusOwner().requestFocus();
    }the css file:
    .test-input {
        -fx-skin: "TestInputSkin";
    }and finally the test app:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class Test extends Application {
        TestInput input1;
        TestInput input2;
        TestInput input3;
        TextField input4;
        TextField input5;
        TextField input6;
        Scene     scene;
        @Override public void start(final Stage STAGE) {
            setupStage(STAGE, setupScene());
        private Scene setupScene() {
            input1 = new TestInput(1);
            input2 = new TestInput(2);
            input3 = new TestInput(3);
            input4 = new TextField();
            input5 = new TextField();
            input6 = new TextField();
            GridPane pane = new GridPane();
            pane.add(input1, 1, 1);
            pane.add(input2, 1, 2);
            pane.add(input3, 1, 3);
            pane.add(input4, 2, 1);
            pane.add(input5, 2, 2);
            pane.add(input6, 2, 3);
            scene = new Scene(pane);
            return scene;
        private void setupStage(final Stage STAGE, final Scene SCENE) {
            STAGE.setTitle("Test");
            STAGE.setScene(SCENE);
            STAGE.show();
        public static void main(String[] args) {
            launch(args);
    The test app shows three custom controls on the left column and three standard textfields on the right column. If you press TAB you will see what i mean...

  • Problem with remote control and Windows 7 - HP Pavilion 6301eu

    I installed Windows 7 32-bit and my remote control does not work. I have tried all possible drivers and still nothing ... Photo driver attached. Does anyone have a link to the current drivers for the remote control and Windows 7? thank you

    Hi John:
    Thanks but, I had already done this. I was having THAT problem with Encore (could not even initialize before tanking) when I first installed it and that's when I updated the Roxio engine. I don't know what else there is to update or correct at this point.
    There was one thing that occurred to me: When I was using XP, I had to disable Open GL in order to get Encore to stabilize. I've heard one recommendation for Encore that one must disable graphics acceleration. I would like try that here except I can't figure out how to do that in Windows 7.
    I've been Googling "Windows 7 Disable Graphics Accel" and have come up with nothing useful.
    Thanks for your help though and if you have any other ideas, I'm all ears.
    Mark

  • I am have problems with the ipad mini, it is a little crazy. It controls by itself, opens and closes application zooms in and out, end my facetime calls, Also Un certain part of the screen is no longer responsive to the touch.

    I am have problems with the ipad mini, it is a little crazy. It controls by itself, opens and closes application zooms in and out, end my facetime calls, Also Un certain part of the screen is no longer responsive to the touch, it Should be having so much problems. Thanks for your help.
    iPad, iOS 7.0.4

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

  • Problems with the items (control) in forms 9i (Re)

    Hello,
    I write this problem in a other post and but don't have any feedback about it(So I will give another try:-) )
    The problem that I will describe don't happen all the time and is very rare but I want to know if it's a normal bug of forms or something more special of our PL/SQL code...
    So here we are.
    Is there others developpers here that have problems with the mouse cursor of the user that seems to be "jammed"(blocked, trapped) in a text item (or another control, like a list item). When this problems happen, the user can't go on another field of the forms with his mouse cursor(Mouse click), the only thing that can resolve that is to refresh the page with Internet Explorer, and after that, he is free to go on another field of the forms.
    This problem is very rare but happens sometimes.
    Thanx in advance!

    Hi,
    This problem is due to failuer of navigation of mouse cursore. For more specific solution can you give the error message and error code, So that we can have exact picture. Waiting for error code......

  • Problem with controlling Annotations from Excel VBA

    Hi,
    I have a PDF document that has plenty of sticky notes attached to it. These sticky notes have been added by multiple authors on all pages of the document. I am trying to import the contents of these sticky notes, their author and the page number to an excel spreadsheet.  I am using Excel 2007 and Acrobat Professional 9.0.
    This is the code that I am currently using to import the sticky notes, but the problem that I am facing is that when I run the macro -
    Same sticky note contents, author and page numbers are imported multiple times
    Not all sticky notes are imported, only some of them appear in the final excel spreadsheet
    When I compare the number of sticky notes to that in the original PDF file, the number is correct. But the content is repeated content and that is the reason why only some of the sticky notes are imported.
    This is an activity that I need to do on regular basis and the number of sticky notes that I need to import to excel may range between 100 to 200. It is really difficult to do this task manually, so an excel VBA macro could prove really helpful.
    Sub ImportComments_Click()
    Dim Fpath As String
    Dim WordObj As Object
    Dim wbkOutput As Excel.Workbook
    Dim iRow As Integer
    Dim i, j, k As Integer
    Dim lRet As Long
    Dim objAcroAVDoc As New Acrobat.acroAVDoc
    Dim objAcroPDDoc As Acrobat.AcroPDDoc
    Dim numPages As Long
    Dim lAnnotscnt As Long
    Dim Subtype As String
    Dim NumComments As Long
    Dim AcroApp As Acrobat.AcroApp
    Dim objAcroPDPage As Acrobat.AcroPDPage
    Dim annot As Acrobat.AcroPDAnnot
    Sheets("Defect Log").Select
    Range("L3").Activate
    Fpath = ActiveCell.Value
    Sheets("Defect Log").Select
    Range("A1").Activate
    i = 0
    Do While (Not (IsEmpty(ActiveCell.Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 1).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 2).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 3).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 4).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 5).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 6).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 7).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 8).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 9).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 10).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 11).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 12).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 13).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 14).Value)))
    i = i + 1
    ActiveCell.Offset(1, 0).Select
    Loop
    iRow = i + 1
    Set wbkOutput = ActiveWorkbook
    lRet = objAcroAVDoc.Open(Fpath, "")
    Set objAcroPDDoc = objAcroAVDoc.GetPDDoc
    numPages = objAcroPDDoc.GetNumPages()
    Set objAcroPDPage = objAcroPDDoc.AcquirePage(0)
    For k = 1 To numPages
    lAnnotscnt = objAcroPDPage.GetNumAnnots()
    For m = 0 To lAnnotscnt - 1
    If lAnnotscnt = 0 Then Exit For
    Set objAcroPDAnnot = objAcroPDPage.GetAnnot(m)
    If (objAcroPDAnnot.GetContents <> "" And objAcroPDAnnot.GetSubtype = "Text") Then
    Cells(iRow, 5).Value = k
    Cells(iRow, 2).Value = objAcroPDAnnot.GetContents()
    Cells(iRow, 11).Value = objAcroPDAnnot.GetTitle()
    iRow = iRow + 1
    End If
    Next m
    Set objAcroPDPage = objAcroPDDoc.AcquirePage(k)
    Next k
    lRet = objAcroAVDoc.Close(1)
    Set objAcroAVDoc = Nothing
    Set objAcroPDAnnot = Nothing
    Set objAcroPDPage = Nothing
    Set objAcroPDDoc = Nothing
    End Sub

    Make sure you are current with 9.x patches, just on general principles.
    The code seems fine – nothing jumping out at me.
    You can also look at using the JSObject methods and trying this via the JavaScript stuff – that will give you more access to the Annotation information…
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 24 Nov 2011 04:25:12 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problem with controlling Annotations from Excel VBA
    Problem with controlling Annotations from Excel VBA
    created by apreeti<http://forums.adobe.com/people/apreeti> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4044740#4044740

  • Problem with programmat​ically control histogram color

    Hi,
    I'm developing a function to display multiple channel histogram. But I can not programmatically control the color. I use XY graph to display, and there's no problem with other type of plots.
    Attached is the example vi I use for the test. Please tell me if I make any mistakes.
    Inhaler
    Attachments:
    histogram_colortest.vi ‏38 KB

    instead of using plot.color, use the fill/point color.
    -Joe

Maybe you are looking for

  • How to get my macbook to connect to the Apple TV?

    How to get my macbook to connect to the Apple TV in a strange apartment? I am housesitting for someone for a few months. They mentioned that i would be able to use their Apple TV to play stuff from my macbook. I am using their basic wifi in the apt,

  • Masks and blend modes

    Hello all, So, I'm creating a chest caption and I wanted to have the text on a semi-transparent rectangle background. I also want to use a soft light blend mode on the rectangle. Now, I also want the rectangle to quickly appear from nowhere so I am u

  • MAC to TV question ?

    what kind of cable can i use to connect to my tv?? will any of these work?? http://store.apple.com/us/product/TR842LL/A?fnode=MTY1NDA3Ng&mco=MTA4NDU1Mjk http://store.apple.com/us/product/TR837LL/A?fnode=MTY1NDA3Ng&mco=MTA4NDU2MzY thanks really apprec

  • Lr3.6 shuts down w/o reason and refuses to obey mouse clicks.

    i run lr3.6 under windows xp on a dell t3400 workstation.  lately, it shuts down unexpectedly and refuses to follow directions like "set flag" or "export". HELP

  • Problem with activating FaceTime on iOS 6

    I have recently updated to  iso6  on my iphone 4s however now my facetime does not work it just says waiting for activation. I have tried to reboot it and sign in and out but still nothing works this just appears. Does anyone know what i can do?