How can I create a series of webinars on 1 landing page?

Hi Topliners!

I'm working on creating a campaign for a series of webinars. I'm looking for advice on a couple of points and I would be delighted if someone could direct me to resources. I searched through the videos from BP and Topliners, but have not found what I'm looking for yet. I want to create a fully automated program that has 1 landing page, the ability to register for events or a single, and that sign you to determines the emails you receive. My main question is, where can I find advice on the creation of an LP which allows multiple entries to events, and how to properly feed only in the program?

Advice would be appreciated. Thank you!

Sonya Hey!

How are you?

We do this to ReadyTalk, and it's pretty simple. Create three fields to manage the webinar Webinar Programs A, B and c. are these three check boxes in your form fields. I use a HTML editor, so they would look like the following:

Then you run steps of conditional processing out of these fields to place the correct campaign reporters.

If webinarprogram1 = 1 (1 is checked) then place in the campaign

and so on.

Of course, each campaign is to manage all the assets associated with a webinar. You have therefore three campaigns for three webinars and three conditional steps.

You could also have them placed in a list shared as well and then used membership of the list shared as a manger in the countryside.

It is just 2 ways.

Hope that helps

Tags: Marketers

Similar Questions

  • How can I create several, permanent tablets, each with a different page "home"?

    I would like to be able to open FireFox and have two tabs automatically opened. Each tab should have an independent start page. How can I do this?

    https://support.Mozilla.com/en-us/KB/how%20To%20set%20The%20home%20page#w_set-more-than-one-website-as-your-home-page

  • How can I create a series of blocks of text using the Excel list values?

    It is first of all, the first script I am trying to write from scratch. I'm completely green at the script and I picked up a few bits of ID Adobe scripting guide, but nothing has really stuck still relating to this particular goal.

    My supervisor maintains a master list of advertising space, with the name of the account, is the width of the space, and how space is the height, in an Excel sheet. These spaces can number in the hundreds, and I'm stuck manually drawing a rectangle for each space, which takes a lot of time.

    I would like to create / helped to create a script that will take these values and "magically" to draw these spaces in the form of blocks of text, with the width (in columns) and the height (in inches) defined by the values in the main list, as well as the name of each account in the subsequent text frames.

    The script didn't necessarily need to be able to pull the values directly from the Excel sheet; Can I transfer a file text if necessary, or directly in the script, values he change because I need it. A great thing (if she is not able to pull directly from an Excel sheet) which is the number of spaces a week changes, and so do the accounts and the width and height. Accordingly, it would be ideal that values of the sheet could be modified easily, in order to create a new set of spaces as necessary.

    Positioning for each space is not crucial, only the height and width. If they were all on top of each other on the same page, it is a result for me. The main idea is to not have to draw them all manually, one by one.

    For me, this looks like a command, but I hope that some experienced there Scripting Guys can help me, because I want to become experienced as well.

    Thus, the TL; DR version:

    -Script to draw a series of text blocks.

    -Size of the text boxes should be defined by the values width and height of spreadsheet Excel.

    -Text blocks must have the account name as content (from account in the Excel worksheet names).

    -Accounts, width and height changes every week in the Excel sheet, so must be relatively easy to exchange all values.

    -Width values on the Excel worksheet columns. It would be ideal that the script could turn those numbers into multiples of columns as necessary.

    -Script (optionally) can take values directly from Excel sheet.

    -Script (option) can set the fill color for the gray text frame. (If it works as I think, I could just select all the resulting images of the text myself and put them all to grey at the same time... I'm not lazy as )

    Thanks in advance to anyone who can help in any way possible, even if it's just a little push in the right direction. This script will save 1 to 2 hours of boredom every week.

    Look like the perfect thing for the InDesign scripting.

    I copy content from Excel to a text file, for a format easily read in InDesign, and there will automatically be a TAB for each 'cell', just using copy and paste.

    Here is a piece of code, perhaps you could go on with (the addition of variable to change pages and the location on the page and other things).

    The readFileLineByLine function, can be easily reused with any function using "recall". You simply tell the function what you want to be executed for each line of text that reads:

    const COLUMN_WIDTH = 2; // Define the column width in inch
    
    var pageIndex;
    var textFramesExported; // not implemented.
    
    // Add a new dokument. Set myDoc to app.activeDocument to use
    // the current document instead of creating a new one.
    var myDoc = app.documents.add();
    
    // The doSomethingWithTextRow function is called upon for every line of text read.
    readFileLineByLine('c:\\test.txt', doSomethingWithTextRow);
    
    function doSomethingWithTextRow(row){
        // We expect the text line to be TAB separated (\t = TAB). We get that from just copying the contents of an
        // excel file into a text document.
        var cells = row.split('\t');
        var companyName = cells[0]; // The Company name in the first slot of the array
        var width = COLUMN_WIDTH * cells[1];
        var height = cells[2];
    
        // Create a new text frame for every row handled
        if (pageIndex==undefined) pageIndex = 0; // Count up when you have exported a number of texts, I leave this for you to do.
        var newTextFrame = myDoc.pages[pageIndex].textFrames.add();
        newTextFrame.contents = companyName;
    
        // The text frame is created in the top left corner.
        newTextFrame.geometricBounds = [0, 0, height + ' in', width + ' in']; // Top, Left, Bottom, Right 
    
        // You might want to move the textframes to other positions, keeping track of how many you put out per page.
        newTextFrame.move( [10, 10] );
    }
    
    function readFileLineByLine(path, callbackFn){
        var myFileIn = new File(path);
        if (File.fs == 'Windows'){
            // This was probably added to recognize UTF-8 (even without its start marker?)
            myFileIn.encoding = 'UTF-8';
        }
        myFileIn.open('r');
        var myEncoding = myFileIn.encoding;
        try{
            if (!myFileIn.exists){
                throw('Missing file: ' + myFileIn.fsName)
            }
            var ln = '';
            while(!myFileIn.eof){
                // Read the lines from the file, until an empty line is found [now as a remark].
                ln = myFileIn.readln()
                // if(ln !='' && ln!='\n'){
                   // Call the function supplied as argument
                   callbackFn(ln);
                // }
            }
        }catch(e){
            alert(e);
            gCancel = true;
        }
        finally{
            myFileIn.close();
        }
    }
    

    The file in C:\ in my example was recorded in UTF-8 format and looks like this (showing hidden characters):

    Post edited by: Andreas Jansson

  • How can I create a class to be used on all pages? CS6

    IM using Dreamweaver CS6 to create a mobile application. I have a lot of pages, but I need to keep change the stylesheet and include #pageid .class over and over again. Is it possible to do so as the class works on all pages. Thank you.question.jpg

    I apologize for my terrible wording, but I discovered that I had to drag my style sheet in the stylesheet that dreamweaver will automatically use to crush it. Thanks in any case.

  • How can I create a variable number of items on a page

    Hello

    Basically, I want to create a page with the kind of news messages and using my own news-component (a canvas with some labels in a certain page layout). So I used the Web service to get an array of messages and now I want to loop through all these messages and print a new components for each of them. Y at - it an easy way to do it, or what I need to do my own DataGrid like actionScript,.

    Thank you

    Steve

    (1) use a list with a custom itemRenderer
    (2) use a Repeater (probably the easiest)
    (3) use Actionscript for components addChild().

    Tracy

  • How can I create hypertext links leading directly to a specific page within my digital publication?

    Hello!

    I'm really pleased with the DPS and have published workbooks on this society.

    For our pre orders, we would use the publication and the link to our (Excel-based) pre order sheet links directly to specific pages within the workbook.

    Thus, for example, I produced (A) listed in the spreadsheet and I want to offer our customers click on a hypertext link to go directly to our workbook pages digitally published with all the background beta.

    Help, please!

    Cheers!

    Insert and manage cross-references in InDesign

  • How can I create dependent drop-down list. ?

    Hello

    How can I create dependent drop-down list in my custom page.

    JAG

    Hello

    See my prev thred:

    Re: List of choices dependence relative to a framework for Oracle Page

    Concerning
    Meher Irk

  • How can I create a set of installation / recovery discs?

    Right now, my computer works well with Windows XP, SP3.  How can I create a set of installation / recovery discs?

    I have the original series OEM number upwards, but have more discs - do I need something else before I start?  Can I make my own computer?

    Right now, my computer works well with Windows XP, SP3.  How can I create a set of installation / recovery discs?

    I have the original series OEM number upwards, but have more discs - do I need something else before I start?  Can I make my own computer?

    http://www.ehow.com/how_4797051_burn-Windows-XP-recovery-disc.html

  • How can I create a group through Outlook without the application Outlook email?

    How can I create a group by using Outlook without an application Outlook email?

    Sigmalambda wrote:

    How can I create a group by using Outlook without an application Outlook email?

    It is difficult to understand what you're trying to do. You can create a group and send an email to the group in any mail client. The recipients can use any e-mail provider or an e-mail client to receive e-mail. Please explain in more detail what you are trying to accomplish.

  • How can I create a new folder in Thunderbird

    How can I create a new folder in Thunderbird

    Right-click on the parent folder, a new folder option appears in the menu

  • How can I create a group in my address book?

    I am looking at the help page, and he has "contacts" in the list, but no link to something useful.

    How can I create a group? I want to send something to a group of people, but I don't want them to see all the other people who are part of the group.

    _ http://KB.mozillazine.org/Thunderbird: _FAQs_:_Create_Mailing_List

  • How can I create a trigger e-mail messages sets a phone when Gets an email from particulry?

    Hi team, support
    Customer email thunderbird whit, how can I create a trigger e-mail messages rule a phone dial when comes a word of the body particularly E-mail?

    Kind regards
    Alessandro.

    I don't think you can do this with ordinary Thunderbird. But this add-on

    https://addons.Mozilla.org/en-us/Thunderbird/addon/FiltaQuilla/

    allows you to run javascript or IIRC, launch an external program when a given filter condition is met. So this does not exactly provide an answer to your question, but allows a possible solution. '

  • How can I create a separate address book? I'm not on a mailing list but an address book where addresses are not mixed with my usual address b

    How can I create a separate address book? I'm not on a mailing list but an address book where addresses are not mixed with my address book regularly. I already have three created for me by Thunderbird address books. Add all new addresses to one of those, I'm not afraid to remove the other address books, because some of their addresses are not repeated in my address book "main". So if I delete all the names in one of the existing books, I need to create a blank book that will not mix the addresses with those of an another address book. HOW CAN I CREATE AN ADDRESS BOOK EMPTY? I want to be able to create multiple mailing LISTS using the addresses in this new book, I will eventually have an address book special with a variety of mailing lists, that I can use as I want to.

    In the address book, file | New | Address book.

    No menu showing "file"? F10 or ALT.

  • NB100 - How can I create a recovery on a USB CD?

    Hi friends,

    I recently got a NB100 with XP home. The operating system has been reinstalled and did not have any CD of the operating system.

    Given that I have not an external CD drive how can I create a recovery on a USB CD. I would like to see the function of USB USB just like the CD in case something really goes wrong.

    Can some help me to find a tutorial to do this?

    Thanks for your help.

    SAJ.

    Great! Thanks for sharing this with us!

  • I have problems of space on my iPhone 6. I have only 21 photos and 2 videos on my phone. However, I am on a discussion group on whatsapp. How can I create more space for my phone? I also have very few applications on my phone.

    I have problems of space on my iPhone 6, I have only 21 photos and 2 videos on my phone. However, I am part of a chart group on whatsapp. The problem now is that my storage space is almost full. How can I create more space for photos and everything?

    You cannot create more space for everything.  All you can do is remove apps, photos and especially videos to make room for other pictures and videos.

Maybe you are looking for