How to connect a button in a different IPG IPG?

I created a slide show that contains a button that must be connected with an another MSO, which appears like a window pop up and contains another element that has one overlay: pinch & zoom. Is this possible to do?
Somehow the program I cannot choose between 2 OSM in an article (DP).

Can you help me with a tutorial?

Thanks in advance!

Buttons in an MSO can not control other MSO.

Tags: Digital Publishing Suite

Similar Questions

  • How to connect Apple TV to two different amplifiers?

    How to connect Apple TV to two different amplifiers?

    If you're talking about AppleTV 4 then there a single HDMI output only.

    You need either a HDMI switch or a divisor of direct HDMI to different amps (may not work at the same time due to HDCP) or see if an amp offers HDMI or optical output to the other depending on whether or not you want to distribute audio or video to the 2 amp.

    If you need a splitter/switch, it's an extra box and you might consider only 2 AppleTV, don't forget a rental on one will not be seen on the other.

  • How to use radio buttons to display different text depending on the selected button?

    I am new to acrobatXi and have been implemented on-line to fill PDF Forms.

    I have 3 radio buttons in a group (Group 1) choice1, the lendemain2 and the 3 choices.

    I would like a text box to display the text "price" If you selected option 1, the 'price B' If you selected option 2 and the ' price C "If you selected option 3.

    I have no experience of java, so any help would be appreciated.

    Use this code in the custom text field calculation script:

    var v = this.getField("group1").valueAsString;
    if (v=="Off") event.value = "";
    else if (v=="choice1") event.value = "Price A";
    else if (v=="choice2") event.value = "Price B";
    else if (v=="choice3") event.value = "Price C";
    
  • How to sync the button in the mainVI with a Subvi round?

    (1) son?

    (2) global variable?

    ================

    I want to stop some programs in Subvi execution by pressing the button in the mainVI. How to connect the button in the mainVI with a Subvi round?

    (1) son?

    It does work if I connect the button with the cycle via cables and connectors (from mainVI Subvi). That's because by the time press the button, Subvi has already asked the value (and it's remaining = FALSE until the Subvi ends).

    (2) global variable?

    I basically got same result.

    The position of the button is transferred to mainVI Subvi, but delayed.

    (3) the only solution I've found so far is to completely remove the Subvi and paste its code in the mainVI.But is not a good solution, because the code of the Subvi runs several times in a different parts of the mainVI.

    Thank you

    Solution: use a reference.

    Create a reference to the button in the main vi (right click on the button and select Create - reference).  Create a control on the front (Refnum palette - Refnum control) reference in your Subvi.  Connect refnum to a terminal.  In the main block diagram, wiring in the control reference at the entrance of reference Subvi you just created.  Subvi block, use node property to get the value of the order.  This will be a Variant, but you can use the variant data to convert it to a Boolean value.

    What is happening is that the reference that you pass to the Subvi is in fact an address (pointer) at its location in memory where the value is stored.  For example, when you click the home button, the value at this address gets changed.  Subvi, the property node can read the value at the same address because it is the address that you have spent in the Subvi.  If an instant change at hand is read by the Subvi.  Similarly, you can display an indicator of the Subvi for the most part, and it will update without having to wait until the end of the Subvi.

  • How to connect 2 different adsl2 + line by different ISP

    How to connect 2 different adsl2 + line by different ISP. We have two LANs, but we have just a printer and we want to share this printer. We have two different line ADSL but different ISP. How can we achieve this?

    Hello

    It is necessary to create the VPN connection.

    You have Windows XP Professional where your printer is installed and connected?

    If so, you can create VPN server in Windows XP Professional PC, wherever your printer is connected. Here's how:

    http://www.zdnetasia.com/configure-Windows-XP-Professional-to-be-a-VPN-server-39050037.htm

    Then, you need to configure modem ADSL (corresponding to your printer) - set port forwarding for port 1723 (PPTP) to the computer with the VPN server.

    You have to find your public IP address of the network where is installed printer - you can see in the ADSL modem (from configuration pages WWW) or open this page in the computer where is installed your printer:

    http://www.whatismyip.com/

    and you will see your public IP address.

    Then what to do – change one different internal subnet network - if one network has 10.0.0.0/24 second network must have another network addressing, for example, 10.0.10.0/24.

    And now set up connection on the computer you want to print - create the VPN connection to connect to the VPN server:

    http://support.Microsoft.com/kb/314076/en

    item 11. -write the public IP address.

    Name and password - use the user and the password of computer with WinXP Pro VPN server, which has the permition to incoming VPN connections.

    After successfully completing the VPN connection - click on Start - run and write \\x.x.x.x , where x.x.x.x is the IP address of the computer with printer and click OK. You'll see printers and shared files. Choose the printer share name and click on the name - the printer will install the drivers and then you can print a test page to the printer print test.

    LC

  • How to connect the slot button Cascades

    I am new to waterfalls and QML and yesterday I tried to port native QtWidget app to waterfalls, but it does not. The problem is, I add some buttons to the container in QML main file and coded my custom slot function which should be executed when the user click some button. But I don't know how to connect the clicked() signal to my function from the custom location.

    When using

    Connect (CloseButton, signal(Button::clicked()),this,slot(on_closeButton_clicked()));) or connect (exitButton, SIGNAL (clicked ()), this, SLOT (on_exitButton_clicked ())); I get error "unable to connect SIGNAL (null) to SLOT (on_closeButton_clicked ()) ' on all the buttons.

    Here is my code in app.cpp

    App::App()
    {
        QmlDocument *qml = QmlDocument::create("main.qml");
        qml->setContextProperty("cs", this);
    
        AbstractPane *root = qml->createRootNode();
        Application::setScene(root);
        textHolder = root->findChild("textHolder");
        openButton = root->findChild("openButton");
        saveButton = root->findChild("saveButton");
        saveAsButton = root->findChild("saveAsButton");
        closeButton = root->findChild("closeButton");
        exitButton = root->findChild("exitButton");
    
        connect(openButton,SIGNAL(Button::clicked()),this,SLOT(on_openButton_clicked()));
        connect(saveButton,SIGNAL(Button::clicked()),this,SLOT(on_saveButton_clicked()));
        connect(saveAsButton,SIGNAL(Button::clicked()),this,SLOT(on_saveAsButton_clicked()));
        connect(closeButton,SIGNAL(Button::clicked()),this,SLOT(on_closeButton_clicked()));
        connect(exitButton,SIGNAL(clicked()),this,SLOT(on_exitButton_clicked()));
    }
    
    //one slot function
    
    void App::on_closeButton_clicked()
    {
    //ui->textEdit->clear();
        textHolder->resetText();
    //if(file.open(QIODevice::ReadOnly | QIODevice::Text)){
        file.close();
        fileName.clear();
    //}
    }
    

    And qml

    import bb.cascades 1.0
    
    Page {
        id: mainPage
        content:
        Container {
        id: main
        Container {
        id: buttonHolder
        scrollMode: ScrollMode.None
                layout: StackLayout {
                    layoutDirection: LayoutDirection.LeftToRight
                    leftPadding: 5.0
                    rightPadding: 5.0
                    topPadding: 5.0
                    bottomPadding: 5.0
                }
                touchPropagationMode: TouchPropagationMode.None
                objectName: "buttonHolder"
                Button {
                    id: openButton
                    text: "Open"
                }
                Button {
                    id: closeButton
                    text: "Close"
                    onClicked: {
                    }
                }
                Button {
                    id: saveButton
                    text: "Save"
                    onClicked: {
                    }
                }
                Button {
                    id: saveAsButton
                    text: "Save As"
                    onClicked: {
                    }
                }
                Button {
                    id: exitButton
                    text: "Exit"
                }
            }
    
        //********************************
            Container {
                id: textHolderArea
                layout: AbsoluteLayout {
                }
                topMargin: 5.0
                leftMargin: 1.0
                rightMargin: 1.0
                bottomMargin: 2.0
                TextArea {
                    id: textHolder
                    textStyle.fontStyleHint: FontStyleHint.Default
                    layoutProperties: AbsoluteLayoutProperties {
                    }
                    leftMargin: 5.0
                    rightMargin: 5.0
                    preferredHeight: 645.0
                    textStyle.justification: TextJustification.Enabled
                    objectName: "textHolder"
                    text: ""
                }
            }
        //********************************
        }
    }
    

    And I have no idea how call my app.cpp C++ slot in my main QML file

    Your buttons should an objectName set to be visible to C++, the id is only visible inside the QML.

  • How to create a button with rollover that appears in a different place than the button when you move?

    Hello

    How to create a button with rollover that appears in a different place than the button when you move by using only the Muse (reversal may be a different shape and color of the button). I managed to do it using Photoshop and the separate layers and import it, but it is not a good solution. All suggestions will be welcome.

    Thank you

    You can try to use the widget of the Composition of the ToolTip. In this way, the trigger area is isolated and a "State of reversal" can be placed anywhere on the screen (compared to the trigger).

    • Remove the two triggers additional default
    • Set to display the targets on working capital
    • Select hide all initially.
  • I want to know how to turn on bluetooth on a laptop lenovo G570 series, where the button is located and how to connect, bluetooth switch

    I have a lenovo G laptop model 570. I'm not able to switch on the bluetooth so I want to know that how to switch on bluetooth, how to connect with the bluetooth mobile, how to pass it in order to transfer any image or a song from the laptop to the mobile & vice versa. Please provide a detailed answer.

    Hello

    Method 1: Connect to Bluetooth and other wireless or network devices

    http://Windows.Microsoft.com/is-is/Windows7/connect-to-Bluetooth-and-other-wireless-or-network-devices

    Contact the computer manufacturer for help in activating the Bluetooth to your laptop.

    Add a Bluetooth device to your computer

    http://Windows.Microsoft.com/en-in/Windows7/add-a-Bluetooth-enabled-device-to-your-computer

    Change settings for a Bluetooth compatible device

    http://Windows.Microsoft.com/is-is/Windows7/change-settings-for-a-Bluetooth-enabled-device

    Method 2: Update the Bluetooth driver.

    http://support.Lenovo.com/en_US/research/hints-or-tips/detail.page?docid=HT072724

    For reference:

    Bluetooth devices do not work correctly on a computer that is running Windows 7.

    http://support.Microsoft.com/kb/980396

    If the problem persists, contact Lenovo to get help.

    http://support.Lenovo.com/en_US/

    I hope this helps.

  • How to connect a TOSHIBA 28W23 to the other PC?

    I posted this on a number of sites different forum but no one really knows the answer.
    Thus, its what

    If I have an old TOSHIBA 28W23 - how it connectable to an other PC gx270s?

    If someone has any advice id love it.

    It depends on the ports/plugs available.

    Don t know both devices but maybe your laptop supports a SCART.
    In this case you must use a cable SCART.
    Is the computer supports s-video port? If Yes, then you can use a cable SCART-s-video to connect the two devices.

  • How to connect to internet via WiFi network?

    Can someone help me please? I'm desperate to be connected to the internet with my toshiba satellite pro wireless free.
    I had it up and working before but then I lost my connection, I'm normally very good with that sort of thing. Is there a helpful soul out there who could give me a step by step idiots guide how to connect my laptop without cables, etc.

    Any help would be appreciated as I want to use my laptop to its full potential.

    Thank you very much

    Hello

    First of all, you need to know if the wireless network adapter is installed on your laptop or not.
    Also check device manager if the Wlan card driver is installed correctly.
    Then you must configure your WLan router.
    In this case, you should check your manual for the router WLan configuration of this device.

    If you want to connect to the laptop to the router WLan so you must enable the wireless network adapter. Usually the WLan switch on the side of the laptop must be turned on (LIT)
    Then, you go to the WLan antenna with the FN + F8 key combination.

    If everything is on then you should go to network connections, it you have available WLan network properties. Go to wireless networks and select view wireless networks button. You should see your WLan.

    If you have set up the WLan encryption on the router, then you must first set the password to connect to the WLan.

  • How to connect the cables to an AMD Radeon HD 7450 video card for two monitors individual work?

    I have a HP Pavilion p6-2360eo with the video card Radeon 7450 connected to a monitor of 23xi Pavilion.

    Now, I want to add a monitor of 23xi more, but I do not understand how to connect the cables to the video card to get two logical screen (different views on each monitor)

    Supposedly this monitor can connect to the video card, you have the HDMI connection.  Assuming that the first monitor is connected via DVI, then try a HDMI cable to the second.  I got this from the description of the video card on THIS page.

    Support up to two displays at the same time in these configurations: DVI, HDMI and VGA + HDMI (using the included adapter cable)

  • How to connect satellite Pro L40-15 has to my TV?

    Hello

    I would use the laptop connected to my TV to watch movies. Can be connected using the TV as a monitor and what kind of cable would you use?

    Thank you
    Malc

    To connect the laptop to the TV is very easy. If you look at the user s manuals document you will find exact explanation how proceed.

    If I remember well your laptop should have S-Video output and video signal transfer port, you must use S-video cable. I hope your TV's S-Video IN port. If this isn't the case, you can use different cards.

    Please check this thread and read carefully reading written by Miro. He explained very detailed how to connect the laptop to the TV.

    If you have any other questions please post again.

  • How to connect my device bluetooth on HP Pavilion dv5-1135ee

    Hello

    In fact my bluetooth device is not plugged in, although the wireless LAN works fine!

    All the time I try to change the Bluetooth options in order to allow others to see my computer, he said "it seems your bluetooth device not connected correctly.

    Please info on how to connect my bluetooth device on HP Pavilion dv5-1135ee, keeping in mind that the turn on button is a perspective!

    and with this optical touch, I activated the WLAN + Bluetooth

    Wireless LAN works, and has no Bluetooth!

    I tried to download Bluetooth driver associated with my (Vista home edition) operating system from HP website, but @ acertain point configuration stopped, saying the same error that 'Bluetooth device is not detected.

    Any Info?

    Kind regards

    Message edited by Elnafarawi on 04/25/1987 12: 36

    AA

    Thank you very much, the problem has been resolved.

    The Solution: Run Windows Update and everything will be solved, actually it was an error inherenet on vista (Micrososft ISATAP adapter) so it might conflict with the Bluetooth device, and once the update is installed, all return to it's origin.

  • How to connect to internet on my xbox so I can access live and play online?

    Original title: unable to connect to live in barracks.

    I am in the Navy and I live in the barracks. To connect to the internet here, whenever we record in us get redirected to a page where we are required to accept a terms of the convention of use until we really connected. On a laptop, all I need is hit access Internet accept button and "poof!" On an xbox, I can't connect at all because there is no way to accept the terms of use beforehand. How to connect to internet on my xbox so I can access live and play online?

    Hello

    Check the link for Xbox support:

    http://support.Xbox.com/en-us/home

    In addition, the link and post your request in the forums of games to help:

    http://forums.Xbox.com/GFW/default.aspx

  • How to display on my screen 2 different applications at the same time?

    How to display on my screen 2 different applications at the same time?

    Hello

    The best place to ask would be the forums for answers corresponding to your version of Windows.

    Answers - Windows Forums
    http://answers.Microsoft.com/en-us/Windows

    =====================

    If you have Windows 7 with Aero - click with the right button on the taskbar at the bottom of the screen and click on 'show windows '.
    Side by Side.

    For all versions of Windows:

    You could also reduce less than full screen using the small box to the left of the red X at the top right
    and then resizing windows as you want.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

Maybe you are looking for