scrolling table cell - request help

Hello

I have a scrollable table cell (300px wide and 400 px high) which can contain images and text. The contents of the cell should be scrollable.

I'm just a beginner, but not very skilled in Dreamweaver CS3 on a PC. I worked a bit with CSS.

If someone could help me, I would really appreciate it especially if you are able to direct me to the video tutorial in which this is demonstrated. I have a subscription on Lynda.com and Kelby Training online but see nothing on this subject.

I have read several posts on 'scrollables DIVs' on the forum but have not been able to apply them successfully.

I would be grateful to anyone who helps.

Thank you very much.

Jane

Looking to add a text box may also contain images?

Almost looks like a CSS overflow style.

Something like this:

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut developed and pain magna aliquyam erat, sed diam voluptua. At vero eos and accusam and justo duo dolores and ea rebum. STET clita kasd gubergren, no sea takimata sanctus is Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut developed and pain magna aliquyam erat, sed diam voluptua. At vero eos and accusam and justo duo dolores and ea rebum. STET clita kasd gubergren, no sea takimata sanctus is Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut developed and pain magna aliquyam erat, sed diam voluptua. At vero eos and accusam and justo duo dolores and ea rebum. STET clita kasd gubergren, no sea takimata sanctus is Lorem ipsum dolor sit amet.

Tags: Dreamweaver

