How to add a block of decision in a campaign when the user has downloaded a pdf file

Hi all

We have implemented a campaign flow and check if users open and by e-mail. Now, we want to follow if they have visited the page destination and from there if they have downloaded a pdf file.

Is it possible to have these as decision in a stream of campaign block?

Thank you

Hi Alex,

Have you managed to make it work?

Gary

Tags: Marketers

Similar Questions

  • An email received, how can I configure my email to receive a notification when the recipient has read the email?

    How can I configure my email to receive a notification when the recipient has read the email?

    Based on your e-mail program, a read receipt can be ignored by the recipient and some servers will block any reception

    Basically there is no process by which a receipt can be confirmed or that the recipient has read the mail - except by asking them directly

  • When you try to download a PDF file to an interactive site, I get the announcement: "the attached PDF file is referring to a non-embedded font Tahoma. Please delete, incorporate the police and set again. "How to integrate it, or in fact any other font?

    When you try to download a PDF file to an interactive site, I get the announcement: "the attached PDF file is referring to a non-embedded font Tahoma. Please delete, incorporate the police and set again. »

    I couldn't get rid of the Tahoma police in the WORD file.

    How to integrate it, or in fact any other police?

    It should be an option to make the PDF.  Which version of Acrobat you are using, and exactly the method and parameters do you use to make the PDF?

  • How to make a text field required at run time when the user clicks on the box?

    I had a form, there are several checkboxes fields and the text associated with the check boxes. If the use clicks on the checkbox then partner

    text fields should become mandatory. I tried the change event and the click event of the boxes. There is error in the onChnage event and I got some odd results in the click event on. Sometimes, if the user clicks the check box, then for the 1st time the field is not required, then the user onclicks the box and when the user clicks the check box for the second time the field becomes necessary, but if I turns off the option highlight the field and selects the field becomes necessary even if the user onchecks I am totally confused! To add that I have also written an incorrect code always I reached the goal? How it can be possible. I write the codes below, please help me because I am working under a deadline from the client.

    onChange event:

    var = this.boundItem (xfa.event.newText) newVal;
    if(newVal == 0)
    {
    xfa.resolveNode ("form1. Subform0.Subform1.Subform9.Subform10.Table48.Row4.Purchasecost3_1'). validate.nullTest = "disabled";
    }
    on the other
    {
    xfa.resolveNode ("form1. Subform0.Subform1.Subform9.Subform10.Table48.Row4.Purchasecost3_1'). validate.nullTest = 'error ';
    }*/

    For the onClick event:

    var a = xfa.resolveNode ("form1..") RawValue Subform0.Subform1.Subform9.Subform10.Table48.row2.CostItemRecovere d_OnlyEnergyCharges");
    App.Alert (a);
    if(a == 0)
    {
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck__L1_1").validate.nullTest = 'error ';
    }
    if(a == 1)
    {
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck__L1_1").validate.nullTest = "disabled";
    }

    Please help someone!

    Hello

    You may need this resolved at this point, but here are a few tips.

    An example of a loop in a dynamic array is here: Re: how to make invisible/visible or hidden columns with checkbox?

    You are usually not necessary to resolve the nodes, especially when the script object is in the same table as the target objects.

    For example if the table was not static your script could be simplified:

    if (this.rawValue == "1")  // this object is in Row2
    {
         Row4.ComplianceCheck_L1_1.mandatory= "error";
    ...
    }
    

    However because you will be to loop through all the rows in the table repeatable instances / then you need to resolve the nodes. Take a look at the example above.

    In your script, you have to Row8 Row4. I don't know if this is repeatable or just some of them. If we take Row4 as being repetitive, then you can apply the following to all repeatable lines.

    var vRow4 = Table48._Row4.count;
    console.println("Row4: " + vRow4); // You can delete this or comment it out after testing
    
    if (this.rawValue == "1")  // this object is in Row2
    {
         for (var i=0; i
    

    I have not tested, but it should be close to work.

    Good luck

    Niall

  • How to program the button to download a PDF file?

    I'll put up a new site of CVS in Flash CS5, and I created a button so people can click on the button to download a copy of my CV PDF, but how to program the key so it downloads the PDF file?

    It doesn't seem to be a problem in actionscript at all.  You place a file with this name on this web site/url... http://www.yahoo.com/LAudell_Resume.pdf.   Although I doubt that you have the kind of necessary traction with Yahoo in order to plant the files on their main url.

  • How to remove ButtonField when the user has clicked and it is in HorizontalFieldmanager...

    Hello
    My screen I have the list of data and at the end I buttons when I click the button, the data should remain and should be deleted. My screen I have a VerticalFieldManager and given I have place in HorizontalFieldManager and I added the button horizontalFieldmanager.even I place in HorizontalFieldmanager... to be more detailed, I see: -.

    class Page extends Screen
        {
            LabelField name,namevalue,Phone,phoneNumber;
            ButtonField btn;
    
            Page()
            {
                              super(new VerticalFieldManager(),NO_VERTICAL_SCROLL);
    
                    VerticalFieldManager vfm_Data = new VerticalFieldManager(Field.USE_ALL_WIDTH | VerticalFieldManager.VERTICAL_SCROLL | VerticalFieldManager.VERTICAL_SCROLLBAR);
    
                                         HorizontalFieldManager hfm_name = new HorizontalFieldManager();
                     name = new LabelField("Name     :     ");
                     hfm_name.add(name);
    
                                         namevalue = new LabelField("Jackey");
                     hfm_name(namevalue);
                               vfm_Data.add(hfm_name);          
    
                                HorizontalFieldManager hfm_phone = new HorizontalFieldManager();
                     Phone = new LabelField("Contact Number     :     ");
                     hfm_phone.add(name);
    
                                         phoneNumbere = new LabelField("123456");
                     hfm_phone(phoneNumber);
                                vfm_Data.add(hfm_phone);
    
                   //Like above HorizontalFieldManager i have 10 more say HorizontalFieldManager with Data and value and i have added all the HorizontalField Manager to VericalFieldManager vfm_Data....and i have a button in the end :
    
                HorizontalFieldManager hfm_button= new HorizontalFieldManager();
                btn = new ButtonField("Accepted");
                hfm_button.add(btn);
                vfm_Data.add(hfm_button);
    
                //and at i add the verticalField manager.
    
                add(vfm_data);
    

    My requirement is now when I click on the button accept I want to delete field button that I do a delete (hfm_button);   , But it says an error "Attempt to delete a field that does not belong to the Manager."

    Can you please tell me how to delete the field button when I click on the button accept...

    First your VFM is named vfm_Data, and at the end your constructor you add a (nonexistent) value to the screen named vfm_data.

    Have you tried vfm_Data.delete (hfm_button)?

  • How to perform an action when the user clicks on the "OK" button on a script by xfa.host.response

    Hello

    I have a script that when you exit a field without the user data that a script response is mentioned.

    When the user has entered the required data in the dialog box and click the OK button I wish that the data user in the field as a value.

    Please can someone tell how this is possible?

    The script is listed as follows:

    If this field is stopped without the user to enter data, the following message is displayed

    If

    (Employee_ID.rawValue == null)

    {

    XFA. Host.Response ("is a required field, enter your employee id');

    }

    Hello

    I think that this script will do the job:

    If (this.rawValue is nothing)

    {

    var id = xfa.host.response ("is a required field, enter your employee id');
    this.rawValue = id;
    }

    Yan.

  • How to add a transient attribute of a table values in the new attribute group wise transient that is to say wise customer?

    Mr President.

    How to add a transient attribute of a table values in the new attribute group wise transient that is to say wise customer?

    as below

    custwisevalue.png

    Concerning

    Hello world

    for an overview in the following form

    This is the sql query that reach this format

    SELECT c.name customer_name,
            p.name product_name,
            sl.sal_qty,
            sl.unit_sal_price,
            sl.sal_qty*sl.unit_sal_price AS salesvalue,
            CASE
              WHEN ROW_NUMBER () OVER (partition by c.cust_id order by p.prod_id desc,sl.sal_id desc) = 1 THEN
                  SUM (sl.sal_qty*sl.unit_sal_price) OVER (PARTITION BY c.cust_id)
            END totals
    FROM customer c INNER JOIN sales s ON s.cust_id = c.cust_id
    INNER JOIN salesline sl ON sl.sal_id = s.sal_id
    INNER JOIN product p ON p.prod_id = sl.prod_id
    ORDER BY c.cust_id,p.prod_id,sl.sal_id
    

    Cheers and enjoy

    Respect of

  • How to add a profile for a document of speciaty in the print module?

    How to add a profile for a document of speciaty in the print module?

    (1) download the icc profile.

    (2) install the icc profile in the right folder. If you are on Windows is C:\Windows\system32\spool\DRIVERS\color.

    (3) in the book Module / book settings panel click the profile appears, and then select .

    (3) Lr should automatically display the profile in the list, provided that it is a RGB profile. LR is not CMYK and doesn't recognize nor show any CMYK profile.

  • How to determine that the user has purchased an article or not?

    Hello

    Can someone tell me how can I determine if the user has purchased an article or not?

    Until now, I add to the cart and then allow user to pay for this item through Paypal. But now, my goal is to show all these items that the user has already added, but not bought yet.so, whenever user logs in a/c, he can see the item in my cart.

    Please... help me

    This sounds like a question of PayPal, then you will want to check these forums. If you were using in-app purchases of BB, so yes, it has an API to check the previous in-app purchases.

  • How to make the background sound auto replay when the user back to the page?

    Hello. I do a flash project using Adobe Flash CS6 and AS3. Add background sound in every scene. However, I had put a single command to the sound of bg to stop in every scene. But the problem is when the user back to the previous page, the sound does not play. Anyone knows how to wow the background when the user returns without any power button etc.? Thanks in advance!

    var mySound:Sound = new Sound();
    mySound.load (new URLRequest ("sound.mp3"));
    mySound.play ();

  • How prevention JButton to actions generated when the user press down

    How prevention JButton to actions generated when the user hold down the key or the short cut
    The code below to show the question when the user keep pressing Alt O
    We want to stop the JButton to generate multi shares just a share only
    A code example shows the behavior that needs to be prevented. Keep pressing "Alt + O" and you will see that the standard ouptput will print the timestamp
    Note Please, I'm NOT interested in the mouse press which is a solution by adding a threshold (setMultiClickThreshhold (long line) on the JButton as an attribute.

     
    public class TestPanel extends JPanel
    {
    
       private JButton btn;
    
       public TestPanel()
       {
          btn = new JButton("Open");
          this.add(btn);
          registerCommand(new MyAction(), InputEvent.ALT_MASK,
                KeyEvent.VK_O, btn, btn.getText(), 0);
       }
    
       public static void registerCommand(AbstractAction action,
             int mask,
             int shortCommand,
             JComponent component,
             String actionName,
             int mnemonicIndex)
       {
          InputMap inputMap = component.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
          KeyStroke knappKombination = KeyStroke.getKeyStroke(shortCommand, mask);
    
          if ((component instanceof AbstractButton)
                && mnemonicIndex >= 0
                && mnemonicIndex < actionName.length()
                && (shortCommand >= KeyEvent.VK_A && shortCommand <= KeyEvent.VK_Z))
          {
             ((AbstractButton) component).setDisplayedMnemonicIndex(mnemonicIndex);
          }
    
          if (inputMap != null)
          {
             ActionMap actionMap = component.getActionMap();
             inputMap.put(knappKombination, actionName);
             if (actionMap != null)
             {
                actionMap.put(actionName, action);
             }
          }
       }
    
       public static class MyAction extends AbstractAction
       {
    
          /**
           * 
           */
          private static final long serialVersionUID = 1L;
    
          @Override
          public void actionPerformed(ActionEvent e)
          {
             System.out.println(System.currentTimeMillis());
    
          }
    
       }
    
       public static void main(String... args)
       {
          SwingUtilities.invokeLater(new Runnable()
          {
             public void run()
             {
                JFrame frame = new JFrame("Testing");
                JPanel panel = new TestPanel();
                frame.getContentPane().add(panel);
                frame.setPreferredSize(new Dimension(500, 500));
                frame.setMinimumSize(new Dimension(500, 500));
                frame.pack();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setVisible(true);
             }
          });
       }
    
    }
    Published by: user12130673 on 13-feb-2013 03:01

    Use getKeyStroke (int keyCode, int modifiers, boolean onKeyRelease) hit with onKeyRelease = true instead?

  • I cannot download a .pdf file using Adobe Acrobat module 11.0.6.70. Disabling the add-on allows me to download the .pdf.

    I tried to download a .pdf file and open it with Adobe 11.0.6.70 module in FF 25.0.1 and received a message that the file has been damaged and cannot be repaired. I called the Technical Support of the site, and they asked that I have try with another browser download (ugh!) and the download worked. I returned and disabled the add-on Adobe in FF and the download worked in FF also. Don't know who developed the add-on, but one who did, left a bug in the process.

    HI central_texan,

    Please upgrade to the latest version of Firefox by going on the subject of Firefox from the Firefox menu. If download hangs at the last minute (just before reaching 100%), the cause may be an antivirus software that tries to parse the file and during this process the instance of Firefox crashes. It can also occur when the download is corrupted. What I want to know is in the system requirements, which means "Firefox Extended Support Release".

    To resolve the issue, try disabling the analysis as follows:

    1. In the address bar, type Subject: config and press enter. The subject: config "this might void your warranty!" warning page may appear.
    2. Click on I'll be careful, I promise!, to continue on the subject: config page. A list of parameters must appear
    3. Filter the list by typing in the search bar at top. Enter scanWhenDone. Now you should find the browser.download.manager.scanWhenDone preference.
    4. Double-click this preference to set the value to false.
    5. Then, try to download something and see if it still crashes.

    Please reply and let us know if this helped you!

  • How can I stop acrobat automatically opens when I download a pdf file?

    Acrobat Reader opens automatically when I download a pdf file. How can I change this?

    Assuming you are using Safari, in the General preferences, you have "Open 'safe' after files have downloaded" checked? If so, uncheck the box.

  • How to catch the movement of return on investment when the user drags a handful of return on investment?

    Hello, I use VDM2009 with c#. I need to make some manipulations of KING and need to intercept mouse movements, but do not know what to use. For example, suppose I created a KING OvalContour and that it is a circle (width = height). I have to do 2 things: 1) when the user drags one of the 4 handles, I need to check what handle is moved so that I can drag a few adjacent programmatically so that the circle is a circle and does not become an oval.

    (2) when the user clicks/behind the center of the circle, I need prevent the update so that the circle does not move the return on investment. (It would be even better if there was a way to disable the movement of the circle and allow the scale.) I don't know what to use to accomplish this behavior and do not know how to retrieve the KING handles about which is slipped. Any help would be very appreciated. Thank you, Neville

    Hello Ben,

    Thanks again for your help.  I looked up the definitions for the ROILeft, etc., in the reference VB help as you suggest.  While many objects is similar in setting/name, it seems that these objects (ROILeft, etc.) are those who are not easy to find how to use in the c# version.  But thanks for pointing me to the help file in VB Ref.  I wish, in there wasn't one for c#... I can't understand how to search effectively in the Visual c# help file that is integrated into Visual Studio.

    Thanks for your suggestion about the return on investment.  It makes sense, and I'll keep it in mind.

    In the meantime, I found a solution to my problem.  I use c# function public bool PreFilterMessage (ref Message objMessage) for prefilter mousedown and mousemove event messages.  Once I found one, I check if the cursor is on a part of the KING that I care.  If I want to do something special, I'm doing it right here.  If I want to keep the normal behavior of the KING OR on mousedown and mousemove, I trash the message.

    It's a total pain, but it seems that functions NOR are not put in place to do this kind of things in an elegant way.  Thanks again for your help!

    Neville

Maybe you are looking for

  • Qosmio F60 - 10j frezzes at random and often a few seconds

    Hello I have a Qosmio F60 - 10 days and he frezzes randomly and often a few seconds when I watch a video, I play or when I use the tv tuner.I tried to update the drivers for video card a nvidia geoforce gt330m. I downloaded from the homepage of nvidi

  • Satellite 1800-314 - what memory is taken in charge

    I just got a Toshiba Satellite 1800-314 of the internet for Christmas from my daughter.I installed the memory is 240 MB and I'm trying to source more that when you watch a DVD it vibrates. can someone tell me if pc133 ram is supported? Thank you

  • Epson Stylus printer 610 is skip lines in Word and Excel

    Original title: Epson Stylus 610 My printer is skip lines in Word and Excel.  How can I fix it.

  • Connections Outlook Express fails repeatedly.

    I frequently get a message telling me that the connection of Outlook Express has no, and then I can't even open Outlook. When I restart the computer, Outlook Express is restored to functionality. I stripped everything I dared processes and startup pr

  • Sensitivity/shortcut keyboard keys hypersensitive?

    When you type in the Word program, if, for example, I type 'I' and that 'I' change text in italics. In other words, at least, better than typing "d" and have my document disappear... deleted in the ether, it seems. Text often suddenly passes to the r