Insertion of UI element in a Frame

Hi everybody,
I want to know , how the UI elements are inserted into the frame,frame which can be posted to other page also.
Thanks .

Your best option is to insert a new section & then, in the section tab of the inspector, deselect use previous headers & footers.

Similar Messages

  • How to Insert the Text in Selected Text Frame-Reg.

    Dear all,
    I am using the SnipperRunner - SDK, and create the TextFrame, but I can't insert the Text in the Particular Frame. so please give me the soultions,
    (*) Create TextFrame is ok,
    (*) Select TextFrame is also ok,
    (*) now, my Query ->
    How to Insert the Text in the Selected Frame?. (or)
    How to Link the Selectable Frame and my Text.? (or)
    How come to know the TextFrame is select?.
    Please any one can suggest me through the Coding....I will appreciate you...
    Thanks & Regards,
    T.R.Harihara SudhaN

    Hi,
    you have to get the TextModel associated with the textframe. Once you got that, ITextModel has an Insert()-method. You could also process kInsertTextCmdBoss - there are quite a few examples around. I believe WriteFishPrice also inserts text into a frame, just as an example. Good luck ...
    Bernt

  • How to insert textedit ui element in ALV

    hi experts,
    i need to insert textedit ui element in one of the column of ALV.
    thanks

    No you cann't use the TExtedit in ALV cell.
    Check out the thread [Line break in ALV cells|Re: Line break in ALV cells?] for more details.

  • Premiere Elements 13 Installer ask to insert a Premiere Elements 13 disc, disc is already in drive

    I have purchased a Premiere Elements 13 download from Adobe and burned it to a DVD. I run the setup.exe from the DVD and the installer starts. I enter the serial number and check the user agreement and continue. The installer proceeds to start and when it gets about 2% through I get prompted to insert a Premiere Elements 13 disc. The disc is already in the DVD drive, that is what I am running. Why am I being prompted to insert a disc and how do I resolve this so the installation can continue?

    Eric Hofacket
    This is not Adobe. Rather user to user forum.
    What computer operating system is involved?
    When the installation stops to ask "insert a Premiere Elements 13 disc", at what phase of the installation are you?
    According to my count the choices might be....
    The install starts showing 4.3 GB size and goes through
    Microsoft Visual C++ 2012 Redistributable Package (x64)
    Sonic
    Elements 13 Organizer
    Microsoft Visual C++ 2010 Redistributable Package (x86)
    Camera Raw 64 bit
    Adobe Premiere Elements 13
      Installation ends with a Sign In.
    One guess might be that something did not get burned to the disc correctly.
    What happens if you install Premiere Elements 13 from the installation files (setup.exe) purchased and downloaded from Adobe direct?
    ATR
    Add On...what exactly got burned to DVD disc....whole Adobe Premiere Elements 13 Folder/PRE13 Folder including its Set-up.exe?

  • Premier Elements 7 Video Frame Size

    Does Premier Elements 7 Video Frame Size support 1920 x 1080i?

    The usual input source is a Canon HV20 i.e. HDV, tape. This camera highest config setting is exports 1920x1080i (+ mpeg)
    Thanks,
    Gary

  • Default insertion for missing elements using DBMS_XMLSave.insertXML

    Hi,
    I am trying to insert default values for some columns, without having those column names as elements in the xml document. Is it possible to do so?? This is the code I am using for now, but it inserts null values for missing elements in the xml document.
    insCtx := DBMS_XMLSave.newContext ('TABLENAME'); -- get the context
    rows := DBMS_XMLSave.insertXML (insCtx, p_xmlDoc); -- insert the doc
    DBMS_XMLSave.closeContext (insCtx); -- close the handle

    Only thing I noticed with dbms_xmlstore.insertXML, was when my xml document had "<?xml version = "1.0" ?>" at the start, it gave an error "LPX-00209: PI names starting with XML are reserved"That's probably due to the XML document not starting exactly with "&lt;", like this :
    SQL> DECLARE
      2
      3    xmldoc   clob := '
      4  <?xml version="1.0"?>
      5        <ROWSET>
      6       <ROW>
      7        <COL1>1</COL1>
      8        <COL2>TEST1</COL2>
      9       </ROW>
    10       <ROW>
    11       <COL1>2</COL1>
    12      </ROW>
    13     </ROWSET>';
    14
    15    ctx      dbms_xmlstore.ctxHandle;
    16    numrows  number;
    17
    18  BEGIN
    19
    20    ctx := dbms_xmlstore.newContext('MY_TABLE');
    21    numrows := dbms_xmlstore.insertXML(ctx, xmldoc);
    22    dbms_xmlstore.closeContext(ctx);
    23
    24  END;
    25  /
    DECLARE
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00209: PI names starting with XML are reserved
    ORA-06512: at "SYS.DBMS_XMLSTORE", line 78
    ORA-06512: at line 21 However, it runs OK if the prolog actually starts the character stream :
    SQL> DECLARE
      2
      3    xmldoc   clob := '<?xml version="1.0"?>
      4        <ROWSET>
      5       <ROW>
      6        <COL1>1</COL1>
      7        <COL2>TEST1</COL2>
      8       </ROW>
      9       <ROW>
    10       <COL1>2</COL1>
    11      </ROW>
    12     </ROWSET>';
    13
    14    ctx      dbms_xmlstore.ctxHandle;
    15    numrows  number;
    16
    17  BEGIN
    18
    19    ctx := dbms_xmlstore.newContext('MY_TABLE');
    20    numrows := dbms_xmlstore.insertXML(ctx, xmldoc);
    21    dbms_xmlstore.closeContext(ctx);
    22
    23  END;
    24  /
    PL/SQL procedure successfully completed.
    With the dbms_xmlsave.inserXML, [...] it wont insert the default column values.Now that's strange...
    I understand there could be differences in the parsing implementation, but in the end both processes must issue an INSERT into the target table using plain SQL, so I really wonder why default values are not applied.
    I'll try to reproduce when I have access to a Java-enabled db.

  • How to insert spaces in elements in message mapping

    Hi All,
             I have scenario, where in the incoming data is put into a file, but if there is no incoming data for any element it should insert spaces equivalent to the lenght of the field. how can this be done?
    XIer

    Xier,
    your problem is that the MapWithDefault function will fill only the fields which have no value, for example, if that tag is like <field2/>. When you have <field2></field2>, you have a value, even though this value is an empty string.
    To test your scenario properly, change your input xml to:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Countresult xmlns:ns0="urn:sce.com:xi:FI:TestProjectStructureUpload">
         <record>
              <field1>a</field1>
              <field2/>
              <field3>b</field3>
         </record>
    </ns0:MT_Countresult>
    If your requirement is to insert spaces when you have empty string as the input (<field2></field2> case), then you can't use MapWithDefault. In this case, you have to use an if logic: if input = "" (empty string) then output = "    " (4 blankspaces), else output = input.
    If you don't know how the input will come, best scenario would be to combine the MapWithDefault + If logic, in order to solve both cases (no input or empty string input).
    Regards,
    Henrique.

  • Inserting photo in iMovie, becomes still frame of video before it.

    When I insert a photo into my iMovie it creates a still frame of the video before. Doesn't matter where in the clips I put it and I've tried dragging a photo in from Finder and using the iPhoto in the iMovie application. And, if I put a photo after a photo, the second photo becomes a still frame of the first photo. Help!

    just to make thing clear (sorry for sounding impudent!)
    you do .... :
    create a New Project
    make a selection of an Event and add it to the Project
    select a title and drag it onto the clip?
    iM does work with your OS ...

  • How to use IHTMLFramesCollection2 to get elements in each frame?

    In a project, I must visit elements value from HTML page, read or write. but there is a message 'error -2147467262 occurred at property node (arg1) in DocumentObjectMode.vi'. take the attached file for example, when I read the length of IHTMLFramesCollection2, the error shows. How it could be?
    David Xia
    Attachments:
    FrameTest.zip ‏15 KB
    error 2147467262.JPG ‏15 KB

    Try running your code in the User Interface execution subsystem (VI Properties - Execution).  That eliminates the error for me (Win XP, LabVIEW 2011).
    I'm not certain this is uniquely LabVIEW behavior.  Try running a Google search for "ihtmldocument2 frames property invalidcastexception" and you'll see that people using other languages appear to be having the same problem.  Several of the threads in those results say they were able to solve it by forcing everything to run in one thread, which is essentially what you're doing by changing to the user interface execution system.
    One style note: you should close ALL ActiveX references that you open (the WebBrowser, Document, and IHTMLFramesCollection objects), in the opposite order in which you open them.  Also, I find it cleaner to use constants instead of controls for the ActiveX types (such as the type input to Variant to Data).

  • Problem Inserting DVD Media Element

    Hello everyone,
    I am unbale to insert a DVD into Director MX 2004. This is
    what I am doing....
    1- I place a DVD into my DVD-Driver
    2- Open the Director MX 2004
    3- Create a New Director File
    4- Insert ---> Media Element ---> DVD
    Then I get an Error Message saying "An error occured while
    trying to load DVD player".
    Can anyone tell me what is going on, please?
    Cheers,
    Khoramdin

    1. Go into Spotlight from the top of your iMac on the menu bar.
    2. And search for "CDs & DVDs" (It's also in the System Preferences)
    Click on it and a small CDs & DVDs window will pop up with options of what happens when you insert a disk into the drive
    3. By then, try inserting a disk in (while that window is open. This kinda wakes up your drive to accept the disk). It should accept it.
    4. If nothing happens, then manually open the program that should be opening when you insert the disk or go to Finder (Eg. if it's an audio disk, then open iTunes)
    5. If opening the program still does not activate the drive to start spinning the disk, then close the programs and windows you opened, and repeat step 1-4 and the disk should be spinning and automatically opening the proper program.
    Or go into Terminal app and type in: drutil ejec
    The drutil ejec tip is credited to Dan8954
    Hope that helps!

  • Trying to Insert an XML Element into XML data stored in CLOB column

    Hi all,
    My ORACLE DB version is:
    ('Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production');
    ('PL/SQL Release 11.2.0.2.0 - Production');
    ('CORE 11.2.0.2.0 Production');
    ('TNS for Linux: Version 11.2.0.2.0 - Production');
    ('NLSRTL Version 11.2.0.2.0 - Production');
    I have this XML data stored in a CLOB column:
    <Activity>
         <Changes>     
         </Changes>
         <Inserts>     
         </Inserts>
         <Definition>     
         </Definition>
         <Assignment TYPE="Apply">     
         </Assignment>
         <Spawned>
              <Activity>576D8CD9-57A1-8608-1563-8F6DC74BDF3C</Activity>
              <Activity>11226E79-5D24-02EB-A950-D34A9CCFB3FF</Activity>
              <Activity>DAA68DC0-CA9A-BB15-DE31-9596E19513EE</Activity>
              <Activity>93F667D6-966A-7EAD-9B70-630D9BEFDDD2</Activity>
              <Activity>FA63D9D3-86BB-3FF0-BE69-17EAA7581637</Activity>
         </Spawned>
         <SpawnedBy>AFC49BD4-5AA7-38C0-AE27-F59D16EE1B1C</SpawnedBy>
    </Activity>
    I am in need of some assistance in creating an update that will insert another <Activity>SomeGUID</Activity> into the <Spawned> parent.
    Any help is greatly appreciated.
    Thanks.
    Edited by: 943783 on Dec 14, 2012 12:58 PM

    See XML updating functions : http://docs.oracle.com/cd/E11882_01/appdev.112/e23094/xdb04cre.htm#i1032611
    For example :
    UPDATE my_table t
    SET t.my_clob =
          XMLSerialize(document
            insertChildXML(
              XMLParse(document t.my_clob)
            , '/Activity/Spawned'
            , 'Activity'
            , XMLElement("Activity", 'Some GUID')
    WHERE ...
    ;Although it works, there's overhead introduced by parsing the CLOB, then serializing again.
    Is there any chance you can change the CLOB to SECUREFILE binary XMLType storage instead?
    You would then be able to benefit from optimized piecewise update of the XML and improved storage.

  • Help with inserting a list element in a Web page

    Hello,
    I�m a newbie. I want to introduce an element list in a web page. I have source that creates a List as a standalone application (with a main procedure..) , through the JList class, but I want this list to appear integrated in the web page. How could I do it? Could anyone give me any idea, URL, etc...??
    Thanks,

    as writte above: if it as simple as you wrote use something like this:
    * (c) Copyright 2002 B. Braun Melsungen AG
    * All Rights Reserved.
    package domainrequest;
    import java.io.*;
    import java.util.*;
    * implements the <select> form html element providing easy methods to fill the list of options and print the html source code
    * @version      1.0
    * @author          Erik Itter
    public class HtmlListBox {
         ArrayList options = new ArrayList();//HashMap does not guarantee an order
         String name;
         public HtmlListBox(String Name){
              name=Name;
         public ArrayList getOptions(){
              return options;
         public String getOtptionName(String Value){
              for(int i=0;i<options.size();i++){
                   if((((ListBoxOption)(options.get(i))) ).getValue()==Value){
                        return ((ListBoxOption)(options.get(i))).getName();
              return null;
         public int addOption(String Value,String Name){
              options.add(new ListBoxOption(Value,Name));
              return options.size();
         public void print(PrintWriter out){
              out.println("<select name=\""+name+"\">");
              for(int i=0;i<options.size();i++){
                   out.println("<option value=\""+( (ListBoxOption)options.get(i) ).getValue()+"\">"+( (ListBoxOption)options.get(i) ).getName()+"</option>");
              out.println("</select>");
    using
    * (c) Copyright 2002 B. Braun Melsungen AG
    * All Rights Reserved.
    package domainrequest;
    * This class' only reason for existence is to be abused
    * (look at that code and you will understand...) by HtmlListBox
    * implementing a single option's data fields.
    * This is similar to the points and complex numbers they have in
    * all those tutorials...
    * @version      1.0
    * @author          Erik Itter
    public class ListBoxOption{
         String value;
         String name;
         * Constructs an option allowing to differ between the elements value and
         * the displayed representation
         public ListBoxOption(String Value,String Name){
              value=Value;
              name=Name;
         * Constructs an option taking the displayed name as value, too. Actually
         * this is the most common use but less helpfull for complex applications.
         public ListBoxOption(String Name){
              value=name=Name;
         * returns the option's value (could you imagine that...?)
         public String getValue(){
              return value;
         * returns the option's name. (...oh so predictable!)
         public String getName(){
              return name;
    it is sufficient for the three tier intranet application i am developing for our company, since the code is trivial feel free to use it if you like

  • Insert a scrollable window in Captivate frame?

         Hi!
    I have a long image that I would like to insert in the captivate slide, i cant make it smaller or the project bigger.  I would like to know if I can insert a window in the slide that has a horizontal scroll bar the user can use to scroll the image back and forth...if this is possible, how can i create it? in Flash or Swishmax?
    All responses are greatly appreciated,
    Steph.

    There's now a widget to do this.  Take a look at any of the Youtube videos on this page that talk about Slider Component Widget:
    http://www.infosemantics.com.au/adobe-captivate/youtube-video-tutorials
    http://www.infosemantics.com.au/adobe-captivate-widgets/slider-component
    Free trial version available here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets

  • Video inserted into AP Element - Audio keeps playing on rollout

    Hi,
    I have created an AP Element that on rollover a thumbnail video plays of the full video.
    This works fine.
    However on rollout, the video does disappear, but the Video Audio keeps playing.
    How do I stop the Audio playing when the user rolls out of the link?

    It keep playing because your rollout action doesn't specifically turn off the audio (it only makes the video invisible). It probably doesn't stop the downloading of the video either. So while the video isn't displaying, it continues to download the entire file..... not a good idea!
    Depending on how you are playing the video, you'll have to devise a means of controlling the video (NOT just making it invisible).
    For example:
    If the player is a Flash player using NetStream, a simple ns.close(); button would work.
    If a JWPlayer, you can use javascript to stop the player, something like this:
    <a onclick="jwplayer().stop();"...........
    I know that's an onclick event, but you should get the idea.
    You'll have to adapt the principle to match your specific vid player.
    To eliminate this very common video player issue, you MUST stop the video (and audio) as the very first action, BEFORE you make the video player disappear.
    Best wishes,
    Adninjastrator

  • Is it possible to insert a photo into a text frame?

    I am working on a document with multi-level lists, and need to insert photos after some of the list items.  Is this possible, or is there a different/better way to format the text?

    anchored object>>> check that out.
    /G

Maybe you are looking for

  • New to Solaris (unix) - basic questions (please)

    Hello! I am completely new in Solaris World, and in fact in Linux too. All I can do (may be) is to walk throught dir tree. I have one big question and many many small ones. I've just installed Solaris 10 (writing this there), I am very happy and I do

  • "About This Mac" Buttons Greyed Out

    When I select the "About This Mac" menu I do not have the ability to procede as the Software Update and More Info buttons are greyed out. I have run and repaired disk permissions with Disk Utility. I have also run Tech Tool Pro. No luck. I ran the la

  • ** DRM - Hierarchy maintenance

    Hello Friends, We are planning to use DRM (Data Relationship Management) for our hierarchy setup and Maintenance. One of the main usage of this would be to have alternate hierarchy populate for Hyperion planning/Essbase with version controls etc... L

  • How to insert 1 element in 2D array?

    There is an example of how to replace element in 2D array, but I would like to insert (not replace), I use the insert element. it does not work for 2 D array. Attachments: find_and_map_defect_to_image736X554.vi ‏46 KB

  • No streaming from iTunes to my ATV

    All was well until I "upgraded" to Lion AND the latest iTunes update, now there is no streaming from itunes to my ATV. Any ideas? Thanks FR