Similar Questions

  • Unmerge scritp of table cells. Help

    I need a script that could cancel the merge all cells whitin all tables in the active text block. In addition, it resizes collum line heights and widths to accommodate text hidden.

    I have a lot of badly put together tables from Word. Automation would help a lot.

    THX!

    This good word cancels all cells in all tables in the current document:

    app.activeDocument.stories.everyItem().tables.everyItem().cells.everyItem().unmerge();
    

    Peter

  • With the help of several styles of paragraph in a table cell

    Hello

    I'm stuck using several styles of paragraph within a cell. I guess the solution is that I need to start a new paragraph, but so far I have not found a way to do it. When I directly in InDesign, it works fine, but I can not start a new paragraph when you use the script.

    Here's a solution I've tried:

    with {(table)

    .properties de.insertionPoints.item-(1) lines [0] .cells [0] = {}

    content: '1 ' Format string,

    appliedParagraphStyle: styleFormat1

    };

    .properties de.insertionPoints.item-(1) lines [0] .cells [0] = {}

    content: "\rString in size 2',

    appliedParagraphStyle: styleFormat2

    };

    }

    But until now I did not get a new paragraph. When you look at the IDMLs, you can see that InDesign adds a new paragraph inside the cell, while my code remains in the same paragraph.

    Here the IDML result when I do in InDesign:

    "< cell auto ="ue0ie4i0"Name =" "0:0" RowSpan = "1" ColumnSpan = "1" AppliedCellStyle = "CellStyle / $ID / [no]" AppliedCellStylePriority = "0" >

    < ParagraphStyleRange AppliedParagraphStyle = "ParagraphStyle/Format1" >

    < CharacterStyleRange AppliedCharacterStyle = "CharacterStyle / $ID / [no style character]" >

    < content > string to Format 1 < / content >

    < Br / >

    < / CharacterStyleRange >

    < / ParagraphStyleRange >

    < ParagraphStyleRange AppliedParagraphStyle = "ParagraphStyle/Format2" >

    < CharacterStyleRange AppliedCharacterStyle = "CharacterStyle / $ID / [no style character]" >

    < content > string to Format 2 < / content >

    < / CharacterStyleRange >

    < / ParagraphStyleRange >

    < / cell >

    And here is that when I use the script:

    "< cell auto ="ue0ie4i0"Name =" "0:0" RowSpan = "1" ColumnSpan = "1" AppliedCellStyle = "CellStyle / $ID / [no]" AppliedCellStylePriority = "0" >

    < ParagraphStyleRange AppliedParagraphStyle = "ParagraphStyle/Format2" >

    < CharacterStyleRange AppliedCharacterStyle = "CharacterStyle / $ID / [no style character]" >

    < content > string to Format 1 < / content >

    < Br / >

    < content > string to Format 2 < / content >

    < / CharacterStyleRange >

    < / ParagraphStyleRange >

    < / cell >

    It is therefore quite clear my script is not adding a new paragraph. Any ideas how to get a new paragraph so I can use more than one paragraph style?

    I don't have test nore debug your code, but I suggest you another method to apply the content and style of two paragraphs. Do not use a with statement.

    What is your version of InDesign?

    Example:

    // Add new document:
    var doc = app.documents.add();
    // Add two paragraph styles:
    var paraStyle1 = doc.paragraphStyles.add({name : "ParaStyle-1" , pointSize : 20});
    var paraStyle2 = doc.paragraphStyles.add({name : "ParaStyle-2" , pointSize : 15});
    
    // Add a new text frame (default is on page 1):
    var newTextFrame = doc.textFrames.add();
    newTextFrame.geometricBounds = [0,0,"150mm","150mm"];
    
    // Add a table to this text frame:
    var table = newTextFrame.tables.add
    (
        {
            bodyRowCount : 4 ,
            columnCount : 3 ,
            width : "150mm"
        }
    
    );
    
    // Assign the contents as array:
    // The fisrt and only entry in this array will give the first cell its contents:
    table.contents =
    [
        "Paragraph 1"+"\r"+"Paragraph 2"
    ]
    
    // Assign the formatting of the two paragraphs:
    table.cells[0].paragraphs[0].appliedParagraphStyle = paraStyle1;
    table.cells[0].paragraphs[1].appliedParagraphStyle = paraStyle2;
    

    Strategic outcome with InDesign CS6 Mac OS x 10.6.8 v8.1.0:

    Hope, that helps.
    Uwe

  • Help with a script to search for text in a table cell and apply the cell style

    Hello

    I build the script which Jongware wrote in his post here http://indesignsecrets.com/tackling-tables-through-scripting.php - I am trying to create a variable in which I can add a number of different parts of the text, in this case it's different parts of the United Kingdom i.e. 'London', 'East', 'Scotland' etc. I just need the script to apply the cell Style - 'District Cell' - to any cell that contains text in the variable. Here's the script, if anyone can help I would be grateful.

    function checkWhichTable()
    {
    // ensure the user made a selection
    if (app.selection.length != 1)
    return null;
    var currentTable = app.selection[0];
    if (currentTable.hasOwnProperty("baseline"))
    {
    currentTable = app.selection[0].parent;
    }
    while (currentTable instanceof Cell || currentTable instanceof Row || currentTable instanceof Column)
    currentTable = currentTable.parent;
    if (!(currentTable instanceof Table))
    {
    // No table selected
    return null;
    }
    return currentTable;
    }
    app.doScript(checkUserSelection, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, "Process Table");
    
    
    function checkUserSelection ()
    {
    var a_table = checkWhichTable();
    if (a_table == null)
    {
    if (confirm("No table selected. Do you want to process *all* tables?") == false)
    return;
    allTables = app.activeDocument.stories.everyItem().tables.everyItem().getElements();
    for (aTable=0; aTable<allTables.length; aTable++)
    {
    processTable (allTables[aTable]);
    }
    } else
    {
    processTable (a_table);
    }
    }
    function processTable(table)
    {
    // do something here!
    
    
    //Find Text in Cell and apply Cell Style
    var textInCell=['London', 'Scotland', 'South West'];
    for (i=0; i<table.cells.length; i++)
    {
    if (table.cells[i].texts[0].contents==textInCell)
    table.cells[i].appliedCellStyle = "District Cell";
    }
    
    
    
    
    }
    

    Hello

    Change this feature:

    function processTable(table)
    {
    //Find Text (exactly as it is) in Cell and apply Cell Style
    var
      textInCell=['London', 'Scotland', 'South West'],
      mFound, cFound;
    
    app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "^(" + cities.join("|") + ")$";
    mFound = table.findGrep();
    while( cFound = mFound.pop() )
      cFound.parent.appliedCellStyle = "District Cell";
    }
    

    Jarek

  • Open the .pdf document in a table with scroll bars cell?

    How do I would have created a table where loading the page in a scrolling .pdf document appears in a table cell?

    Files PDF is media files.  How they are treated is entirely at the mercy of your end-users system software and browser settings.  Many people like me prefer to download a PDF file, then open them directly in Acrobat Pro, thus avoiding any need for browser support.    The best you can do is to provide a direct link to the PDF file and let people manage their own path.

    Nancy O.

  • table cell shift problem

    Get a weird selection indicator displacement effect in the cells when using tables in LV 2013 (32) on Win 7 (64).   Hesitate to call it a "scroll" because that which has other meanings in the context of the table.

    Click on the letters in the attached VI to see - same effects if the table is in a VI running or not.

    + clicking on 'A' has no effect.  You remove 'A', the cell to move.

    + clicking on one of the cells located below "A" act as above

    + clicking on the header cell 'x' causes a big drift.  Put the other values in the cell has other effects (some travel a lot, some not at all)

    + clicking on the cell of the table "y" causes a big bend on the side.  Put the other values in the cell has other effects (some travel a lot, some not at all)

    + clicking on the "z" table cell is not moving.  You delete 'z', a big bend on the side

    + I noticed the change which occurs when you remove "A" stops at the same place in the landscape as if you

    Comments:

    + Seems to be related to the cells to justify = center.

    + Shifting is always is from right to left.

    + I noticed the change which occurs when you remove "A" stops at the same horizontal location as if you click on 'y '.

    + occurs at least two different machines from different mfg both 2013-32 running on Win7-64.

    In the case where you are still interested, see 5 message in this thread.

  • access to table cells

    Hello

    Could someone please help me understand how to access the cells in a table (to do)?  I have a report with a table full of a channel.  In a column, it shows a list of names (which come from a channel).  I have another string with a list of colors and I want to associate each name in the table with a color of the second round. I tried unsuccessfully to access even a cell using D2TabRow and D2TabCol and the content...

    Any help is appreciated

    Thank you

    Hi Muskeg,

    Edna has sent two times it shows the only way to change the font of the text in individual table cells properties.  You create, save and call a UserCommand, so is not simple.  The main problem you use is that the table in the REPORT object does not generally contain cells.  If you happen to have chosen a column type in the 'list of text', then you can access the contents of individual table cells, but otherwise, your only options are to get and set the values outside the table that the table is referencing - be they channel values or the values of variables or expressions.

    The easiest option is to get/set of string values and assign each column of the table or row to display the channel values.

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • Variable font inside a table cell properties

    Hello

    the following code works fine inside a text box:

    with(textArea.insertionPoints) {
         for ( var iStringSection = 0; iStringSection < stringsAndStyles.length; iStringSection++ ) {
              lastItem().properties = {
                   contents: stringsAndStyles[iStringSection].contents,
                   fontStyle: stringsAndStyles[iStringSection].fontStyle
              }
         }
    }
    

    The style changes of fonts correctly for each segment of the chain. But if I try the same thing with a table cell (just replace textArea with the active cell, stays remains the same), the fontstyle will not change between segments of the chain. Is there a different approach to reach the variable font inside a table cell styles? Without the help of a new paragraph, the police is supposed to change on the same line.

    Thank you very much!

    done with (work myCell.texts [0])?

  • Multiple values in a single Table cell

    Hello

    I have a requirement of the customer. I need to show multiple values within a table cell

    Example of

    Location City Shop
    NorthCity AHS-200, SH-210, SH310
    SouthCity BSH - 100, SH341
    EastCity CSH-20

    But my table shows repeating cell as follows.

    Location City Shop
    NorthCity ASH-200
    NorthCity ASH-210
    NorthCity ASH310
    SouthCity BSH-100
    SouthCity BSH341
    EastCity CSH-20

    So I need your help to show repeated STORE name in a single column of the Table.

    Thank you

    Try this

    EVALUATE_AGGR ('LISTAGG (%1, %2) within THE GROUP (ORDER BY DESC %3)', TableName.ColumnName, ',', TableName.ColumnName)

  • DW CS6 Valign a table cell?

    I use DW since Macromedia days.  I started my site Web to help teach yourself the publication of Laura Lemay Web with HTML 3, released in 1996.  I learned HTML 3.  I learned to use Dreamweaver.  I have maintained my site without too many problems, relying on DW.  Until the CS6.

    Now I'm lost.  I only want to vertically align a small icon (a 30 x 30 px JPEG) and 10-point in a table cell text. The cell is a length of three cells.  The code looks like this:

    < td colspan = "3" valign = "middle" >
    "" < img src = "... / images/misc/little-stars/Tiny-Star-1.jpg" width = "30" height = "31" border = "0" >
    < span class = "verdana10" > - in time for filming! (rules of < em > Dave < /em > clock!) </span >
    < table >

    It can be seen on the Web here.  http://www.techno-Imaging.com/gal15summer/gal2015summer.html

    I understand that does not support HTML5 valign = "middle" and that I should use a CSS style.  But most browsers should be backwards compatible.  I prefer to use the old code in this instance.

    If I knew how to add a CSS class to my default style sheet I would.

    TIA,-Dave

    Do what you want to achieve? (Although course without border)

    Remove the valign = "middle" and insert this code at the end of the img element:

    "img src ="... / images/misc/little-stars/Tiny-Star-1.jpg "width ="30"height ="31"border ="0" style =" "vertical-align: middle;" "

    Us-hh

  • How to bind a table cell?

    Hello

    What would be the best way to link this table cell? I want the entire cell related rather than just the text inside.

    < table width = "160" border = "0" align = "right" cellpadding = "5" cellspacing = "0" class = "backgroundbox-video" >
    < b >
    < td width = "167" align = "left" valign = "top" > < class p 'navheader-lg' = > Video Clip < /p >
    < class p "navheader-sm" = > watch a short < br / >
    video testimony < /p > < table >
    < /tr >

    Thank you very much

    Laura

    Of course, simply add the new image as a background in this selector:

    .vidA a:hover{     background-color:#C4F894;        background-image: url(...);}
    

    This might be a good time to mark this as so answered correctly the people who help will not need to click on this thread more.  Thank you!

    --
    
    E. Michael Brandt
    
    www.divahtml.comwww.divahtml.com/products/scripts_dreamweaver_extensions.phpStandards-compliant scripts and Dreamweaver Extensions
    
    www.valleywebdesigns.com/vwd_Vdw.aspJustSo PictureWindowJustSo PhotoAlbum, et alia
    
    --
    
  • Displacement of table cells

    When I look at my page in Dreamweaver, the top of my table cells are approximately 248 pixels in width, but when the page is displayed on the web, they are out of alignment. I wish I could lock each cell of the table, so it does not move.

    Here is my site:
    http://www.troyrecreation.org/

    Cells that have changed are in the image of the woman doing Pilates, the cell that contains the text on the left, below and at the bottom left. This is a table with 4 cells.

    Any help would be appreciated.

    Thank you
    Dan

    Changing cell table code that the pilates2 image is:


    width = "247" height = "185" >

    solve this problem?

    Take care
    Tim

    "troyrecreation" wrote in message
    News:fpl04j$H47$1@forums. Macromedia.com...
    > When I look at my page in Dreamweaver, the cells at the top of the page to
    > my
    > table are approximately 248 pixels in width, but when the page is displayed on the web.
    > they
    > are out of alignment. I wish I could lock each cell of the table, so it will not
    > Shift.
    >
    > Here is my site:
    > http://www.troyrecreation.org/
    >
    > Cells that have changed are the image of the woman doing Pilates, the
    > cell phone
    > with the text to the left, below and at the bottom left. This is a table with 4 cells.
    >
    > Any help would be appreciated.
    >
    > Thank you,
    > Dan
    >

  • To edit a cell, Numbers Help said to double-click on the cell

    To change the contents of a cell, Numbers Help said double-click the cell to do the insertion point appears, then enter.

    I can double click on a cell, constantly, but rarely the insertion point appears.

    How can I make it work every time?

    Try adjusting the double-click speed in system preferences > accessibility:

    In general, I double click at a rate that is roughly 5 clicks per second. If you are double clicking too slow then numbers can interpret this as two simple clicks rather than a single double click event.

  • a cross on the table cell

    Is it possible a cross on the table cell?

    The term "strike" can have multiple interpretations.

    1. As a checkbox clickable?
    2. With diagonal lines, which intersect?
    3. With vertical lines or horizontal hash?
    4. With table cell fill of a model image pre-built?
    5. With gray scale or the fill color, without content, to suggest the use of cell?

    Pages, you didn't say what version, so I'll use v5.6.2, does not provide the points 1, 2 and 3 for the cells in a table.

  • hyperlink in the table cell?

    Hi all

    We need to navigate a path for each row in the table control. Is it possible to have a hyperlink in a table for each row cell? or do I have to use button battery to do the same thing?

    Kind regards

    Kanu

    The answer is, you can't. However, the custom hyperlink control is open-source. You can find the source in toolslib\custctrl\hyperlinkctrl.c. It's a pretty simple code module, so it is not all that difficult to modify this code so that it could work in a table cell, rather than a message text control.

    Luis

Maybe you are looking for

  • Tecra S11 - how Volume up/down with FN keys?

    How rapid decrease/increase in volume with the Fn + down arrow on Tecra S11 Windows 7 Pro? On my previous Toshiba, I had a physical Volume wheel is missing on Tecra S11 for me and Fn + keys worked on Win XP up and down.

  • Wireless USB AND printing 5510e printing

    HP Photosmart 5510e printer. I have installed this printer yet because I think that it may not do what I need to do and I may have to return it. I need this printer print from 2 computers. One is a laptop using Windows 7 which is Wireless and the oth

  • My system will support a SATA III disc?

    Hello, I got a desktop Pavilion HPE, delivered with a SATA 1 TB Seagate drive. I want to install another internal drive, a SATA III 3 tb, but do not know if the motherboard will support it. No other information HP Support Assistant says what types of

  • How can activate the TPM on Aspire S7-391-9886?

    Hello How can I activate the TPM on Aspire S7-391-9886? I went into the BIOS and the option to activate it is always grayed out. I read, it was necessary to set an admin password before the option is available, but not luck. Any clue? Thanks in advan

  • Cannot complete the Windows XP installation.

    After a problem started that I could not fix, I formatted the drive C. Unfortunately, I then started to install windows xp on a disk that I don't have the correct product code. Therefore, I can't past the Setup screen to halfway. Now I have the corre