Is it possible to add a QR code to InDesign eBook?

Is it possible to add a QR code to an InDesign document, and then export it to eBook so that the eBook and the QR code works on mobile devices?

Addition of a QR code to the InDesign document, simply creates an embedded image. Anchor this image somewhere in the text and it will translate on the ePub.

But what do you want that code QR to do?

If you want the person who reads the book click on the QR code to access a web page, you'd be better off with a hyperlink.

If you want the person with the book to hold the mobile camera upward and another person to use a reader to analyze the code, then 'Yes'. This can be done.

He is clumsy, but devices can mate like that.

Tags: InDesign

Similar Questions

  • Is it possible to add a badge in Blackberry?

    Hello

    I would like to add more information (as number) on several images,

    which could be done easily by adding badges to it.

    Is it possible to add a badge on the image in Blackberry app?

    If not, could someone please suggest otherwise the task

    Kind regards

    Call the super.paint () from the overrided method and after putting your code.

  • Is it possible to add a ToolTip to a hot spot of HTML drop-down list?

    Is it possible to add a ToolTip to a HTML drop down or expand hotspot?  The hot spot will appear as green text on the screen to help, but short to write a statement in the help to the users screen, click on the text, I have not found another way to express this. A ToolTip is preferable to a statement that is written on the page, because when I publish a guide to help, I carefully go through the document and remove all these references to "by clicking the green text. It would be ideal to have a mouse over ToolTip as there is a hyperlink. Is there a way to do this? If this isn't the case, Adobe can think to add this feature? Thank you.

    Hello

    For starters, you can apply a conditional tag to build the text that indicates what's happening, and then use a conditional Expression to build to remove this text when you target an output that should not have.

    Add a ToolTip, it is quite easy, but is not intuitive.

    Select the text of the menu drop-down, and then look at the HTML code. Should look like this:

    Modify the code as follows. Right after the class = 'dropspot' hand, insert the following text:

    ALT = "Insert your text here" title = "insert your text here."

    When you are finished, it should look like this:

    And after than that, here what my link looks like when I hover:

    See you soon... Rick

  • Is it possible on board animate through code to set a value of transformation of timeline?

    Is it possible on board animate through code to set a value of transformation of timeline? If this isn't the case, it would be a great feature. For example, I have a symbol that I'm animated to look like, it's jump using the timeline. I would like to use the code to turn a bit randomly the symbol at the height of the jump before she comes back down. I tried sym.$("element").css ({"transform":"rotate("+randNum"deg)"});}) in a trigger on the timeline, but it seems that my code gets overridden by the transformations of chronology of Edge.

    It would be cool to have a user interface to say choice a value in a range for this keyframe. Or if there is a way to do it through code that had to be cool.

    If I understand correctly, you want to do animation of the jump to animate and change rotation according to your logic.

    You should take this approach.

    1. Add a handler for "Timeline.update".

    2. in the Manager to obtain the current transformation

    3 merge your rotation with the current transformation

    4. set the transformation merged as a symbol. $("element") .css ({"transform":...})

    You will find this useful

  • Is it possible to add text to the cells and apply the character style in the cell

    I work in InDesign on Mac 5.

    I have two tables of formatting with information that will be eventually combined. I implemented the scripts I found on these forums to add the columns needed, merge lines and fill the cells merged with the appropriate color, but can't two remaining tasks.

    1. is it possible to add text to a cell of some?

    2 and it is possible to apply a character style to cells? (different cells than those that I need to add some text)

    I played with this code but do not know if it is even close...

    {

    table. Rows [0]. Cells [0]. InsertText (' CS/PS");

    }

    {

    table. Rows [0]. Cells [0] .appliedCharacterStyle ("bold");

    }

    Here are the scripts that I have combined so far for the table...

    Add column

    myTable = app.selection [0];

    MyColumn = myTable.columns [1];

    for (a = 0; < 1; a ++)

    {

    myTable.columns.add (LocationOptions.AFTER, myColumn);

    }

    Merge lines

    table = app.selection [0];

    If (table.hasOwnProperty ("baseline") table) = table.parent;

    If (instanceof cell table) table = table.parent;

    If (instanceof column table) table = table.parent;

    If (instanceof row table) table = table.parent;

    If (instanceof Table table)

    {

    table. Rows [0]. Cells [0]. Merge (table.rows [0] .cells [1]);

    }

    {

    colours alternating in merged lines

    r = table.rows [1];

    n = app.activeDocument.swatches.item ("orange");

    b = app.activeDocument.swatches.item ("PANTONE 3005 C");

    for (c = 0; c < r.cells.length; c ++)

    {

    If (c & 1)

    r.Cells [c]. Properties = {fillColor:b};

    on the other

    r.Cells [c]. FillColor = n;

    }

    }

    Hello

    1. If you want to add the text, go further in:

    table. Rows [0]. Cells [0] .insertionPoints [0] .silence = ' CS/PS;

    2 similar with application of styles:

    table. Rows [0]. Cells [0] .texts [0] .appliedCharacterStyle = "bold" / / If this style is present in your doc

    Jarek

  • V9 Acrobat JavaScript Alert Box - possible to add space or line break after each element of the array?

    I have a Document level Javascript used to identify empty mandatory fields and fires on shares of paper, print and save. The script identifies the required fields empty, counties and outputs of an alert box indicating the number of required fields empty and lists the name of the ToolTip fields. The script identifies the required fields with an asterisk at the end of each balloon.

    Is my question possible to add a space or a line break after the decimal point for each item?

    Here is a picture of the exit where the items listed are all grouped together.

    Alert box array items need space or line break.jpg

    Here is the code:

    function validateFields()

    {

    a counter for the number of empty fields

    var = 0 flg

    count all the fields of the form

    var n = this.numFields

    create a table to contain the names of the required fields

    If they are determined to be empty

    fArr var = new Array();

    Browse all fields and look for ones that are required

    all fields that have a ' *' in their ToolTip are required

    for (var i = 0; i < n; i ++) {}

    var fn = this.getNthFieldName (i);

    var f = this.getField (fn);

    ToolTip is the property of 'userName' of the fields\;

    TT = f.userName var

    test the ' *';

    If (TT. IndexOf('*')

    ! =-1 & & f.value == f.defaultValue) {}

    increment the counter of empty fields;

    FLG ++;

    Add the fields username (ToolTip) to the list of the names of fields empty.

    fArr [fArr.length] = tt;

    }

    }

    now display a message if there are blank fields

    if(FLG>0) {}

    App.Alert ("there are '+ flg + areas that require a value\n\n' + fArr, 3")

    }

    else {}

    This.Print ();

    }

    }

    The required property is very easy to use. It's just a Boolean (true/false) value, then you can use it like this in your code. Instead of this line:

    If (tt.indexOf('*')! =-1 & f.value == f.defaultValue) {}

    Use this:

    If (f.required == true & f.value == f.defaultValue) {}

  • Is it possible to add options to custom contour weight?

    Hi, I wonder if it is possible to add options to cool down to the bottom edge weight.  For example, I often use a border "hairline" to frame some objects in my documentation, like .25px or something similar.  Thank you.

    InDesignScreenSnapz001.png

    In addition to hacking code, or possibly a plugin, I don't know anyway to add presets of race to fall down.

    You can define the root of the hair differently, but here's how I look at it. Extra fine is the most beautiful line that can be duplicated for the intended media. For displaying web and screen, a pixel is the most beautiful line and with pixels as the unit of weight to race, 1 px would be a hairline. For printing,.25 pt is usually what is considered to be a hairline. If you change the unit of the points race, pt.25 will be the first weight in falling down.

  • Since updates to firefox, it is not possible to add a document to my email c Telfort.nl

    Since one of the most recent updates to firefox, it is not possible to add a document to my email address is Telfort.nl
    I checked with Telfort and no problems of this type are known.

    You can check the problems caused by the extension and plugins.

    You can try to delete the mimeTypes.rdf file in the Firefox profile folder to reset all the actions file.

    You can try to reset Firefox.

    Reset creates a new profile and attempting to import some settings of the old profile, leaving the old profile intact.

  • Is it possible to add a note to an email received in mail?

    Is it possible to add a note to an email of reception received in the mail? I started using receipts from suppliers when it is possible to eliminate the clutter of waste and cover paper. Good number of receipts list not exactly what was purchased instead of the registration, "operation manual". I would like to be able to add notes as, "except for the guarantee" or "cleats of baseball" to the email. Unfortunately most of the recipes do not come as an attachment in the email, if they scored up to work.

    Thank you

    Make a copy and edit.

    In general, you can't because then you plague the record - you are indeed back and change history.  Bad practice.

    So save it as an RTF file and do what you want with it

    Grant

  • S50 satellite - B - 15 p - it is possible to add addional SSD or HARD drive?

    Hello

    I recently bought a laptop Satellite S50 - B - 15 p.
    I'm very happy with it

    My question is about its SSD drive
    It is now 128 GB.

    It is possible to add addional SSD or HDD.

    Or replace the current by the new with a higher capacity.

    My best regards

    I don't have this model of laptop, but according to some pictures I found isn't Googling around this model of laptop SSD? HARD drive covers in the lower corner, therefore, as a general rule, these updates is not supported and should not be done by the owner of the laptop.
    If you want to have full access to the SSD, you must remove the lower cover and it can be done by authorized personnel only. If you try to do it yourself you will void the warranty.

    In my opinion, you should contact the nearest Toshiba service provider and ask for help or, at least, good advice what to do about it.

  • Is it possible to add a second HDD to Satellite U300 - 10M

    Is it possible to add an additional hard drive to U300 - 10M?

    Hey Buddy

    No, it of not possible to add a second HDD Sat U300 series.
    To my knowledge this laptop doesn't support additional HDD bay and something like this is therefore not possible.

    Best regards

  • Is it possible to add the second cooler to my QOSMIO

    I WOULD LIKE TO ASK IF IT IS POSSIBLE TO ADD THIS SECOND COOLER TO MY LAPTOP * (TOSHIBA QOSMIO - X 300 130) BECAUSE MY LAPTOP SHUTSDOWN WHEN I PLAY GAMES...
    * PIC ALL WHAT I want TO SAY... * http://www.irisvista.com/tech/laptops/Toshiba-Qosmio-X305/big/removing-laptop-motherboard-33.jpg

    AS I HAVE SEE YES BUT WHERE CAN I FIND ONE SUCH COOLER IN YM (BULGARIA)
    EVRYTHING STILL IN WARRANTY

    Post edited by: aloushi

    Hello

    No, it s not possible to add a second cooling fan to the motherboard notebook from the motherboard layout allows and the laptop does not have such extra part.

    But you can test some buffers cooling like this:
    [Photos of cooling pads: http://www.google.de/images?hl=de&q=cooling%20pads&wrapid=tlif130302876 790621 & um = 1 & ie = UTF-8 & source = og & his = N & tab = wi]

  • Is it possible to add the location and the date on the pictures in a slide show?

    Is it possible to add the place and the date on the pictures in a slide show?

    Only if you manually add a title slide t photo and enter this information manually.  There is no automatic way in Photos.

    Click on the button "+" at the right end of the slide show to add a title slide.

  • Is it possible to add an application to the list "Scan to".

    When you use the application to scan, I can choose a directory where to save the file or send the scanned image directly to an application. In the list of applications, I have pictures, picture Capture, preview and Mail. Is it possible to add other applications to this list and if so, how?

    Thank you

    Steve

    Application of scan? What scanner app?

  • Pavilion Slimline s5700 Series: is it possible to add an SSD?

    I have a s5770t on the way and I was wondering if it would be possible to add a form factor 2.5 "SSD system (i.e., having both the SSD and the original hard drive)?

    I looked on this issue online support documentation, but only came to how to replace the hard drive, not if it is possible to add a second.

    Looking how to replace a drive hard slimline here, it seems that thought it might be just enough space in the drive cage to do by moving the original hard drive upward and the installation of the SSD below... looks like there's even a slot at the bottom of the cage for this purpose.

    Here are the pictures that I have from the referenced link above that make wonder if it's possible:

           

    Thanks for any help that you could provide!

    -Darrell

    At the reception of the computer, I opened it and out of the cage to the hard drive and found there was a little more than 1 cm of headroom above the main hard drive:

    .. just enough room to fit in my 9.5 mm thick Intel SSD:

    I ran into two questions:

    (1) I am able to mount the SSD with only one screw. Although the use of this computer is as a home theater PC and will not be moved, a screw is minimal sufficient.

    2) there are only two power supply (one for the HD) SATA cables and one for the DVD player, which required me to buy a splitter cable SATA power, similar to the image below:

Maybe you are looking for