Tab inserting blockquote

I just installed DW on a new laptop and I can't remember
where I need to change the setting so that when I am in a list item
- I can hit the tab key (or click the indent button) and the
current list item becomes a new list under the preceding list item.
I.E. if I have the following:
<li><a
href="#request.localpath#contact.cfm">CONTACT</a></li>
<li><a
href="#request.localpath#links.cfm">LINKS</a></li>
<li><a
href="#request.localpath#showSchedule.cfm">EVENTS</a></li>
And I am on the second line item and hit the tab key - it
used to do this...
<li><a
href="#request.localpath#contact.cfm">CONTACT</a>
<ul>
<li><a
href="#request.localpath#links.cfm">LINKS</a></li>
</ul>
</li>
<li><a
href="#request.localpath#showSchedule.cfm">EVENTS</a></li>
Now it does this:
<li><a
href="#request.localpath#contact.cfm">CONTACT</a></li>
<li><a href="#request.localpath#links.cfm">
<blockquote> </blockquote>
LINKS</a></li>
<li><a
href="#request.localpath#showSchedule.cfm">EVENTS</a></li>
What's up with that ? I have never seen it do that to me
before.
Thanks all.
Chris

I've been trying to get <blockquote> insert working in an editor but it seems to be a quite difficult task even if it's only about inserting a couple of tags into the right slot! This is the closest I got:
HTMLDocument doc = (HTMLDocument)editor.getDocument();
int start = editor.getCaretPosition()
int paraStart = doc.getParagraphElement(start).getStartOffset();
int paraEnd = doc.getParagraphElement(start).getEndOffset();
String insideBlockQuotes = doc.getText(paraStart, paraEnd - paraStart);
doc.setOuterHTML(doc.getParagraphElement(start),"<blockquote><p>"+insideBlockQuotes+"</p></blockquote>");
This is how it works: Get the current paragraphs start and end positions, read the text between the start and end into a string, replace the paragrapElement with <blockquote><p>..the text from string..</p></blockquote>.
This works 'in about' but it's far from perfect.. it has the following problems:
1. It looses all formatting from the quoted paragraph (bold etc. tags from the quoted part)
2. It assumes that the paragraphElement was a <p> (could have been another element too!)
3. It's ugly
Anybody come up with a better way to use blockquote?

