Pop up menu in Folio files

Hi all, I try to make a pop up window in Indesign using the folio features. The pop up window must contain a scrollable text field and a image at the bottom (also in the scrollable field).
What I've already tried:
Transforming the pop up window into a button, hide it until it's triggered by another button didn't work. It worked in the SWF preview window, but didn't in the Adobe Content Viewer. It's meant for the iPad so swf files don't work.
I hope one of you have a little trick how to pull this off!
Thanks in advance.
Paul

You need to use a Multi State Object for that.
If you need more help you'll need to provide more information.
Bob

Similar Messages

  • Is it possible to build pop-up menu on nav bar in a template??

    Is it possible to build pop-up menu on nav bar in a
    template??
    There is anybody who built pop-up menu on nav bar in a
    template, made changes to the pop-up menu and successfully updated
    the pop-up menu in all files that are generated from the template?
    I wanted to do this, but failed. So, I would appreciate your tips
    if you have done that successfully.

    I have. It's so troublesome, awkward, and arcane, I don't
    suggest anyone
    use these menus.
    You might be interested in what the programmer who adapted
    this code for
    Macromedia has to say about these menus -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    There are much better ways -
    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lakeleman" <[email protected]> wrote in
    message
    news:eqqp1t$pjn$[email protected]..
    >
    Is it possible to build pop-up menu on nav bar in a
    template??
    >
    > There is anybody who built pop-up menu on nav bar in a
    template, made
    > changes
    > to the pop-up menu and successfully updated the pop-up
    menu in all files
    > that
    > are generated from the template? I wanted to do this,
    but failed. So, I
    > would
    > appreciate your tips if you have done that successfully.
    >

  • Ned to back up files.  Trying to reformat a WD 1TB external hard drive but my utilities keeps saying "choose scheme from volume pop up menu.." also says cannot be modified.  What can I do?!

    Help would be appreciated! Before I upgrade my 10.6.8 OS X I need to back up files.  Trying to reformat a WD 1TB external hard drive but my utilities keeps saying "choose scheme from volume pop up menu.." also says "this partition cannot be modified."  What can I do?! Take it back to Currys!  Many thanks

    Select the Top Most Entry for that drive, it will be the drive model # and have the size listed, then go to the Partition tab and select One Partition from the Partition Layout area drop down. Then select Mac OS Extended (Journaled) as the format, if that is the format you want to format it AS. Then click the Options button near the bottom of that windows and select GUID as the Partition Table. Close the options screen and clcik the Apply button.

  • There is an exclamation pt. next to several songs in itunes. When I click on that song, it can't locate it. When I click on locate, it pops up a menu with numerous files. I'm afraid to click on the files. What's going on?

    There is an exclamation pt. next to several songs in itunes. When I click on that song, it can't locate it. When I click on locate, it pops up a menu with numerous files. I'm afraid to click on the files. What's going on?

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • Pop up menu on right clicking an image?

    Hello,
    I am new to LabWindows/CVI. 
    Requirement: "To get a pop-up menu on right clicking on image"
    Right now, I display my images in window numbers (0 - 15). Is it possible to be able to get a pop-up menu on right clicking an image window. If yes, how? If not, could you please suggest other methods to achieve this task? Should I display the image in a separate parent panel for example? How could I do this?
    Any help would be great.
    Cheers

    I would use the code generator for right click event. then fill it up with whatever code you want under right click case. You can access these when you double click your UIR file, then on the top of the page click Code\Preferences\Default... then choose desired events for picture then go to Code\Generate\all callbacks and skip through the ones you don't want to be replaced.

  • Need Help: JTable POP up menu in a CellEditor to display on a right click

    This was from a previous post:
    I am trying to make a POP menu in a JTextComponent that has a assigned JEditorPane for a HTMLDocument to make use of the HTMLEditorKit to allow modifying HTML by the POP up menu.
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import javax.swing.table.*;
    import javax.swing.text.html.*;
    import javax.swing.undo.*;
    import javax.swing.border.*;
    import javax.swing.filechooser.*;
    public class SimpleTableDemo extends JFrame {
        public SimpleTableDemo() throws Exception {
            final JTable table = new JTable(new MyTableModel());
            table.setPreferredScrollableViewportSize(new Dimension(500, 70));
            TableColumn fileColumn = table.getColumnModel().getColumn(2);
            FileTableCellEditor editor = new FileTableCellEditor();
            fileColumn.setCellRenderer(editor);
            fileColumn.setCellEditor(editor);
            JScrollPane scrollPane = new JScrollPane(table);
            getContentPane().add(scrollPane, BorderLayout.CENTER);
            addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                System.exit(0);
                table.setRowHeight(100);
            public static void main(String[] args) throws Exception {
                SimpleTableDemo frame = new SimpleTableDemo();
                frame.pack();
                frame.setVisible(true);
            class MyTableModel extends AbstractTableModel {
                String[] columnNames = {"First Name","Last Name","HTML File"};
                public Object[][] data;
                MyTableModel() throws Exception
                    data = createArray();
                private Object[][] createArray() throws Exception
                    Object[][] data = {{"One", "Andrews", createDoc("file1.html")}
                return data;
                private Document createDoc(String url) throws Exception
                    File file = new File(url);
                    URL baseURL = file.toURL();
                    InputStream in = baseURL.openStream();
                    InputStreamReader r = new InputStreamReader(filterTag(in));
                    HTMLEditorKit kit = new HTMLEditorKit();
                Document doc = kit.createDefaultDocument();
                kit.read(r,doc,0);
                return doc;
                } // workaround for HTMLEditorKit.Parser, cant deal with "content-encoding"
                private InputStream filterTag(InputStream in) throws IOException {
                    DataInputStream dins = new DataInputStream( in);
                    ByteArrayOutputStream bos = new ByteArrayOutputStream(10000);
                    DataInputStream din = new DataInputStream(new BufferedInputStream(in));
                    while (din.available() > 0) {
                    String line = din.readLine();
                    String lline = line.toLowerCase();
                    if (0 <= lline.indexOf("<meta ")) // skip meta tags
                    continue;
                    bos.write( line.getBytes());
                    din.close();
                    return new ByteArrayInputStream( bos.toByteArray());
                public int getColumnCount() {
                    return columnNames.length;
                public int getRowCount() {
                    return data.length;
                public String getColumnName(int col) {
                    return columnNames[col];
                public Object getValueAt(int row, int col) {
                    return data[row][col];
                public Class getColumnClass(int c) {
                    return getValueAt(0, c).getClass();
                public boolean isCellEditable(int row, int col) {
                if (col >< 1) {
                    return false;
                } else {
                    return true;
    public class FileTableCellEditor extends JScrollPane implements TableCellEditor , TableCellRenderer
        public JTextComponent jtext;
        JEditorPane editor;
        HTMLEditorKit kit = new HTMLEditorKit();
        HTMLDocument doc = new HTMLDocument();;
        private EventListenerList listenerList = new EventListenerList();
        private ChangeEvent event = new ChangeEvent(this);
        public FileTableCellEditor()
        editor = new JEditorPane();
        editor.setContentType("text/html");
        doc=new HTMLDocument();
        editor.addMouseListener(new MouseHandler());
        editor.setEditorKit(kit);
        editor.setDocument(doc);
        editor.setEditable(true);
        editor.setCaretColor(Color.RED);
        getViewport().setView(editor);
        setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        public Component getTableCellRendererComponent(JTable table, Object value,
        boolean isSelected, boolean hasFocus, int row, int column)
            // System.out.println("has focus: "+hasFocus+", isSelected: "+isSelected);
            if (isSelected)
            table.editCellAt(row,column);
        table.editCellAt(row,column);
        return getTableCellEditorComponent(table,value,isSelected, row, column);
        public Component getTableCellEditorComponent(JTable table,
        Object value, boolean isSelected, int row, int column)
        editor.setDocument((Document)value);
        return this;
        public boolean isCellEditable(EventObject anEvent)
        { return true;
        public boolean shouldSelectCell(EventObject anEvent)
        { return true;
        public void cancelCellEditing()
        { fireEditingStopped();
        public boolean stopCellEditing()
        { return true;
        public Object getCellEditorValue()
        { return null;
        public void addCellEditorListener(CellEditorListener l)
        { listenerList.add(CellEditorListener.class, l);
        public void removeCellEditorListener(CellEditorListener l)
        { listenerList.remove(CellEditorListener.class, l);
        protected void fireEditingStopped()
        { Object[] listeners = listenerList.getListenerList();
        for (int i = listeners.length - 2; i >= 0; i -= 2)
        ((CellEditorListener)listeners[i+1]).
        editingStopped(event);
        protected void fireEditingCanceled()
        { Object[] listeners = listenerList.getListenerList();
        for (int i = listeners.length - 2; i >= 0; i -= 2)
        ((CellEditorListener)listeners[i+1]).
        editingCanceled(event);
            ///////////createPopupMenu///////////////
            protected JPopupMenu createPopupMenu()
            JPopupMenu popup =new JPopupMenu();
            popup.add(getTextComponent().getActionMap().get(HTMLEditorKit.cutAction)).setAccelerator(null);
            popup.add(getTextComponent().getActionMap().get(HTMLEditorKit.copyAction)).setAccelerator(null);
            popup.add(getTextComponent().getActionMap().get(HTMLEditorKit.pasteAction)).setAccelerator(null);
            popup.addSeparator();
            popup.add(getTextComponent().getActionMap().get("font-bold"));
            popup.add(getTextComponent().getActionMap().get("font-italic"));
            popup.add(getTextComponent().getActionMap().get("font-underline"));
            //popup.add(getTextComponent().getActionMap().get("break"));
            return popup;
        public JTextComponent getTextComponent()
             return jtext;
        protected class MouseHandler extends MouseAdapter{
           public void mouseReleased(MouseEvent me){
               if(me.getButton()==MouseEvent.BUTTON3){
               Point p=me.getPoint();
               createPopupMenu().show((Component)me.getSource(),p.x,p.y);
    }

    I got the pop up to work, I had to go back to and add a createActionTable editor that is a JEditorPane, vs the JTextComponent!
    Here is the latest version:
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.HashMap;
    import javax.swing.*;
    import javax.swing.undo.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import javax.swing.table.*;
    import javax.swing.text.html.*;
    import javax.swing.undo.*;
    import javax.swing.border.*;
    import javax.swing.filechooser.*;
    public class SimpleTableDemo extends JFrame {
        public SimpleTableDemo() throws Exception {
            final JTable table = new JTable(new MyTableModel());
            table.setPreferredScrollableViewportSize(new Dimension(500, 70));
            TableColumn fileColumn = table.getColumnModel().getColumn(2);
            FileTableCellEditor editor = new FileTableCellEditor();
            fileColumn.setCellRenderer(editor);
            fileColumn.setCellEditor(editor);
            JScrollPane scrollPane = new JScrollPane(table);
            getContentPane().add(scrollPane, BorderLayout.CENTER);
            addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                System.exit(0);
                table.setRowHeight(100);
            public static void main(String[] args) throws Exception {
                SimpleTableDemo frame = new SimpleTableDemo();
                frame.pack();
                frame.setVisible(true);
            class MyTableModel extends AbstractTableModel {
                String[] columnNames = {"First Name","Last Name","HTML File"};
                public Object[][] data;
                MyTableModel() throws Exception
                    data = createArray();
                private Object[][] createArray() throws Exception
                    Object[][] data = {{"One", "Andrews", createDoc("file1.html")}
                return data;
                private Document createDoc(String url) throws Exception
                    File file = new File(url);
                    URL baseURL = file.toURL();
                    InputStream in = baseURL.openStream();
                    InputStreamReader r = new InputStreamReader(filterTag(in));
                    HTMLEditorKit kit = new HTMLEditorKit();
                Document doc = kit.createDefaultDocument();
                kit.read(r,doc,0);
                return doc;
                } // workaround for HTMLEditorKit.Parser, cant deal with "content-encoding"
                private InputStream filterTag(InputStream in) throws IOException {
                    DataInputStream dins = new DataInputStream( in);
                    ByteArrayOutputStream bos = new ByteArrayOutputStream(10000);
                    DataInputStream din = new DataInputStream(new BufferedInputStream(in));
                    while (din.available() > 0) {
                    String line = din.readLine();
                    String lline = line.toLowerCase();
                    if (0 <= lline.indexOf("<meta ")) // skip meta tags
                    continue;
                    bos.write( line.getBytes());
                    din.close();
                    return new ByteArrayInputStream( bos.toByteArray());
                public int getColumnCount() {
                    return columnNames.length;
                public int getRowCount() {
                    return data.length;
                public String getColumnName(int col) {
                    return columnNames[col];
                public Object getValueAt(int row, int col) {
                    return data[row][col];
                public Class getColumnClass(int c) {
                    return getValueAt(0, c).getClass();
                public boolean isCellEditable(int row, int col) {
                if (col < 1) {
                    return false;
                } else {
                    return true;
    public class FileTableCellEditor extends JScrollPane implements TableCellEditor , TableCellRenderer
        JEditorPane editor = new JEditorPane();
        HTMLEditorKit kit = new HTMLEditorKit();
        HTMLDocument doc = new HTMLDocument();;
        private EventListenerList listenerList = new EventListenerList();
        private ChangeEvent event = new ChangeEvent(this);
        HashMap<Object, Action> actions;
        public FileTableCellEditor()
        getContentPane();
        editor.setContentType("text/html");
        doc=new HTMLDocument();
        editor.addMouseListener(new MouseHandler());
        editor.setEditorKit(kit);
        editor.setDocument(doc);
        editor.setEditable(true);
        editor.setCaretColor(Color.RED);
        getViewport().setView(editor);
        createActionTable(editor);
        makeActionsPretty();
        setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        public void makeActionsPretty(){
             Action a;
                      a=editor.getActionMap().get(HTMLEditorKit.cutAction);
                      a.putValue(Action.SHORT_DESCRIPTION,"Cut");
                      a.putValue(Action.ACCELERATOR_KEY,KeyStroke.getKeyStroke('X',Event.CTRL_MASK));
                      a=editor.getActionMap().get(HTMLEditorKit.copyAction);
                      a.putValue(Action.NAME,"Copy");
                      a.putValue(Action.SHORT_DESCRIPTION,"Copy");
                      a.putValue(Action.ACCELERATOR_KEY,KeyStroke.getKeyStroke('C',Event.CTRL_MASK));
                      a=editor.getActionMap().get(HTMLEditorKit.pasteAction);
                      a.putValue(Action.NAME,"Paste");
                      a.putValue(Action.SHORT_DESCRIPTION,"Paste");
                      a.putValue(Action.ACCELERATOR_KEY,KeyStroke.getKeyStroke('V',Event.CTRL_MASK));
        public Component getTableCellRendererComponent(JTable table, Object value,
        boolean isSelected, boolean hasFocus, int row, int column)
            if (isSelected)
            table.editCellAt(row,column);
        table.editCellAt(row,column);
        return getTableCellEditorComponent(table,value,isSelected, row, column);
        public Component getTableCellEditorComponent(JTable table,
        Object value, boolean isSelected, int row, int column)
        editor.setDocument((Document)value);
        return this;
        public boolean isCellEditable(EventObject anEvent)
        { return true;
        public boolean shouldSelectCell(EventObject anEvent)
        { return true;
        public void cancelCellEditing()
        { fireEditingStopped();
        public boolean stopCellEditing()
        { return true;
        public Object getCellEditorValue()
        { return null;
        public void addCellEditorListener(CellEditorListener l)
        { listenerList.add(CellEditorListener.class, l);
        public void removeCellEditorListener(CellEditorListener l)
        { listenerList.remove(CellEditorListener.class, l);
        protected void fireEditingStopped()
        { Object[] listeners = listenerList.getListenerList();
        for (int i = listeners.length - 2; i >= 0; i -= 2)
        ((CellEditorListener)listeners[i+1]).
        editingStopped(event);
        protected JPopupMenu createPopupMenu()
            JPopupMenu popup =new JPopupMenu();
            popup.add(getActionByName(DefaultEditorKit.cutAction));
            return popup;
        protected class MouseHandler extends MouseAdapter{
           public void mouseReleased(MouseEvent me){
               if(me.getButton()==MouseEvent.BUTTON3){
               Point p=me.getPoint();
               createPopupMenu().show((Component)me.getSource(),p.x,p.y);
        private void createActionTable(JTextComponent textComponent) {
            actions = new HashMap<Object, Action>();
            Action[] actionsArray = textComponent.getActions();
            for (int i = 0; i < actionsArray.length; i++) {
                Action a = actionsArray;
    actions.put(a.getValue(Action.NAME), a);
    private Action getActionByName(String name) {
    return actions.get(name);

  • Dreamweaver 8 Behaviors for pop-up menu

    I am a novice user of Dreamweaver 8. I created a site using
    pop-up Behaviors for a dropdown navigation bar. I've read about a
    lot of problems others are having, but part of my problem I have
    not been able to locate anywhere.
    After I created my template and want to save changes to the
    template and update the files based on this template, I go thru a
    series of JavaScript errors. It never updates any files in the end
    and sometimes shuts down the program. An example of ONE of the
    error messages is:
    At line 1654 of file "C:\Program Files\Macromedia/Dreamweaver
    8\Configuration\Behaviors\Actions\Show Pop-up Menu.js": The
    function saveDocument() is currently unavailable.
    The more pages attached, the more error messages I get....
    all are .js errors.
    The other problem is the links from the pop-up. I've double
    checked them in the behavior pop-up menu... they appear to be
    correct and sometimes work, but not all the time.
    Everything I read says that I should create the navigation
    with pop-ups (drop down menus) in Fireworks. Is Dreamweaver that
    unreliable that this can't be done within itself?
    If anyone can tell me what I'm doing wrong to receive these
    errors and how to correct my links so they are reliable, I would
    very much appreciate it. I have recreated this site 6 times and the
    errors are consistent.
    Thanks, cjbyrnes

    >I am a novice user of Dreamweaver 8. I created a site
    using pop-up
    >Behaviors
    > for a dropdown navigation bar. I've read about a lot of
    problems others
    > are
    > having, but part of my problem I have not been able to
    locate anywhere.
    You read about all these problems, yet you pressed ahead and
    used them? Why?
    DW's Pop-up menus are incompatible with DW's templates.
    Embarrassingly sad,
    but true.
    Did you read about and investigate any of the many
    alternatives posted?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cjbyrnes" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am a novice user of Dreamweaver 8. I created a site
    using pop-up
    >Behaviors
    > for a dropdown navigation bar. I've read about a lot of
    problems others
    > are
    > having, but part of my problem I have not been able to
    locate anywhere.
    >
    > After I created my template and want to save changes to
    the template and
    > update the files based on this template, I go thru a
    series of JavaScript
    > errors. It never updates any files in the end and
    sometimes shuts down the
    > program. An example of ONE of the error messages is:
    > At line 1654 of file "C:\Program
    Files\Macromedia/Dreamweaver
    > 8\Configuration\Behaviors\Actions\Show Pop-up Menu.js":
    The function
    > saveDocument() is currently unavailable.
    > The more pages attached, the more error messages I
    get.... all are .js
    > errors.
    >
    > The other problem is the links from the pop-up. I've
    double checked them
    > in
    > the behavior pop-up menu... they appear to be correct
    and sometimes work,
    > but
    > not all the time.
    >
    > Everything I read says that I should create the
    navigation with pop-ups
    > (drop
    > down menus) in Fireworks. Is Dreamweaver that unreliable
    that this can't
    > be
    > done within itself?
    >
    > If anyone can tell me what I'm doing wrong to receive
    these errors and how
    > to
    > correct my links so they are reliable, I would very much
    appreciate it. I
    > have
    > recreated this site 6 times and the errors are
    consistent.
    >
    > Thanks, cjbyrnes
    >

  • Show Pop-Up Menu error

    I'm having a problem with my site menu. The site works off a
    template and all links are created in the template. I have a
    central menu bar with rollover buttons, each with their own
    drop-down menu (using the Show Pop-Up Menu behavior). When tested
    in the browser, the menu drops down on mouse-over as it's supposed
    to, but when the links in the drop-down menu are clicked on, an
    error page comes up. The directory path specified in the Pop-Up
    Menu behavior is correct, but changes inexplicably when tested in
    the browser. All other links in the site (not in drop-down menu
    format) function as they're supposed to. I have no clue how to fix
    this problem. I think there may be a script error in the mm_menu.js
    file which is automatically created by Dreamweaver, but am not sure
    how to go about correcting this. Any ideas?

    > When creating pop-up menus everything works fine
    You just think. Read this (written by the person who adapted
    the original
    Netscape code for Macromedia) -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    Those menus are a plague.
    Anyhow, try this -
    Troubleshooting JavaScript errors in Dreamweaver
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "montagrc" <[email protected]> wrote in
    message
    news:f2uhti$m9b$[email protected]..
    > When creating pop-up menus everything works fine,
    however, when I need to
    > go in
    > and edit a link, this error keeps occuring:
    >
    > "When executing inspectBehaviour in Show pop up
    menu.htm, the following
    > Javascript error(s) occured:
    >
    > At line 492 of file "C:\...Dreamweaver
    > 8\Configuration\Behaviours\Actions|Show
    > Pop -up Menu.js";
    > TypeError: T.update is not a function."
    >
    > Anyone seen this before, noone in my workplace has, nor
    has googling
    > yielded
    > any answers. Any thoughts/ideas/help greatly
    appreciated.
    >
    > Using Dreamweaver 8, no extensions, update 8.02
    >

  • Smart way to auto update pop-up menu in nav bar?

    Smart way to keep updating pop-up menu in Nav bar ?
    I created a template in DW 8. It is used to generate many
    other pages for the site. only the page content region is editable.
    There is a nav bar in the template. Some buttons of the nav bar
    display pop-up menu when MouseOver . Those pop-up menu need to be
    changed from time to time. What is the best way to automatically
    update the pop-up menu in those templated-generated files, using
    template (I tried to define the nav bar as editable region,
    modified the pop-ups and saved the template. I got a lots of
    unexpected problems, DW8 even crashed), using libray items or
    something else? I am a relatively new DW developer. Much appreciate
    if someone could help.

    If the navigation is in a non-editable region of the
    template, then changes
    to it will propagate automatically to all child pages - are
    you not seeing
    that happen?
    > I tried to define the nav bar as editable region
    You wouldn't usually want to do that.
    > I got a lots of unexpected problems, DW8 even
    > crashed
    You must have made other errors. Doing something like this
    would surely not
    crash DW.
    The only problem with having the navigation in the
    non-editable region of
    the template is that a change to it will touch *every* file
    in the site,
    each of which must then be uploaded again. To solve this
    problem you can
    use server-side includes for the navigation. Then you would
    make your
    change to the include file, upload it, and all pages would
    reflect that
    change.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lakeleman" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    Smart way to keep updating pop-up menu in Nav bar ?
    > I created a template in DW 8. It is used to generate
    many other pages
    > for
    > the site. only the page content region is editable.
    There is a nav bar in
    > the
    > template. Some buttons of the nav bar display pop-up
    menu when MouseOver .
    > Those pop-up menu need to be changed from time to time.
    What is the best
    > way to
    > automatically update the pop-up menu in those
    templated-generated files,
    > using
    > template (I tried to define the nav bar as editable
    region, modified the
    > pop-ups and saved the template. I got a lots of
    unexpected problems, DW8
    > even
    > crashed), using libray items or something else? I am a
    relatively new DW
    > developer. Much appreciate if someone could help.
    >

  • Pop-up menu feature and IE issues

    I am using Firework MX 2004, Version 7.0 Build 288, to create drop down menus using the “Pop-up Menu” feature. The pop-up menus that I create work great in Netscape and Firefox, but fair in IE 6.0. The pop-up menus appear under certain elements such as select boxes in IE 6.0. I have read and tried some of the solutions on Blogs in regard to setting the z-index in div tags, but to no avail. Any help or work around would be greatly appreciated! Unfortunately, the huge company I work at switched from Netscape to IE 6.0 as the corporate platform, and I don’t have the patients to upgrade Fireworks if that is the solution. The last time I upgraded from Fireworks 4 toFirework MX 2004 the Macromedia Tech Support area had to e-mail me special registry entries for the product registration to work, and it took a very long time. I still have the emails to remind me of the pain. Thanks William!

    I found this:  http://kb2.adobe.com/cps/158/tn_15842.html
    And this:
    Fireworks generated html and javascript calls its layers with a z-index beggining with a value of 1. Try doing a search of text external JS file and you will see your menus.
    I would rename the offending layer that runs over the top of the menu layers in the with z-index:0
    Also this:  http://www.adobe.com/devnet/fireworks/articles/fw8_popups.html
    Hope something here works, that being said...the menus from that version arenb't very good. a better solution is CSS menus. A quick solution is from Project Seven here:http://projectseven.com/products/menusystems/pmm2/index.htm for $95. It's a DW extension and simple to use. Alkso compatiple with most browsers.

  • Pop-up menu to list multiple time values (8:00 AM etc.) ?

    I was looking at the option of using a pop-up menu to select times (8:00 AM etc.) from to keep from having to enter all the times in my spreadsheet manually. Has anyone done this before and is there a download or widget for this? Unfortunately for me, I would need it to be in increments of 5 minutes starting from 7AM to 7PM or so, which would be a tremendous amount of parameters added to a traditional pop-up menu.
    Thanks for any input.

    T25 wrote:
    Thanks for the insight, it seems to make good sense to me with your process to create multiple pop-ups and/or sliders. Since I'm still new to iWork Numbers though, are the tables you illustrated in your reply saved in a separate spreadsheet to use as a reference for the pop-up in other, separate spreadsheets? Is that what LOOKUP is used for (to reference another sheet)?
    My invoice has a single cell for an "IN" time and another for an "OUT" time; all incorporated to a fairly "busy" invoice that can't accommodate any additional cells in those areas.
    Both tables are on the same sheet, but I placed them on separate tables on that sheet.
    They don't have to be on separate tables, and they don't have to be on the same sheet, but they do have to be in the same document, as Numbers does not provide for linking to separate documents/files.
    With the busy invoice in your case, you could place the popup and slider cells (two of each) on a separate table, and only the result cells on the same table as your invoice. The popups and sliders could go on the same table as the lookup array, but that table would then have to be both visible and unlocked.
    Placing the Lookup array on a separate table allows you to lock that table to prevent accidental changes to it. You can also easily hide the Lookup table by placing it behind the main table (your invoice), or on a second sheet in your document.
    Placed on the same table as the rest of the invoice, you can still hide it simply by hiding the two columns containing the lookup information.
    An alternate method, requiring no extra cells or tables would be to Use Insert Date and Time (in the Insert menu, or from the keyboard with shift-option-command-D ) to insert the date and time directly.
    There are some complications with this which might make it unusable, depending on how many people need to be trained and how well they take to training. Insert Date and Time starts with the assumption that what you really want to do is insert the date. Changing its mind takes a couple of extra steps that must be done immediately, and each time.
    1. Click on the cell to select it.
    2. Go Insert > Date and Time (or press shift-option-command-D )
    3. Before taking any other action, double click the cell (which will now be displaying the current date) to open a small dialogue.
    4. In the dialogue, use the popup menu to choose one of the Time only formats.
    5. Click outside the dialogue to dismiss it.
    The cell will now contain the current Date and Time value, and will display the current time.
    Note that the Time, when inserted this way, will be the time that the insertion was done, and won't be rounded to the nearer five minutes.
    You'll find a discussion of LOOKUP (and the two related functions, VLOOKUP and HLOOKUP in the iWork Formulas and Functions User Guide, and an excellent overview of Numbers (including explanation of the terms I've used above) in the Numbers '09 User Guide. Both can be downloaded using the menu items in the Help menu in Numbers. Both are recommended reading for new and old users of Numbers alike.
    Regards,
    Barry

  • How to show a blank or clear cell for the first entry in a numbers pop-up menu on a mac. I can do it on the iPad but not on the mac. Thank you.

    Can you please advise how to show a blank or clear cell as the first option in a pop -up menu on a Mac, I can see how on an IPad but but not on the Mac.
    Thank you.

    Hi grm,
    Yvan Koenig wrote an Applescript to create an popup menu with a true blank menu item. You can find it in Yvan's Box Account public area. Click on for_iWork'09, then for-numbers'09, then look for and download popup_with_nil.zip. Unzip the file, then open it with ScriptEditor.
    Yvan's scripts include instructions (in French and English) on how and where to save the script and how to use it. I haven't read this one recently, so I can't give you any further details on it.
    Regards,
    Barry

  • The spry pop-up menu I built in Adobe Dreamweaver worked fine in my old Firefox, I updated Firefox today and the menu no longer works--despite disabling the pop-up blocker in Firefox preferences...what's the problem??? I need the menu to work!!!

    I built a new pop-up menu for my website using Spry in Adobe Dreamweaver. Because of some differences in .HTML and .XHTML
    it took me days to get it right. I tested every variation in Firefox until it worked perfectly. Today, I installed the newest version of Firefox and now the pop-up no longer works. I changed the preferences in Firefox to disable to pop-up blocker and it STILL DOESN'T WORK...although an older style of pop-up menu (menu machine) which is no longer supported by Adobe, DOES WORK.
    HELP!!! THIS IS IMPORTANT.

    pixlor:
    OP is using CS3 and the menu blog is talking about the menus
    in earlier
    versions of FW, so *most* of the points made in the blog
    don't apply.
    That's not to say that using CS3 pop-up menus is a *good*
    thing....
    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
    ==================
    "pixlor" <[email protected]> wrote in
    message
    news:gbce7b$a50$[email protected]..
    >
    quote:
    Originally posted by:
    captainbianco
    > I agree completely and totally, and I will haha but I'd
    like to get this
    > one
    > fixed if I can. You can view the page here
    >
    http://www.flooringanswers.com/nysurfaces/index2.htm
    > Hover over the letters to see the pop-up menu's. The one
    over "t" is the
    > problem.
    > Under Flooring, for example, you have a div with id of
    > MMMenu0910163730_1_1
    > (ugh). Under that are four items and they have their own
    IDs:
    > MMMenu0910163730_1_1_Item_0
    > MMMenu0910163730_1_1_Item_1
    > MMMenu0910163730_1_1_Item_2
    > MMMenu0910163730_1_1_Item_3
    > MMMenu0910163730_1_1_Item_4
    >
    > Your CSS file, however, doesn't have location
    information for the ..Item_4
    > object.
    >
    > That's just from a quick, cursory look. In order to fix
    this, you're going
    > to
    > have to go through it line by line and debug it. By the
    time you do this,
    > you
    > might be better off getting something else and starting
    from scratch.
    >
    > Read this:
    >
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    >

  • JComboBox event notification when select first entry in pop-up menu JDK 6

    I recently began testing a Java GUI, I originally developed with JDK 1.5.0_11, with JDK 1.6.0_3. I have used the JComboBox in several applications developed using JDK 1.3.x and 1.4.x over the years. In every one of these earlier JDKs the JComboBox widgets all behaved the same. When you select the JComboBox widget, the pop-up menu appears and you can select any of the items from the menu list. Having made the selection with either a mouse click or a key press, an event notification is sent. Typically, an ActionEvent as well as either a mouse click event or a keypressed event may be sent. When testing with 1.6.0_x versions of the JDK and JRE, I can't account for any event notification being sent when selecting the first item at the top of the pop-up menu as the initial selection. If I select some other item on the list and then the first item, it works as it is supposed to work, but only after selecting another item first.
    I've placed the JComboBox in a JDialog and a JPanel. There are NO AWT widgets in any containers of the application. The same behavior seems to exist regardless of what other containing Swing component I place the JComboBox in. I'm running these applications on Windows XP, service pack 2. The system is an AMD 64 bit dual processor with 4Gb of RAM. The essential code follows:
    private JComboBox getJcboAlias()
        /* Note here that I am using a defaultComboModel as I have always done */
       jcboAliases = new JComboBox(urls);
       *jcboAliases.setEditable(false);*                               // Note here that the JComboBox is NOT editable
       jcboAliases.addActionListener(new ActionListener()   // ActionListener only receives a notification if the second or
       {                                                                            // another item in the pop-menu list is selected...but never the
          public void actionPerformed(ActionEvent ae)           // first item in the list
             String s = (String) jcboAliases.getSelectedItem();
             for (int i = 0; i < connections.size(); i++)
                conAlias = (String[]) connections.get(i);
                if (s.equals(conAlias))
    isSelected = true;
    break;
    jlblName.setVisible(true);
    jlblAlias.setVisible(true);
    jlblUID.setVisible(true);
    jlblPWD.setVisible(true);
    jtxtName.setText(conAlias[0]);
    jtxtName.setVisible(true);
    jtxtAddress.setText(conAlias[1]);
    jtxtAddress.setVisible(true);
    jtxtUID.setText(conAlias[2]);
    jtxtUID.setVisible(true);
    jtxtPWD.setVisible(true);
    jtxtPWD.setText("");
    jtxtPWD.requestFocus();
    return jcboAliases;
    }    I'm using a non-editable JComboBox because there is a pop-up menu with this and not with the JList widget.  JComboBox behaves more like the JList MicroSoft counterpart.  Another code snippet follows in which the JComboBox is editable.  The same errant behavior occurs when selecting the first item from the pop-up menu: private JComboBox getJcboPCMember()
    jcboPCMember = new JComboBox(PCViewerCustom.getCurrentMembers());
    jcboPCMember.setBounds(250, 103, 180, 20);
    jcboPCMember.setToolTipText("PATHCHECK(ER) member name - Example: CKPPTHCK");
    jcboPCMember.setSelectedIndex(Integer.valueOf(PCViewerCustom.getCurrentHost(3)));
    jcboPCMember.setEditable(true); // Note here that this JComboBox IS editable
    jcboPCMember.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    if (ae.getActionCommand().equals("comboBoxEdited"))
    boolean copy = false;
    for (int i = 0; i < jcboPCMember.getItemCount(); i++)
    if (jcboPCMember.getSelectedItem().equals(jcboPCMember.getItemAt(i)))
    copy = true;
    break;
    if (!copy)
    if (jcboPCMember.getItemCount() > 0)
    if (jcboPCMember.getItemAt(0).equals("No Entries"))
    jcboPCMember.removeItem("");
    jcboPCMember.removeItem("No Entries");
    jcboPCMember.insertItemAt((String) jcboPCMember.getSelectedItem(), 0);
    else
    jcboPCMember.removeItem("");
    jcboPCMember.addItem((String) jcboPCMember.getSelectedItem());
    enableJbtnOK();
    else
    if (jcboPCMember.getSelectedIndex() >= 0)
    PCViewerCustom.setCurrentHost(3, Integer.toString(jcboPCMember.getSelectedIndex()));
    enableJbtnOK();
    else
    JOptionPane.showMessageDialog(null, "Name not selected", "Error", JOptionPane.ERROR_MESSAGE);
    return jcboPCMember;
         I am able to add a new entry to the JComboBox, however, I am still unable to select the first item from the pop-up menu and fire any kind of notification event.  I have not seen this behavior before in any earlier versions of the JDK and it's playing havoc with my ability to deploy the application into a JDK or JRE V6 environment, without adding a bunch of additional code to pre-select the first item on the list, which pretty much defeats the purpose of the JComboBox.  I'll be the first to admit I've done something wrong, but i've built a number of test scenarios now on two systems runing Win XP SP2 and I get the same errant behavior.  I've also added in event listeners for a MouseListerner, a KeyListener and an ItemListener.  Still no event notification on this first item in the list.  Again, however, if I select one of the other items from the pop-up menu list and then select the first item, all is well.  Imagine selling that method of operation to a user....  It occurs to me that this must be a bug in the V6 JComboBox.  I wanted to post this here first, however, in order to determine if this is, in fact, a bug - in other words, am I the only one seeing this, or is this a more widespread issue?  Any assistance in making this determination is greatly appreciated.
    David Baker
    Edited by: Galstuk on Nov 27, 2007 12:21 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    here is the other file as well:
    Harold Timmis
    [email protected]
    Orlando,Fl
    *Kudos always welcome
    Attachments:
    VI2.vi ‏5 KB

  • Where do I find the Style pop-up menu so I can choose mailing labels?

    I've set out below the Help item for printing mailing labels from Address Book but I don't get any Style option with my printer which is a reasonably up to date HP 1200 Laser. Have I got the settings wrong somewhere
    To print mailing labels:
    Select All or a group in the Group column, or select specific contacts in the Name column.
    If contacts in the group you selected have multiple addresses, you can choose which address to use for each contact.
    Selecting addresses for group members
    Choose File > Print.
    Choose Mailing Labels from the Style pop-up menu, and then set other options:
    Layout: Choose a type of label from the Page pop-up menus. Select Define Custom to set the page margins and the gutter space between labels, and to specify how many labels to print on a page.
    Label: Choose which addresses to use from the Addresses pop-up menu. Choose the order in which to print the labels using the “Print in” pop-up menu. Add a small graphic to the labels by clicking the Image Set button; change the font by clicking the Font Set button.
    Click Print.

    Assuming you are in Address Book, you choose the records you want to print and then the File/Print menu selection.
    If the printer menu comes up with only the name of the printer and "Presets" dropdown choices, you click on the arrow to the right of the printer name to expand the print menu. Make sure the box below the pages to print is showing "Address Book" and you will see the "Style" below it.

Maybe you are looking for

  • Error while creating project automatically from cProjects

    Hi, Need suggestion on creating projects in SAP-PS from cProjects. There is cProjects & SAP-PS interface.The requirment is to create project in SAP-PS from cProjects. All the configuration has done in cProjects & PS module also. While saving the proj

  • 'Data Access Error' while trying to delete period using Table Editor in FDM

    Hi, I'm trying to delete a period that has been entered wrongly using Tools->Table Editor option. But when I try to 'Update Grid' after deleting the Period,I get 'Data Access Error'. Could any one let me know how to solve the error. Thanks in advance

  • Why links in Microsoft Outlook emails do not open Firefox?

    FF 4.0b8 is my default browser and MS Outlook 2003 my default email program. When I open an email containing a link to a website and click on it, no FF window is opened. This problem did not exist with Internet Explorer. As an alternative solution, I

  • How to include events for LO

    Hi, Is there a way to include events for standard LO data sources ? There are a list of events that are available for 2LIS_02_ITM and it records all the delta changes as per the events.For 2LIS_02_SCN there is only one event available which triggers

  • Problem in 6070 connecting

    i have a problem in connecting my 6070 to computer nokia pc suite canot connect with it if any one know how to solve please replay