How can I create hidden (to be developed) content, to READ the REST of links in an email campaign

Hello


Just wondering if BC offers a drag-and-drop for a link code READ MORE hidden content and it reveals so (ie. unfolds or dilates) contained in a model/electronic/campaign newsletter? Good example is week 4, term 1-2015

Also, is it possible to password protect archive browser campaigns and is it

Also possible to import a living such as google calendar?

Any guidance would be appreciated.

KP

Hello

This isn't an email campaign, it's a Web site.

You cannot run javascript these sorts of things in the emails. Emails aren't websites, they are older technology, but a lot more security and also the constraints of size restrictions. They are is emails.

So no, British Colombia or outside of BC, we can't what for your campaigns. Website stuff - Yes, of course, but you need only to javascript code yourself.

Tags: Business Catalyst

Similar Questions

  • On a flyer, I need to produce black and PMS color. How can I create a PMS color (instead of something on the color wheel).

    On a flyer, I need to produce black and PMS color. How can I create a PMS color (instead of something on the color wheel or RGB)?

    It depends on the application. You use an inDesign application of PAO as Quark XPress, or something else?

    Many consumer apps is not able to output CMYK or specific pantone color combinations.

  • How can I create a slide show 100% width, but have the caption in different positions for each slide.

    How can I create a slide show 100% width, but have the caption in different positions for each slide.

    There is placement of the legend only one for all the images in a slide show.

    The slideshow widget is specialized to create slideshows of the image. The widget of composition is a much more flexible widget which allows any combination of images and text in the trigger containers or containers of target of the widget. A widget of composition could be used to create a slide show with several legends by image and/or legends of different places for each image. The disadvantage of the widget of composition is that, due to the nature flexible widget, very little is automated for you and so it is much more intensive work to create a slideshow of images using the widget of composition.

    Thank you

    Sanjit

  • How can I restore hidden toolbar menu of Adobe Acrobat, reader?

    How can I restore hidden toolbar menu of Adobe Acrobat, reader?

    F9 is for the menu bar.

  • How can we create a promotion that is not out of the box?

    Hello
    How can we create a promotion that is not out of the box?

    Hello

    You can create a new descriptor from point to point in atg/commerce/pricing/pricingModels.xml.

    ~ Abdelali

  • How can I create an eyebrows in file menu and save the option?

    How can I create a menu of file eyebrows, if I used my user to choose an image from the PC.

    And how do I backup my user settings? (this is application is going to be on my pc users only)

    You can launch a file with FileReference selection dialog. You can save the settings using a SharedObject (like a cookie).

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=17_Networking_and_communications_7 .html

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=lsos_3.html

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=lsos_5.html

    If it is a Flex application, you can select a file from the local computer and send it to the server, you will not be able to open the file in the Flex application, because of the security sandbox.

    If it is an AIR application, you will not have this restriction.

    If this post answers your question or assistance, please mark it as such.

  • 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 VI with inputs that run immediately when the update?

    I'm using LabView for controlling stepper motors. I would create a VI with a front panel that has 4 arrows, 2 per engine. My goal is to be able to run the VI and then press a button to move the engine.

    I created separate VI for each funcition of engines - one vi to set current operations, to determine the current travel, another to move up by a certain amount and so on. Work of these vi and I can move and adjust engines, but only by running separate VI.

    How can I combine them into a single VI and make them run to the pressure of a button or the change of a property? An example would be to establish a new current holding company and place the operation current vi run immediately and send the order to the engine. Then continue to press the arrow keys without having to hit 'run' on an another vi.

    Thank you very much


  • How can I create a background gradient which does not affect the readability of the words in the foreground?

    Screenshot (27).png

    Note that the words seem to disappear as the blue becomes more important?

    How can I fix it?

    In addition, since I work more than 30 plans, is there a general framework that needs to be changed?

    Furthermore, this gradient was created using the gradient tool, and is therefore not part of the background.

    Under file-> Document Setup, I found that you can create a background Uni but see no options for a gradient fill.

    I would appreciate help.

    I'm like your gradient is above the text.

    Select your gradient and the hit Shift + Ctrl + [ ]

    This should send your gradient to the back behind the text

  • How can I create a filter to remove only "junk" from the server?

    One of my email accounts is an important customer. I manage their online customer service. Normally our protocol must always leave all messages on the server, so that one Thunderbird account, I never put delete messages on the server.

    But the account has recently started a lot of unwanted messages. Thunderbird is doing a remarkable job to those tagging and placing them in the folder junk e-mail for this account. I would like to create a filter that could remove them from the server, preferably more than "x" days old so I could monitor activity to ensure that no important messages are removed.

    I noticed that in "Filters" I can create a custom header of my choice filter, but am unable to create what I want which is:
    -After the mail is marked as junk by Thunderbird to delete messages from the server, if they are older than "X" days (my choice of 'X').
    -not to delete all messages in the server for this account

    Try:

    • Right-click the junk e-mail folder and select "Properties".
    • Click on ' retention policy tab
    • He chooses to "use my account settings."
    • Uncheck this option for other options.
    • Select: for example: delete messages more than x days.
    • Click OK to save the changes.
    • Close and then restart Thunderbird
  • How can I create in RoboHelp 2015 dynamic content filtering?

    I would like to know step by step.

    I tried already several times, without success.

    My idea is that end users can see content according to the options chosen by them. I tried to apply conditional build tags to topics, but it did not work.

    I also tried to create expressions for my build labels (for example, see one, but do not show B and C), but something was wrong in the process.

    To set this feature is perhaps more difficult than I thought. If someone could help me, I appreaciate it.

    Thanks in advance!

    Hello again

    I just uploaded a short video showing the process. See if it helps to make sense of things.

    Click here to see

    See you soon... Rick

  • How can I create a temporary landing page that redirects to the homepage

    I need to build a landing page to promote a product for about 30 seconds.  I know how to redirect the page then to go to the homepage, but how can this be the landing page and not to the homepage?  I know it's probably a simple way to do it, but it seems to be the lack.

    Make a new page, you can title it Landing Page if you want to and in terms of the page, drag 'Landing Page' to the front to make it in front of your home page.

    Sent from my iPhone

  • How can I create a sharp corner to an anchor with the pen tool?

    I can achieve this effect by fluke sometimes if I move the anchor point, usually it is when two paths come together at an acute angle.

    How I always do I get this effect if?

    Maybe you need to change the limit tab in the stroke Panel to get a sharp angle like this:

  • How can I create something like this... See the link

    Please see an example of a typical newsletter at this link: http://kW.com/OutFront/index.php?issue=may-Jun

    I really want to learn to do it (do the pages turn, have a menu visible in the background, etc...).  And, if possible, I would also like to be able to insert links in the document that take the reader to another location in the document (for example, links on a Table of contents page that brings the reader to a place in the document).

    Where should I start?  I have Adobe 8 Standard.  Can I first create the entire document in PDF format and then transfer on in InDesign to finish once I have the content?  (I just started learning InDesign, if I'm not even too quickly on this issue.)

    I could really use help and advice on that!   I'd even pay a tax of tutoring if someone would be willing to lead me through the steps I need to do!

    If you can help, I would really appreciate it.   Thank you!

    lablovr (at) gmail.com

    Your options are

    (1) you can use a service provider which converts your PDFS into flippage magazine as in your example, most of them are commercial. Usually, you pay some question of costs/published or that there may be some monthly payments so... They place your magazine in their own special server and give you a link to your Web site.

    (2) you can create your flippage magazine out of InDesign CS4 as mentioned Scot. If you do it directly from InDesign, it s very easy to produce, but there is no element of navigation such as zoom, go to the next/previous page etc.. You can do some of these elements of InDesign layout the buttons and links hypertext, but that s of your time.

    You can also view an add-on for InDesign called eDocWorkflow. It automatically brings a user interface to your SWF files after exported them from InDesign CS4: http://www.prepress.fi/eDocBrowser

    West trial to test...

  • How can I fix an error message saying "could not read the manifesto of chrome?

    Unable to read the chrome manifest ' queue: / / / C:/Program % program % 20Thunderbird 20(x86) /Mozilla % 20Files / chrome.manifest'.

    All of a sudden, I can't connect to the server '? ' and I get some error messages. The above more "the RETR command failed" and "sending the password has failed, #AUTH701 Service unavailable."
    I tried to remove my password of memory and he asked me again but no joy. I checked and my webmail - Yahoo - works fine. TB won't just go get him. Can I get help from anyone please?

    The problem is that the ATT / Yahoo email service is apparently run by kindergarten children and no client att is getting what they pay for. They give a list of messages to thunderbird, it can recover, then say gotcha I can't get back them. ATT it works not. You use their mail add in a browser.
    I speak of this here http://thunderbirdtweaks.blogspot.com.au/2013/04/the-retr-command-did-not-succeed-thank.html

    However, if you dig into your Thunderbird profile, locate the popstate.dat file and delete it.

    Menu (alt + H) help > troubleshooting information

    Click the display folder

    Close Thunderbird

    Navigate to the mail folder in the Explorer window that opened.

    Now the att.yahoo or any name server they use this week.

    popstate.dat will be in this folder.

    Delete this file makes Thunderbird forget where it is up to download mail from Yahoo, apparently changing id numbers at random intervals or something. The result is that you have left on the server is downloaded again.

    So, you can this add-on to clear the mess. https://addons.Mozilla.org/en-us/Thunderbird/addon/remove-duplicate-messages-Alte/?src=search

    I blame ATT / Yahoo also are about 99% of the people who come on these forums about this ATT/Yahoo customers. But it could be the continuation of security they provide as well. McAfee caused problems with Thunderbird for over a year and my best recommendation is to not let anywhere near your mail. It is, however, something quite unique to Att / Yahoo that does not exist until they became involved with the yahoo service.

Maybe you are looking for

  • How do I suggest a change to Thunderbird?

    In the library, search bookmarks is the site you are looking for, but the results list does not show you what the bookmark subfolder is in. It's very frustrating when you want to edit a site in the subfolder where it resides.

  • Can not play my UK DVD on my US bought satellite L875-S7108

    Hi, maybe this is a stupid question, but I can't play my UK bought the DVD on my US bought satellite L875-S7108 laptop. The word of user manual in the following "TECHNICAL NOTE: your optical disc drive is called upon to play region 1 (North America)

  • Extra RAM for Satellite L70-B-14Z

    HelloI cannot find anywhere how to adapt the increase ram for my new Satellite L70-B-14z, am I to guess that this model should be returned to the Toshiba authorized service center? We can just confirm that this model be OK to win 10 updated. I'll tak

  • High slope your fort outside cabin of new-2e to behave this way!

    Hi there - I have a whole new Touchsmart 23 all-in-One F207a - Windows 8, 16 Gb Mem and 2 TB of HARD drive. As soon as he puts a sharp tone - (2261,5 Hz to 64 to 71 dB) - is this. This happens as soon as you press the power switch, so no start time o

  • I have updates since 2007. Can I uninstall them?

    I have updates since 2007.  Can I uninstall them? [Original title: help]