Similar Messages

  • Inserting blockquote tags into a HTMLDocument

    G'Day,
    I'm having a bit of trouble inserting <blockquote> tags into a HTMLDocument.
    Basically I want the blockquote tags to implement an indent feature. ie, you click a button and all the text in the current paragraph gets surrunded by blockquote tags, which when rendered makes it indent.
    The code I'm using is:
    Element current = doc.getParagraphElement(pos);
    try
    doc.insertBeforeStart(current, "<blockquote>");
    doc.insertAfterEnd(current, "</blockquote>");
    catch (Exception e)
    lets say we have html like this:
    <p>
    hello
    </p>
    when this code runs, i get:
    <blockquote>
    </blockquote>
    <p>
    hello
    </p>
    I think that when I do the insertBeforeStart and insert the opening tag, after that completes the document is rendered and the end tag is put in there automatically???
    So, can anyone help me out here and suggest a better way?
    Cheers,
    Leighton.

    I've been trying to get <blockquote> insert working in an editor but it seems to be a quite difficult task even if it's only about inserting a couple of tags into the right slot! This is the closest I got:
    HTMLDocument doc = (HTMLDocument)editor.getDocument();
    int start = editor.getCaretPosition()
    int paraStart = doc.getParagraphElement(start).getStartOffset();
    int paraEnd = doc.getParagraphElement(start).getEndOffset();
    String insideBlockQuotes = doc.getText(paraStart, paraEnd - paraStart);
    doc.setOuterHTML(doc.getParagraphElement(start),"<blockquote><p>"+insideBlockQuotes+"</p></blockquote>");
    This is how it works: Get the current paragraphs start and end positions, read the text between the start and end into a string, replace the paragrapElement with <blockquote><p>..the text from string..</p></blockquote>.
    This works 'in about' but it's far from perfect.. it has the following problems:
    1. It looses all formatting from the quoted paragraph (bold etc. tags from the quoted part)
    2. It assumes that the paragraphElement was a <p> (could have been another element too!)
    3. It's ugly
    Anybody come up with a better way to use blockquote?

  • Single Page Spry Tabbed Insert - Delete - Update

    Hi Guys
    I like to make a page with three Spry Tabs.
    * Using ( PHP - Mysql )
    * Example ( Table of "Users" Fields ID, Name, Age )
    ( First Tab )
    List of all people with navigation dividing table by ten rows
    each time.
    On each row Delete & Update This person.
    When Clicked on Delete [ Delete This Person and update the
    list ]
    When clicked on Update [ Go to third tab and update this
    exact person ]
    ( Second Tab )
    Insert new person to Mysql
    ( Third Tab )
    Update the person who was send here to be updated from tab
    one
    Can I have all list - Insert - Delete - Update in one page
    under different Spry Tabs? How can I send these info from one tap
    to another. How should I go about this?

    It was never possible to have more than one of those
    behaviours on a page
    using the standard behaviours in previous versions. You
    always had to write
    your own scripts.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Sanj" <[email protected]> wrote in message
    news:enjulr$qma$[email protected]..
    > Hi,
    >
    > Prior to Dreamweaver 8.02 it was possible to have more
    than 1
    > Insert/delete/update however this is no longer the case
    - is there a way
    > around this?
    >
    > Thanks!
    >
    > Sanj
    >

  • JTextPane - Need to override TAB insert for traversal

    I am using the JTextPane for HTML support. I want the TAB key to default to traversing components instead of inserting tabs or spaces. For JTable and JTextArea I was able to clear the focus traversal keys and they correctly defaulted to the standard component method (i.e., Tab traverses components)
    setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, null);
    setFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, null);
    This works for JTextPane when using plain content ("text/plain") but not HTML content ("text/html"). I assume it is because of the default editor that is installed in each case, but i can not figure out how to change the behavior or the editor (e.g., HTMLEditorKit).
    Any help would be geatly appreciated.

    I did a quick test using method 1 on a JTextPane without HTML and it seemed to work. I'll let you test it when it's using the HTMLEditorKit:
         This example shows two different approaches for tabbing out of a JTextArea
    import java.awt.*;
    import java.util.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TextAreaTab extends JFrame
         public TextAreaTab()
              //  Replace the Tab Actions (this is the solution I prefer)
              JTextArea textArea1 = new JTextArea(5, 30);
              textArea1.setText("1\n1\n3\n4\n5\n6\n7\n8\n9");
              JScrollPane scrollPane1 = new JScrollPane( textArea1 );
              getContentPane().add(scrollPane1, BorderLayout.NORTH);
              InputMap im = textArea1.getInputMap();
              KeyStroke tab = KeyStroke.getKeyStroke("TAB");
              textArea1.getActionMap().put(im.get(tab), new TabAction(true));
              KeyStroke shiftTab = KeyStroke.getKeyStroke("shift TAB");
              im.put(shiftTab, shiftTab);
              textArea1.getActionMap().put(im.get(shiftTab), new TabAction(false));
              // Reset the FocusManager
              JTextArea textArea2 = new JTextArea(5, 30);
              textArea2.setText("2\n2\n3\n4\n5\n6\n7\n8\n9");
              JScrollPane scrollPane2 = new JScrollPane( textArea2 );
              getContentPane().add(scrollPane2, BorderLayout.SOUTH);
              textArea2.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, null);
              textArea2.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, null);
              // (we don't want the scroll bar to receive focus)
              scrollPane2.getVerticalScrollBar().setFocusable(false); // for tabbing forwards
              scrollPane1.getVerticalScrollBar().setFocusable(false); // for tabbing backwards
         class TabAction extends AbstractAction
              private boolean forward;
              public TabAction(boolean forward)
                   this.forward = forward;
              public void actionPerformed(ActionEvent e)
                   if (forward)
                        tabForward();
                   else
                        tabBackward();
              private void tabForward()
                   final KeyboardFocusManager manager =
                        KeyboardFocusManager.getCurrentKeyboardFocusManager();
                   manager.focusNextComponent();
                   SwingUtilities.invokeLater(new Runnable()
                        public void run()
                             if (manager.getFocusOwner() instanceof JScrollBar)
                                  manager.focusNextComponent();
              private void tabBackward()
                   final KeyboardFocusManager manager =
                        KeyboardFocusManager.getCurrentKeyboardFocusManager();
                   manager.focusPreviousComponent();
                   SwingUtilities.invokeLater(new Runnable()
                        public void run()
                             if (manager.getFocusOwner() instanceof JScrollBar)
                                  manager.focusPreviousComponent();
         public static void main(String[] args)
              TextAreaTab frame = new TextAreaTab();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
    }

  • TAB inserted in the table

    Hi all,
    How do i detect that an entry has been made as a TAB not as simple spaces but the TAB key...
    Regards,
    maverick

    It may depend on what tool you are using to enter the data. This works for me in sqlplus on UNIX.
    SQL> INSERT INTO t VALUES (1, ' '); -- TAB key pressed
    1 row created.
    SQL> COMMIT;
    Commit complete.
    SQL> SELECT DUMP(descr) FROM t;
    DUMP(DESCR)
    Typ=1 Len=1: 9
    SQL> SELECT COUNT(*) FROM t
      2  WHERE descr like '%'||chr(9)||'%';
      COUNT(*)
             1Use the dump function on the column you inserted the tab into to see if it really is a tab.
    On a second look, even easier would be to correct your query so that it is actually looking for a tab character. right now you are looking for a string that contains the literal text ||chr(9)||.
    Compare your predicate to mine.
    John

  • Insert Fields From INSPECTOR DOCUMENT INFO into Pages Document

    I was able to do this since the DOS version of MS Word and would be rather surprised if there is no way to do it in Pages. Is there a way to insert "Document Info" about the present document into the present document?
    Am trying to work up my own template for manuscripts. I use the Document Info dialog and would like to have information like Author and Title dropped into the document via a field like can be done with Page Numbers.

    Bingo.
    I built a script inserting the infos extracted from the Infos dialog.
    --[SCRIPT insertdocumentinfos]
    Enregistrer le script en tant que Script ou Application : insertdocumentinfos.xxx
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Bibliothèque:Scripts:Applications:Pages:
    Il vous faudra peut-être créer le dossier Pages et peut-être même le dossier Applications.
    Définir dans un document Pages le point d’insertion des infos sur le document.
    Aller au menu Scripts , choisir Pages puis choisir “insertdocumentinfos”
    Le script extrait les infos de l’inspecteur Document > Infos et les insère dans le document.
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script or an Application : insertdocumentinfos.xxx
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Pages:
    Maybe you would have to create the folder Pages and even the folder Applications by yourself.
    Define, in a Pages document, the insertion point for the document's infos.
    Go to the Scripts Menu, choose Pages, then choose “insertdocumentinfos”
    The script extract the infos from IOnspector > Document > Infos and insert them in the document.
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/03/09
    --=====
    property Document_loc : missing value
    --=====
    on run
    run script doyourduty
    end run
    --=====
    script doyourduty
    local inspecteur_actif, mon_auteur, mon_titre, mesmotsclef, mes_commentaires, mes_infos, selection_originelle
    my activateGUIscripting()
    Grab the localized title of the Document's inspector *)
    tell application "Pages" to set Document_loc to localized string "Document"
    tell application "Pages" to tell document 1
    -- set focus on the document
    end tell
    Grabs the title of the active inspector *)
    set inspecteur_actif to my getactiveinspector()
    if inspecteur_actif is {} then
    No inspector open, trigger Show Inspector to open one *)
    my selectMenu("Pages", 8, 15)
    Grabs its title *)
    set inspecteur_actif to my getactiveinspector()
    end if
    repeat
    if inspecteur_actif contains Document_loc then
    exit repeat
    else
    Open a new Inspector *)
    my selectMenu("Pages", 8, 16)
    Grabs its title *)
    set inspecteur_actif to my getactiveinspector()
    end if
    end repeat
    Now the Document Inspector is open, extract the infos
    set {mon_auteur, mon_titre, mesmotsclef, mes_commentaires} to my get_infos()
    set mes_infos to my recolle({mon_auteur, mon_titre, mesmotsclef, mes_commentaires}, tab)
    Insert the infos at the selection point
    tell application "Pages" to tell document 1
    set selection_originelle to contents of the selection
    set selection to (selection_originelle & mes_infos)
    end tell
    Clear the property because I dislike to store such item in the script *)
    set Document_loc to missing value
    end script
    --=====
    on recolle(l, d)
    local oTIDs, t
    set oTIDs to AppleScript's text item delimiters
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to oTIDs
    return t
    end recolle
    --=====
    on activateGUIscripting()
    (* to be sure than GUI scripting will be active *)
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true
    end tell
    end activateGUIscripting
    --=====
    on getactiveinspector()
    local the_inspector
    tell application "Pages" to activate
    tell application "System Events" to tell application process "Pages"
    set the_inspector to title of every window whose subrole is "AXFloatingWindow"
    end tell
    return the_inspector
    end getactiveinspector
    --=====
    on get_infos()
    local l_auteur, le_titre, mots_clef, les_commentaires
    tell application "Pages" to activate
    tell application "System Events" to tell application process "Pages"
    tell (first UI element whose role is "AXTabGroup") of first group of (first window where subrole is "AXFloatingWindow" and title is Document_loc)
    tell (third UI element whose role is "AXRadioButton") to if value is 0 then click
    set {l_auteur, le_titre, mots_clef, les_commentaires} to value of every text field
    end tell
    end tell
    return {l_auteur, le_titre, mots_clef, les_commentaires}
    end get_infos
    --=====
    my selectMenu("Pages",5, 12)
    ==== Uses GUIscripting ====
    on selectMenu(theApp, mt, mi)
    tell application theApp
    activate
    tell application "System Events" to tell process theApp to tell menu bar 1 to ¬
    tell menu bar item mt to tell menu 1 to click menu item mi
    end tell -- application theApp
    end selectMenu
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mercredi 9 mars 2011 22:14:43

  • Tab set index

    Hello,
    Is it possible to get the selected item for a tab set ?
    Best Regards
    Franck Lugand

    Hi Franck,
    I realise this has been marked as complete but there is a simple(ish) workaround you can use as follows:
    Chose a cell to contain the index of the selected tab - you can make this text or a number whatever you require e.g. $A$1
    Next reserve three side by side columns with enough rows for each tab item and set up with the formula = $A$1 in the first column, the text that you want to be returned based on the selected tab in the second column and the formula =IF($A$1=$B3,1,0)  in the third column e.g.:
         A          B               C
    3     =$A$1          Tab 1 Selected          =IF($A$1=$B3,1,0)
    4     =$A$1          Tab 2 Selected          =IF($A$1=$B4,1,0)
    5     =$A$1          Tab 3 Selected          =IF($A$1=$B5,1,0)
    Next in each tab insert a toggle button.  Resize the toggle button to the full size of the tab canvas - make sure that it is on top of all other components i.e. appears furthest down in the tree on the left.  Set the transparency to 100%, disable displaying the labels and set toggle on Mouse Over.  Bind the source data a follows:
    Button on Tab 1 = $A$3:$B$3
    Button on Tab 2 = $A$4:$B$4
    Button on Tab 2 = $A$5:$B$5
    Bind the target cell for all buttons to cell $A$1
    Set the dynamic visibility as follows
    Button on Tab 1 = Status: $C$3, Key: 1
    Button on Tab 2 = Status: $C$4, Key: 1
    Button on Tab 3 = Status: $C$5, Key: 1
    That's it.  Now simply look at cell $A$1 to see what tab is selected.  This works by simply showing an invisible toggle button which disappears as soon as it is scrolled over whilst updating the cell $A$1 at the same time.
    It should be noted that this method does have the limitation where if the user selects a tab but then the mouse never goes over the tab area you will not know which tab was selected.
    Also - Phil  I've answered the question re push buttons in [your other thread|Tab Set Container Hyperlink?;.
    Regards,
    Paul

  • Get rid of noise opening a new tab

    I have a 2 windows 7 pc. The one at work does not make a annoying sound when I open a tab but my new dell makes the noise. If it has to make a noise I will stop using firefox. Please let me know how to proceed.

    ''FredMcD [[#answer-666436|said]]''
    <blockquote>
    What is on the new tab?
    </blockquote>
    When you open a new tab it lists the previous websites down below that you could click on to go to right away.
    When you click a new tab there is a settings key on the upper left that if you choose ENHANCED or CLASSIC I believe that is where you get the annoying noise. If you choose Blank then the noise does not sound.

  • F4 with 2 tabs

    Hi,
    I need F4 for a field in which the F4 pop up contains 2 tabs; first tab displaying User IDs, and second tab displaying distribution list.
    Any guidance on the above for me? Thanks in advance
    Rgds,
    ET

    Hi,
    try using the follwoing code to your purporse
    report zdemo_f4.
    tables: dd03l.
    types: begin of values ,
    *         carrid TYPE spfli-carrid,
    *         connid TYPE spfli-connid,
    *          tab(30) type c,
              tab like dd03l-tabname,
    *matnr like mara-matnr,
           end of values.
    data:tab like dd03l-tabname.
    data: carrier(3) type c,
          connection(4) type c.
    data: progname type sy-repid,
          dynnum   type sy-dynnr,
          dynpro_values type table of dynpread,
          dynpro_values1 type table of dynpread,
          field_value like line of dynpro_values,
          field_value1 like line of dynpro_values1,
          values_tab type table of values.
    data:v_field_value like line of dynpro_values.
    data: begin of itab occurs 0,
    *        tab(30) type c,
              tab like dd03l-tabname,
          end of itab.
    data: return_tab type table of  ddshretval.
    data: v_return_value like line of return_tab.
    call screen 100.
    module init output.
      progname = sy-repid.
      dynnum   = sy-dynnr.
      clear: field_value, dynpro_values.
    *  field_value-fieldname = 'CARRIER'.
      field_value-fieldname = 'TAB'.
      append field_value to dynpro_values.
    endmodule.
    module cancel input.
      leave program.
    endmodule.
    *MODULE value_carrier INPUT.
    *  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    *       EXPORTING
    *            tabname     = 'DEMOF4HELP'
    *            fieldname   = 'CARRIER1'
    *            dynpprog    = progname
    *            dynpnr      = dynnum
    *            dynprofield = 'CARRIER'.
    *ENDMODULE.
    module value_connection input.
    *v_field_value-fieldname = 'I_TAB-TAB'.
    *  append v_field_value to dynpro_values.
    *  call function 'DYNP_VALUES_READ'
    *       exporting
    *            dyname             = 'ZDEMO_F4'
    *            dynumb             = '100'
    *            translate_to_upper = 'X'
    *       tables
    *            dynpfields         = dynpro_values.
    *  READ TABLE dynpro_values INDEX 1 INTO field_value.
    *  SELECT  carrid connid
    *    FROM  spfli
    *    INTO  CORRESPONDING FIELDS OF TABLE values_tab
    *    WHERE carrid = field_value-fieldvalue.
    *  SELECT  matnr
    *    FROM  mara
    *    INTO  CORRESPONDING FIELDS OF TABLE values_tab.
    **    WHERE carrid = field_value-fieldvalue.
    itab-tab = 'MARA'.
    append itab.
    itab-tab = 'MAKT'.
    append itab.
    itab-tab = 'MSEG'.
    append itab.
    loop at itab.
    *values_tab-tab = itab-tab.
    insert itab into table values_tab.
    endloop.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
           exporting
                retfield    = 'TAB'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'TAB'
                value_org   = 'S'
           tables
                value_tab   = values_tab
                return_tab  = return_tab.
    read table return_tab index 1 into v_return_value.
    endmodule.
    hope this helps
    Anirban

  • Can one 3rd Party add-in hide tabs added by other 3rd Party add-ins?

    I have a C++/COM add-in that produces a Ribbon with a subset of the standard Word controls. I would like this ribbon to contain only the controls I have placed there, i.e. not to contain tabs inserted by other 3rd party add-ins (e.g. Adobe PDFMaker).
    I can see how the user can remove these tabs using the Customize Ribbon functionality, but can't find a programmatic way to exclude the tabs from my own ribbon (modifying the XML to include <ribbon startFromScratch="true"> seems to affect only
    the built-in tabs). To be clear, I do not want to disable the other add-ins, only to exclude their tabs and menu items from my custom Ribbon. Can this be done?

    Hello,
    No. The Fluent UI (Ribbon UI) extensibility model doesn't provide anything for that. But you can try to unload other add-ins at runtime setting the
    Connect property of other third-party add-ins to false. The Connect property returns True if
    the add-in is active; it returns False if the add-in is inactive. An active add-in is registered and connected; an inactive add-in is registered but not currently connected.
    Or set an appropriate key in the windows registry to prevent other add-ins from loading, see
    Registry Entries for Application-Level Add-Ins for more information.
    You can read more about the Ribbon in the following series of articles in MSDN:
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • How can I indent a paragraph WITHOUT creating spaces above or beneath?

    I am using Dreamweaver CS3 on a G5 Macintosh running OS
    10.5.5.
    I selected a new HTML document (Dreamweaver opened it as a
    CSS) and pasted text from a MS Word document.
    When I "Indent" ALL of the text everything stays the same
    except that it is ALL indented.
    BUT when I "Indent" only one paragraph then that paragraph is
    not only indented BUT there ALSO appears an extra space before and
    an extra space after that paragraph.
    What this is doing is inserting <blockquote> before and
    after the paragraph.
    How can I "indent" a paragraph without any spaces appearing
    before or after the paragraph?
    Also can this be easily done from the Design page?
    I tried inserting a tag by pressing the "tag" button on the
    keyboard but that did the same thing as using the "indent" function
    (i.e. also inserted spaces before & after the paragraph).
    BTW: I am a novice, so please try to make it as simple as
    possible.

    When you paste from Word, you often get line breaks instead
    of paragraphs.
    I think that's the problem.
    Instead of this -
    <p>this is a paragraph</p>
    <p>this is a paragraph</p>
    <p>this is a paragraph</p>
    <p>this is a paragraph</p>
    you get this -
    <p>this is a paragraph<br />
    this is a paragraph<br />
    this is a paragraph<br />
    this is a paragraph</p>
    In which case the symptoms are completely understandable.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Alan" <[email protected]> wrote in
    message
    news:C541348F.315968%[email protected]..
    >
    >
    >> Could you please be so kind to advise me what the
    code should be.
    >
    >>>> and pasted
    >>>> text from a MS Word document.
    >
    > Please give a URL address to an uploaded file that you
    are working on.
    >
    > It could be numerous things.
    >
    > If you pasted Word text into a dw document, it could be
    thousands of
    > things.
    >
    > Specific code- specific problem- specific fix.
    >
    > Otherwise it's just mushy guesses.
    >
    > --
    > Alan
    > Adobe Community Expert, dreamweaver
    >
    >
    http://www.adobe.com/communities/experts/
    >
    >
    >

  • Images not in printed documentation

    When generating printed documentation from RH7 (selecting
    embed images, MS Word doc, etc.), the images do not show up in the
    results. All I see are the {bmc <file name>.bmp} references.
    I know this worked in version 5 and I read the release update for
    7.0.1 (which I installed) that indicates it was fixed; but no joy.
    BTW, I have tried this with a new test document, re-booted the
    computer, etc.
    What is going on here?

    A point of interest with this problem. I have noticed that,
    with this installation, when I highlight a true code image in my
    Word project file (indicated by {bmc <file name>.bmp} ) then
    click the "New Help Image" button (or use Ctrl-G) the image view on
    the General tab (Insert Help Image Window) is vacant. This is
    interesting, in that, as I recall in RH5 it would show the graphic
    that was selected. For some reason this installation is not making
    the connection back to the inserted image. I'm thinking this is the
    root of the problem. Now, the question is: How do I correct it?
    Also, you will note that I previously indicated "this
    installation". This is due to my experimenting with an installation
    on a different computer (it never having any prior version of a RH
    installation) and the Printed Documentation feature works - sort
    of. The issue I see on that computer is at the end of the process
    RH7 shuts down. It doesn't lock up, it literally closes before the
    final step where the pop up dialog box indicating the process
    completed, and provides the view file button, is shown. However, I
    can find the word document it created an view it - interesting
    behavior.

  • Assigning data from one Table type to another structure

    Hi every one,
    I have a table type X sent from one function module to another Proxy generated method which has the parameter defined as a structure.
    I have declared a variable Y as a LINE TYPE OF X.
    Then I have this statement which fills up the data.
    READ TABLE X INTO Y INDEX 1.
    The data is transferred from X to Y.
    Now i need to send this to the proxy generated Function module which has a structure Z.
    Now when i say MOVE-CORRESPONDING Y to a variable of type Z, it says it cannot be converted.
    The structure in proxy generated FM has different data type but the same domain as that of standard one.
    Everywhere it is prefixed with YY.
    And also has one additional Controller tab inserted,
    Can you guys tell me how to move the data from this table type to the structure.
    - Venkat

    Hi,
    Declare a variable of line type Z.
    Move corresponding values from variable X to this variable.
    Append this variable to the table Z.
    Try this.
    Regards,
    R.Nagarajan.

  • Date picker for 64 bit windows 8 and 32 bit 2010 excel

    I'm looking for step by step instructions on how to add a pop up calender to chose a date in 2010 Excel.  There is none listed in the addition toolbox controls, where and how would I install this? 

    Hi,
    Please go to the following path to find the Microsoft Date and Time Picker:
    Excel 2010 > Developer tabe > Insert > ActiveX bottom right > More > MIcrosoft Date and Time Picker (SP4). 
    For more detail information, please refer to the following link:
    http://social.msdn.microsoft.com/Forums/en-US/26f6adea-c723-4815-92ba-59a0c846a80a/microsoft-date-picker-excel-2010?forum=exceldev
    http://www.logicwurks.com/CodeExamplePages/EDatePickerControl.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to add an image to envelope

    Hello, how can I add an image to Pages Envelopes?
    I click on the envelope white area > Insert > no options for an image.
    I click on the envelope Sender's field > Insert > options all greyed out.
    Please help.

    What's the Envelope bar? Do you mean the tabs Insert Table Chart Text etc. You can't insert an image that way. Use the Menu Bar as in this screenshot. You should be given the option to 'Choose':

Maybe you are looking for

  • Installing Windows XP to its own drive - and install question

    Am I able to install Windows on half of a formatted 500GB hard drive or do I have to install on entire drive? I have already partitioned the drive with 2 partitions and want to install Windows on one of the partitions. When Windows starts during inst

  • Print to edge of paper

    I have forgotten how to make a page print all the way to the edge of the paper, and I cannot remember what that effect is named. Thus, I can't find an answer in the FAQ's. Thank you for any help.

  • Java or C++. Can Java cut it?

    If one were to build a high-performance, collaboration program. Similar to Microsoft Netmeeting, but with MUCH more functionality, more sharing capabilities, more robust video, etc. Would Java be able to do this, or would C++ be more suited to this k

  • Multiple E1EDP05 segment needs to be populated

    Hi, I have a requirement for inbound  ORDERS type of IDOC. My requirement is for mutiple E1EDP05 segment  how to populate in the internal table.Below is my current code...      LOOP AT  dedidd.                       CLEAR : lw_e1edk01,               

  • HT201342 How to reset security question

    How to reset security question