How to create a "text with photos" book in Elements 8?

Hello all!
I am new to APE and this forum; I've been reading about it (APE 7, for the most part - right now I'm reading "The Missing Manual" for version 7), and have pre-ordered version 8.
I have published many books in the past on lulu.com, but none of them contained photographs; my current book will also include many photographs (it's about half text and half photos); I'm wondering if there's a better way to create it -- using APE 8 -- than my normal method, which is to use Open Office Writer to create the document (inserting pictures from files where appropriate, I guess), and then, as a final step, converting the document to a .PDF and uploading that.
I am thinking that what I should be able to do is have an underlying base layer that is an image with low opacity, and on top of that a layer that is my text. I could rotate the "landscape" images prior to adding them to fit the document's layout. Is this the [best] way to do this? A concern I have about that method is that then every page is a photograph -- which could make the download size enormous (instead of simply semi-enormous).
Thoughts?

You can simulate it, although it might not be what you look for...
Example (buggy but that's just a proof of concept):
class MulticolorText extends CustomNode
  var text: String;
  var colors: Color[];
  var font: Font;
  override public function create(): Node
    HBox
      var l = text.length() / sizeof colors;
      content: for (i in [ 0 ..< sizeof colors])
        Text { content: text.substring(i * l, (i + 1) * l), fill: colors, font: font }
// Used as:
MulticolorText
text: "Multicolor"
font: Font { size: 36 }
translateX: 20
translateY: 20
colors: [ Color.rgb(200, 0, 25), Color.rgb(0, 200, 75), Color.rgb(200, 200, 125), Color.rgb(0, 0, 175), Color.rgb(0, 0, 225)  ]

Similar Messages

  • LR3 : Presentation module : how to create different text with different slides in 1 slideshow

    I want to make a slideshow from my holiday pictures.  I want to put a text box with the name of the place of the slide.  That means different text boxes for different slides.  I just cannot figure it out how I can manage that.  If I put a text box than it appears on al the slides.  If a just select several pictures of the whole load and add text, it still is shown on all the pictures of the slide show.
    Anyone knows what I can do ? Thanks for the help

    You have to assign the text to the different pictures in metadata fields (caption, title, ...) of the pictures themselves (best done in Library module). Then, add a text box in your slide show, not using "Custom Text" but the metadata field you've filled the information in. You can even use the text template editor (by choosing "edit ...") to select different metadata fields than the ones presented in the list.
    Beat Gossweiler
    Switzerland

  • Creating a text with a java script on fixed position

    Hello i want to know how to create a text with a java script on fixed position
    thanx

    Hi,
    Your next steps are hidden here:
    http://www.jongware.com/idjshelp.html
    Object you created (textFrame, page, text) have properties to set or methods to execute.
    You could find them all inside above Jongware's Kingdom of Knowledge.
    In example:
    to set your text size use:
    myTextFrame.texts[0].pointSize = 12;
    Jarek

  • Wondering how to create a text box with variables...

    Hi everyone,
    I was wondering how to create a text box, that at the beginning of the presentation, the audience fills in regarding what they think constitutes the role they have been chosen for.
    I would like that same box to then appear at the end of the presentation, with the text they typed in at the beginning, so they can reflect on what they think now, and what they thought then. I understand this is done using variables, but i'm not 100% sure.
    I hope I've worded this okay!

    This screenshot shows the properties panel, Style tab for the TEB. I relabeled it to My_TEB, used the X button  to create a user variable v_choice that will replace the generic Text_Entry_Box_1/
    This is the properties panel of a Shape, I went in Edit mode (double clicking)to make the Character section appear, where you find the X button. It opens the dialog box 'Insert Variable' and you can choose the var associated with the TEB. The Maximum Length will define how many characters will be displayed, the value of a variable has maximum 256 characters.

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • How do I create transparent text with gradient stroke?

    I'm creating text that will be printed on a deep gray to black tshirt. 
    I created text, added an offset path to it with a gradient, and a deep gray color fill on top, achieving the gradient stroke.  However, I'm not exactly sure what color the shirt itself will be, other than deep gray to black.  And I didn't want the deep gray/black fill in my text to appear and look awkward on the shirt.  Unless that is something I shouldn't be considered about.
    To be safe, how would you create transparent text with a gradient stroke?  I'm using Illustrator CS5.

    aimsrandom,
    Based on a guess that you wish to have the stroke fade into the basic tshirt colour, you may use transparency rather than colour.
    But the transparent text in the headline raises a few questions.
    No fill colour for the Type/text, or different fill and (basic) stroke colour, or?

  • How do I combine text and photos on the same page in iPhoto using photobook

    How do I combine text and photos on the same page in iPhoto using photobook?

    You mean while creating a book in iPhoto?  Click on the layout button while viewing a page and select the layout that includes both text and photos.  Most themes will have those options.
    OT

  • How to create rollover text on an image

    I'm a non-coder I'm using Dreamweaver CS4 to create a personal website.  I know next to nothing about CSS, but I think I understand how to create a style and apply it to elements. 
    My website has several image galleries, and what I'd like to be able to do is create a rollover text box of some kind that floats up in a fixed position when mouseover on an image.  What I'm looking to do is basically what this website does on their top header image:
    AstroBin | AstroBin
    I've experimented some with spry tooltips but I want the text box to be in the same position and not wherever the mouse is pointing at the time.  I have done hours of searching and I cannot come up with a solution to this (at least not one that I understand) and it's quite possible that I don't even know the terms to search for. 
    What tools or terms am I describing here?  What should I be searching for? 
    Can anyone point me to a good tutorial to do what I'm asking?  Please give me the dummy version!
    Thanks in advance.

    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class fireleaf extends JFrame {
      public fireleaf() {
        JLabel label = new ImageLabel();
        JPanel panel = new JPanel();
        panel.setBackground(Color.pink);
        panel.add(label);
        getContentPane().add(panel, "Center");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(300,200);
        setLocation(300,200);
        setVisible(true);
      private class ImageLabel extends JLabel {
      // image from:
      // http://java.sun.com/docs/books/tutorial/uiswing/painting/imageSequence.html
        public ImageLabel() {
          Toolkit toolkit = Toolkit.getDefaultToolkit();
          Image image = toolkit.getImage("images\\T4.gif");
          ImageIcon icon = new ImageIcon(image);
          setIcon(icon);
          setOpaque(true);
        public void paintComponent(Graphics g) {
          super.paintComponent(g);
          Graphics2D g2 = (Graphics2D)g;
          g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                              RenderingHints.VALUE_ANTIALIAS_ON);
          g2.drawString("hello", 10, 10);
      public static void main(String[] args) {
        new fireleaf();
    }

  • How to create a node with attributes at runtime in webdynpro for ABAP?

    Hi Experts,
             How to create a node with attributes at runtime in webdynpro for ABAP? What classes or interfaces I should use? Please provide some sample code.
    I have checked IF_WD_CONTEXT_NODE_INFO and there is ADD_NEW_CHILD_NODE method. But this is not creating any node. I this this creates only a "node info" object.
    I even check IF_WD_CONTEXT_NODE but i could not find any method that creates a node with attribute.
    Please help!
    Thanks
    Gopal

    Hi
       I am getting the following error while creating a dynamic context node with 2 attributes. Please help me resolve this problem.
    Note
    The following error text was processed in the system PET : Line types of an internal table and a work area not compatible.
    The error occurred on the application server FMSAP995_PET_02 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_WD_CONTEXT_NODE~GET_STATIC_ATTRIBUTES_TABLE of program CL_WDR_CONTEXT_NODE_VAL=======CP
    Method: GET_REF_TO_TABLE of program CL_SALV_WD_DATA_TABLE=========CP
    Method: EXECUTE of program CL_SALV_WD_SERVICE_MANAGER====CP
    Method: APPLY_SERVICES of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: REFRESH of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE_DATA of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~UPDATE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_VIEW~MODIFY of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMPONENT~VIEW_MODIFY of program CL_SALV_WD_A_COMPONENT========CP
    My code is like the following:
    TYPES: BEGIN OF t_type,
                CARRID TYPE sflight-carrid,
                CONNID TYPE sflight-connid,
             END OF t_type.
      Data:  i_struc type table of t_type,
      dyn_node   type ref to if_wd_context_node,
      rootnode_info   type ref to if_wd_context_node_info,
      i_node_att type wdr_context_attr_info_map,
      wa_node_att type line of wdr_context_attr_info_map.
          wa_node_att-name = 'CARRID'.
          wa_node_att-TYPE_NAME = 'SFLIGHT-CARRID'.
          insert wa_node_att into table i_node_att.
          wa_node_att-name = 'CONNID'.
          wa_node_att-TYPE_NAME = 'SFLIGHT-CONNID'.
          insert wa_node_att into table i_node_att.
    clear i_struc. refresh i_struc.
      select carrid connid into corresponding fields of table i_struc from sflight where carrid = 'AA'.
    rootnode_info = wd_context->get_node_info( ).
    rootnode_info->add_new_child_node( name = 'DYNFLIGHT'
                                       attributes = i_node_att
                                       is_multiple = abap_true ).
    dyn_node = wd_context->get_child_node( 'DYNFLIGHT' ).
    dyn_node->bind_table( i_struc ).
    l_ref_interfacecontroller->set_data( dyn_node ).
    I am trying to create a new node. That is
    CONTEXT
    - DYNFLIGHT
    CARRID
    CONNID
    As you see above I am trying to create 'DYNFLIGHT' along with the 2 attributes which are inside this node. The structure of the node that is, no.of attributes may vary based on some condition. Thats why I am trying to create a node dynamically.
    Also I cannot define the structure in the ABAP dictionary because it changes based on condition
    Message was edited by: gopalkrishna baliga

  • How to create a text file or XML file  and add content through  code into it...

    Hi Everyone,
    How to create a text file and add content through the code to the text file eform javascript ......orelse can we create a text file in life cycle designer...
    Else say how to create a new XML file through the code and how some content like Example "Hello World".

    You can create a text file as a file attachment (data object) using the doc.createDataObject and doc.setDataObjectContents:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.450.html
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.528.html
    You can then export the file with the doc.exportDataObject method:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.463.html
    This won't work with Reader if it hasn't been given the file attachment usage right with LiveCycle Reader Extensions.

  • How to create a text box in ascreen painter?

    HI friends can anyone tell me how to create a text box in a screen painter?
    And attachment BROWSER like what we attach for any documents in over mail.
    Example when we click on browser the path of the computer has to be opened and by giving the document name attach and the document will be attached. Please tell me the procedure....
    Thks

    To get the best answers, I think you probably need to break down your post into several different one with a separate question in each, along with the business problem you are trying to solve... but here's a few pointers for you to research...
    Textbox - there's plenty of info in SDN on creating a custom control with a textbox e.g. Re: Text Editor on modulepool Screen and sample code in SAP too.
    Attachments - If this is for an email, then GUI_UPLOAD might help and the BCS class is the newer way to send messages... check out Re: Offline Approval: RBBP_NOTIFICATION_OFFAPP Vs RSWUWFMLEC for example... if this is an attachment for an SAP object such as an FI Document or Purchase Order, then the Generic Object Services (GOS) could be what you want e.g. https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3
    Jonathan

  • How to create a field with  1200 chars length

    Hi,
    Will anybody let me know how to create a field with length 1200 in a table.
    Regards,
    Madhavi

    Hi Madhvi,
    Other thing what you can do is
    1. First create a Table type.
         Goto SE11-> Dataelements ->Table type
         There on the next screen select Predefine radio button & there provide data type & size.
    2. Create a structure having a field typa of Table type created before. say that field is quant.
    Now in your program refer that structure to create an internal table & work area.
    Now if u append ur text to the field quant.
    try creating line type of size more that 255 if it works then fine other wise reduce it.
    Note:: This will be a deep structure.
    so first append value to the field quant,  the at the end of first record append valu to ur internal table.
    thanks
    Satyam

  • How to create a text item dynamically

    Greetings to All Expert,
    Could anyone please tell me how i create a text item with code.The scenario is like this....
    Suppose there is a text item corresponding to department_id=10 and i dont know how many employees r there in this department.Now if the query returns 10 employee then how do i display these 10 employees name.....it may be 20 employees also...i dont know the actual number before executing the query..
    Regards,
    Wel
    Edited by: 787312 on Aug 15, 2010 1:03 AM
    Edited by: 787312 on Aug 15, 2010 4:19 AM

    Hi,
    You can create two blocks for this. One is an unbound block which consist of a text box with a command button. Other block is a bound block from your table(multiple rows block). In hierarchical, unbound block should above above bound block, which makes the focus control goes first to the text box. When the user type the dept code and click on the button it goes to bound block and execute the query.
    you can write code in the command block as below
    set_block_property('<boundblockname>',default_where,'deptno = '||:ti_DEPTNO);
    go_block('<boundblockname>');
    execute_query;Best Regards
    MP

  • How to Create a text frame?

    Hai
    i'm senthil....
    i'm just now started working with Adobe Indesign plugin's..
    Can anyone tell me how to create a text frame...
    wat r the steps for creating a text frame?
    what are the Interface pointers used for creating a text frame...
    plzz reply me who knows...
    bye.

    See SDKLayoutHelper::CreateTextFrame.
    You can also look at SnpCreateFrame::CreateTextFrame in SnippetRunner.
    Regards,
    Narayan

  • How to Create a Text Variable

    Hi Experts...
    Can you please explain me how to create a Text variable...
    In my Cube i had 3 different date fields....
    and as per my requirment i need to create a rolling report for which will display data for 6 months rolling.
    As the date field which i need to use is not mapped to Time Char's (Cal Year,Cal Month...etc)
    For that reason i created below customer exit variable and used offset variables to achieve the rolling 6 months report
    Code used for Customer Exit VAriable:
    WHEN 'ZC_Cmonth1'. " Current Cal Month Car Expiry
    IF i_step = 2.
          CLEAR l_s_range.
    determine date
        LV_SYDAT     =  SY-DATUM.
        LV_YEAR_ACT  =  SY-DATUM+0(4).
        LV_MONTH_ACT =  SY-DATUM+4(2).
    Set begin date of intervall
    CONCATENATE LV_YEAR_ACT LV_MONTH_ACT '01' INTO LV_DATE_LOW.
    Set end date of intervall
    CONCATENATE LV_YEAR_ACT LV_MONTH_ACT '31' INTO LV_DATE_HIGH.
    Fill ranges-tab with: include all values between beginning of year
    and actual date
      CLEAR E_T_RANGE.
      CLEAR L_S_RANGE.
      L_S_RANGE-SIGN = 'I'.
      L_S_RANGE-OPT  = 'BT'.
      L_S_RANGE-LOW  = LV_DATE_LOW.
      L_S_RANGE-HIGH = LV_DATE_HIGH.
      APPEND L_S_RANGE TO E_T_RANGE.
    ENDIF.
    Now i need to create TEXT VARIABLE that will display the Month Name in the column name
    Please update in detail step how to create a Text Variable

    In your specific requirement select the which ever the keyfigure you want  to analyse, go to edit mode of keyfigure propeties there select the newvariable type and create the Text variable by maintaining the proper offset start and length and also maintain the in whcih format u want see the month name in column headers. Maintain the Text format or key format. it totally depends on u r requirement.
    Hope it will help ful for u.
    Bye,
    Chandu.

Maybe you are looking for

  • Airport express confusion

    Hi I want to set up a simple wireless system and I think Airport Express will do. However, I note the following message: "CD with AirPort Utility (Mac and Windows), 802.11n Enabler (for Intel Core 2 Duo and Xeon-based Macintosh computers except 17-in

  • Excise Problem

    Hi guru's i have one problem after the process of ME21N,MIGO,MIRO,Extraction of Register iam trying to do Post the excise invoice but the system giving the error is company code is not defined, Till the extraction  and print priview part is fine, iam

  • Regarding privileges

    hi all i have one user scott it is having following privileges. CREATE SESSION SELECT ANY TABLE INSERT ANY TABLE ON COMMIT REFRESH SELECT ANY DICTIONARY if i m connected to scott then i can alter ables which are exists in scott schema. But i want tha

  • After effects cs4 moving layers problems

    in cs4 when i try to move a layer arround, i get a huge X going through the layer and i cant see the actual object i am moving in real time. when i stop moving the object in the layer re-appears. i've tryed to reinstall after effects but still the sa

  • My Power Mac G4 booted from an OS 9.1 install CD, and then froze up.  Now I turn the machine on, beeps 3 times, power button blinks 3 times.  What does this mean?

    I tried to install Mac OS 9.1.  I turned the computer on, heard the bong noise (although with some static), and inserted the OS 9.1 installation CD.  It started to boot, but froze up.  I rebooted the machine, and the same thing happened.  One more re