Selecting text under inline graphic

I need to edit text under an inline graphic. I am not able to select / edit the text.
I've tried to "send to back" (the graphic), but it still says above the text.
I'm doing this in order to get round corners around a table.
If you know how to drill down and select the text, I would be much obliged.
I'm using CS4 ME version.
Thanks for any and all assistance.

There is no layering with an in-line graphic (what InDesign now calls Anchored Object). The object is inserted in the text flow, and since text flows as it is entered, an in-line object will be cover text that is before it in the flow (ie. before the insertion point) and  text after the insertion point will be superimposed on top of it. That doesn't mean that you can directly select that text that appears to be "on top" of the object though. To select that text you will need to position your cursor in text that is not covered by the graphic and use the arrow keys to navigate to the point in the text that you want to edit. (alternately you could just use find/change).
You should still post a screen shot of what you're doing because there may be more to it than this. For instance, if your in-line graphic is a table that is already in a text frame as opposed to simply inserted into the text, you could be unnecessarily complicating things.

Similar Messages

  • Colour below paragraph text in inline graphic way

    Hellow,
    I am doing children story book in indesign cs5. Every story has  title, picture, story, questions and some other fun matter.
    Story flows in two and two and half pages. Below STORY MATTER ONLY we want to put colour which flows one frame to another or one page to another.
    I am doing full INLINE graphic i.e. every thing in one frame  flowing automatically if I reduce or add matter in between.
    Can it possible colour patch below story matter  adjusted atuomaticelly if matter reduced or added and flow from one frame to another.
    Can we define in paragraph style colour below paragraph.

    sadhale wrote:
    Dear Peter Spier
    Yes, I tried paragraph rule also. But It dosent work because if paragraph ends with one or two words, colour patch dosent stretch to right edge.
    Then colour dosent go little beyond matter.
    I can use Anchor object, but I need to adjust anchorde patch as per matter.
    You will get better idea from the image below
    Have you considered applying the background color as a filled rectangle on the master page, and creating the white separators around graphics, and activities items as anchored objects with white fill and/or borders?
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • TCS2 Inline graphics hidden by conditional text cause unwanted carriage returns

    I have some FrameMaker documents where there are some small icons in the text.  Their anchored frames are set to be "at insertion point" in FrameMaker. They work fine normally, but when the icons are hidden by conditional text, they cause unwanted carriage returns in the RoboHelp output. The text is split into different paragraphs in the middle of the sentence.
    For example, this is the FrameMaker input:
    And this is the RoboHelp (WebHelp) output:
    I notice that if I manually edit a topic in the RoboHelp editor, I can manually apply a conditional tag to an inline graphic without causing a line break.
    So, I'm wondering if there's a way to avoid this when using linked FrameMaker documents.
    Thanks,
       Philip.

    Your logs are generated automatically by your system as it runs - there is nothing further that you need to do. They are ordinary text files, so you can display them on a terminal using any of the usual tools - cat, less, grep, etc.

  • Post inline graphics into the text. How?

    Hello my friends!
    1. I want to know how can I post graphics into text like in this manual http://www.adobe.com/designcenter/indesign/articles/indcs2at_anchoredob.html
    What commands I should to use? Could you give me an example of code?
    2. Also, how can I make the text wrapped around the posted graphics?
    I use CS3.
    Thank you!

    From the Javascript CS3 examples "Text" -> "AnchoredFrame.jsx":
    //AnchoredFrame.jsx
    //An InDesign CS3 JavaScript
    //Shows how to create an anchored frame.
    main();
    function main(){
        mySetup();
        mySnippet();
    //Setup Help Text
    //Setup help text goes here.
    //end setup help text
    function mySetup(){
        var myDocument = app.documents.add();
        myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
        myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
        var myPage = myDocument.pages.item(0);
        var myTextFrame = myPage.textFrames.add({geometricBounds:myGetBounds(myDocument, myPage), contents:TextFrameContents.placeholderText});
        myTextFrame.texts.item(0).leftIndent = 72;
        function myGetBounds(myDocument, myPage){
        var myPageWidth = myDocument.documentPreferences.pageWidth;
        var myPageHeight = myDocument.documentPreferences.pageHeight
        if(myPage.side == PageSideOptions.leftHand){
            var myX2 = myPage.marginPreferences.left;
            var myX1 = myPage.marginPreferences.right;
        else{
            var myX1 = myPage.marginPreferences.left;
            var myX2 = myPage.marginPreferences.right;
        var myY1 = myPage.marginPreferences.top;
        var myX2 = myPageWidth - myX2;
        var myY2 = myPageHeight - myPage.marginPreferences.bottom;
        return [myY1, myX1, myY2, myX2];
    } //end setup
    //Snippet Help Text
    //Snippet help text goes here.
    //end snippet help text
    function mySnippet(){
        var myDocument = app.documents.item(0);
        var myPage = myDocument.pages.item(0);
        var myTextFrame = myPage.textFrames.item(0);
        var myInlineFrame = myTextFrame.paragraphs.item(0).insertionPoints.item(0).textFrames.add();
        //Recompose the text to make sure that getting the
        //geometric bounds of the inline graphic will work.
        myTextFrame.texts.item(0).recompose;
        //Get the geometric bounds of the inline frame.
        var myBounds = myInlineFrame.geometricBounds;
        //Set the width and height of the inline frame. In this example, we'll
        //make the frame 24 points tall by 72 points wide.
        myInlineFrame.geometricBounds = [myBounds[0], myBounds[1], myBounds[0]+24, myBounds[1]+72];
        myInlineFrame.contents = "This is an inline frame.";
        var myAnchoredFrame = myTextFrame.paragraphs.item(1).insertionPoints.item(0).textFrames.add();
        //Recompose the text to make sure that getting the
        //geometric bounds of the inline graphic will work.
        myTextFrame.texts.item(0).recompose;
        //Get the geometric bounds of the inline frame.
        var myBounds = myAnchoredFrame.geometricBounds;
        //Set the width and height of the inline frame. In this example, we'll
        //make the frame 24 points tall by 72 points wide.
        myAnchoredFrame.geometricBounds = [myBounds[0], myBounds[1], myBounds[0]+24, myBounds[1]+72];
        myAnchoredFrame.contents = "This is an anchored frame.";
        with(myAnchoredFrame.anchoredObjectSettings){
            anchoredPosition = AnchorPosition.anchored;
            anchorPoint = AnchorPoint.topLeftAnchor;
            horizontalReferencePoint = AnchoredRelativeTo.anchorLocation;
            horizontalAlignment = HorizontalAlignment.leftAlign;
            anchorXoffset = 72;
            verticalReferencePoint = VerticallyRelativeTo.lineBaseline;
            anchorYoffset = 24;
            anchorSpaceAbove = 24;
    } //end snippet

  • Trouble selecting text with touch up tool

    I have carefully followed the instructions step by step but I cannot get the touch up text tool to turn into an I-beam in order to select text for touching up the color.  I have tried with several documents with no luck, trashed the preferences to revert to the default status, closed and reopened acrobat. I've used this facility several times in the past to access the properties of the text in order to change its color, but I can't seem to do it now.
    I am using Acrobat 9 for mac on an imac (Intel core i3), currently Under OS10.7.3, but I had the same problem under OS 10.6.8.

    Are you looking at scanned text or real text. The inability to get an ibeam (it only comes on when you are over text) is an indication you are likely looking at a graphic. Try it on a file you know for sure is text and see if it works there.

  • Text converted to graphics when using shapes from iWork

    I'm in the process of constructing a web site and want to have a site directory along the right side of each page. I started off using square text boxes and making room for the directory by using iWeb's text wrap, adding an inline transparent square to a conveniently located paragraph and resizing it as necessary. However, I found that sometimes depending on which object was selected when I uploaded the site the square seemed to cover up my link box - possibly even when it was sent to the back.
    Then I learned that I could use shapes from Pages and edit them in iWeb, so I created a polygon with an opening for the site directory, and used it for my text box on each page. That worked great in that the directory was no longer behind the text box. However when I uploaded the web site, I eventually realized that my text boxes were all converted to graphics.
    As a test I created a page identical to an existing page with a square used as a text box, and it reverts to being text.
    Here's my web site if anyone wants to check it out - look at the main page and also at the Test Page reachable from the directory on the right.
    http://web.mac.com/peterynh
    A couple questions:
    1. Does this mean that shapes created using the drawing tool in Pages that are made editable and then modified in iWeb will always produce graphics when used as text boxes? Is there any way around this?
    2. Is the same a problem if shapes are created in other programs (e.g. Illustrator)?
    3. Is there any other way I haven't thought of to create the same basic design which would preserve the text boxes as text?
    Thanks for any help!,
    Peter
    PowerMac Dual G5, 2.3 GHz   Mac OS X (10.4.5)  

    James - Thanks for the suggestions and ideas.
    You know, I think it's possible to put a textbox
    inside another text box......and in that fashion
    still be able to wrap text in the main text box
    around the interior text box. However, I am not sure
    whether that will necessarily make all the text
    converted into an image.
    I tried that with interesting results. I couldn't resize the text box except through the Inspector for some reason. Once I pasted in the text, the box moved down below the site directory box to where there was room for a full-width text box; so it didn't accomplish the purpose.
    About using iWeb's built-in text-wrap through adding an inline graphic:
    This would work too...just make sure to select your
    text box and click on the "Backward" button in order
    to make sure that your main text box with the
    transparent "placeholder" image is behind your
    directory box that you want displayed. The same
    thing can be achieved by selecting your directory box
    and clicking "forward" so that it becomes the
    frontmost element.
    That makes sense. I tried that originally; maybe I wasn't careful about sending things to the front/back. The biggest problem is that if paragraphs don't line up with the site directory box, or if I edit text on the page, the text doesn't wrap very neatly around where I want it to. Otherwise this would be a good solution. I may end up doing this unless a better idea materializes, if such is even possible ...
    Thanks for the suggestions. I'll be interested to see if any better ideas appear; if none do in the next couple days I may just declare the problem solved as well as possible until iWeb 2.0 appears.
    Peter
    PowerMac Dual G5, 2.3 GHz   Mac OS X (10.4.5)  

  • I need to edit an inline graphic

    I have some small graphic ICONs that are placed next to (Left of) some paragraphs of text.  Since these ICONs need to move up and down with the text I was moving them manually whenever I edited a paragraph.  Then someone showed me how I could select them.  Cut them to the pasteboard.  Then paste them as the first character in the paragraph and edit the attributes such that they appeared to the left of the paragraph but then whenever I edited the text, these icons would move up and down with it.
    O.K.  So now I have a paragraph that has two ICONS next to it.  The customer has requested that I swap their positions.  I only have ONE inline graphic ICON showing in the story editor because when I placed these I cut them both to the pasteboard and then pasted them as an inline graphic into the story.
    My question is:  Do I have to delete the inline graphic.  Go and get both ICONs again from my library of artwork and put them on the art in the transposed order and then cut them again to the pasteboard and re-paste into my story?  If so then I am not a happy camper.  Is there a way to UNDO the conversion to an inline graphic and somehow get them back to the pasteboard where I can paste them as normal ICONs on the artwork.  Then make my changes and then re-cut them to the pasteboard and paste back into my text story?
    Anybody have any light they can shed on this?
    I'll probably do the first scenario for the jobs at hand but it seems a long way around.  Interested if there is a better way.  Thanks!
    Randy

    It sounds like you had the icons grouped when you pasted them into the story so they are a single anchored object. Use the selection tool (black arrow) and click on the icons. Cut. Paste. Ungroup. Now copy and paste each icon as a separate object into your story.

  • Place inline graphic?

    Hi all,
    I have ExtendScript code that places a graphic inline in a text frame. It does this by placing the graphic on the page, selecting it, cutting it, then selecting some placeholder text in the text frame, and pasting. This replaces the placeholder text with the graphic.
    This might not be the most elegant way to do this, but it's been working fine.
    Problem: now I need to move this code to InDesign Server. InDesign Server lacks select, copy, and paste methods (since there's no UI).
    I've been trying to find an alternate way of doing this without success. I don't have the option to import the text stream as XML.
    Any suggestions?
    Thanks,
    Chuck

    I forgot to mention: in many cases, the "graphic" that must be placed is a snippet. NOW is it complicated enough for you?
    -Chuck

  • How do I print just a selected text instead of entire page?

    Hello. I have a question about printing selected text. In windows there is an option to highlight a specific text from a let's say a browser window or document. Then you can right click and hit print. When the print window comes up you can select "print selected". Is there a way to do that on Mac OS X?
    Black Macbook Core Duo 2 GHz 2GB ram Mac OS X (10.4.8)

    Try Print Selection
    <http://discussions.apple.com/post!reply.jspa?messageI
    D=4747304>
    Thanks for the reply but it took me a bit of time to figure out how to find that option!
    For those who didn't know either, it's under "Firefox" in the third section of the print window.

  • Select text based on format (free form style text)

    As suggested by Apple, I'm trying to create my first ePub using Pages as opposed to inDesign.
    I only have a PDF as a source file and don't want to re-type all the text.
    When I copy the text from the PDF and paste to Pages, the text comes in with the 'free form' style applied no matter what options I select during copy and paste.
    In order to produce an ePub, I need to set styles for the text. This is quite tedious.
    Is there any way to select text based on the way it is formatted when styles are not applied to the text?

    Here is a script which may be useful if your problem surface again.
    --{code}
    --[SCRIPT words_attributes_to_Style]
    Enregistrer le script en tant que Script : words_attributes_to_Style.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Pages:
    Il vous faudra peut-être créer le dossier Pages et peut-être même le dossier Applications.
    Ouvrir un document Pages contenant des mots soulignés
    Aller au menu Scripts , choisir Pages puis choisir “words_attributes_to_Style”
    Le script appliquera :
    le style "Souligné" aux mots soulignés
    le style "Accentuation" aux mots en gras
    le style "Italic" (si vous l'avez créé) aux mots en italique.
    --=====
    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: words_attributes_to_Style.scpt
    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.
    Select a Pages document embedding underlined words
    Go to the Scripts Menu, choose Pages, then choose “words_attributes_to_Style”
    The script will apply :
    the named style "Underlined" to the underlined words
    the named style "Emphasis" to bolded words
    the named style "Italic" (assuming that you defined it) to italicized words.
    --=====
    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/11/13
    2011/11/13 enhanced by Nigel Garvey in : http://macscripter.net/viewtopic.php?pid=145883#p145883
    --=====
    on run
              set Underlined_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Underline")
              set Emphasis_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Emphasis")
              tell application "Pages" to tell document 1
                        set character style of words whose underline type is single underline or underline type is double underline to character style Underlined_loc
                        set character style of words whose bold is true to character style Emphasis_loc
    Assuming that you defined your own Italic style named "Italic", you may use : *)
                        try
                                  set character style of words whose italic is true to character style "Italic"
                        end try
              end tell
    end run
    --=====
    Example
    set Heading8_loc to my getLocalizedStyleName("Pages", "STYLE_Heading 8")
    Requires :
    getLocalizedName()
    on getLocalizedStyleName(theApp, tName, x)
      activate application theApp
              tell application "System Events"
                        (application file of application process theApp as text) & "Contents:Resources:Templates:" & tName & ":Contents:Resources:"
                        return my getLocalizedName(theApp, x, result)
              end tell
    end getLocalizedStyleName
    --=====
    on getLocalizedName(a, x, f)
              tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    List of default styles embedded in the Blank template :
    "STYLE_Body" = "Corps";
    "STYLE_Body Bullet" = "Puce du corps de texte";
    "STYLE_Bullet" = "Puce";
    "STYLE_Caption" = "Légende";
    "STYLE_Emphasis" = "Accentuation";
    "STYLE_Footnote Text" = "Texte de note de bas de page";
    "STYLE_Free Form" = "Format libre";
    "STYLE_Harvard" = "Harvard";
    "STYLE_Header & Footer" = "En-tête et bas de page";
    "STYLE_Heading 1" = "Sous-section 1";
    "STYLE_Heading 2" = "Sous-section 2";
    "STYLE_Heading 3" = "Sous-section 3";
    "STYLE_Heading 4" = "Sous-section 4";
    "STYLE_Heading 5" = "Sous-section 5";
    "STYLE_Heading 6" = "Sous-section 6";
    "STYLE_Heading 7" = "Sous-section 7";
    "STYLE_Heading 8" = "Sous-section 8";
    "STYLE_Heading 9" = "Sous-section 9";
    "STYLE_Legal" = "Légal";
    "STYLE_None" = "Aucun";
    "STYLE_Normal" = "Normal";
    "STYLE_Normal 22" = "Normal 22";
    "STYLE_Normal 4" = "Normal 4";
    "STYLE_Normal 8" = "Normal 8";
    "STYLE_Numbered List" = "Liste numérotée";
    "STYLE_Series_0" = "Series_0";
    "STYLE_Series_1" = "Series_1";
    "STYLE_Series_2" = "Series_2";
    "STYLE_Series_3" = "Series_3";
    "STYLE_Series_4" = "Series_4";
    "STYLE_Series_5" = "Series_5";
    "STYLE_Strikethrough" = "Barré";
    "STYLE_TOC" = "Table des matières";
    "STYLE_TOC Heading 1" = "Sous-section 1 de table des matières";
    "STYLE_TOC Heading 2" = "Sous-section 2 de table des matières";
    "STYLE_TOC Heading 3" = "Sous-section 3 de table des matières";
    "STYLE_TOC Heading 4" = "Sous-section 4 de table des matières";
    "STYLE_Title" = "Titre";
    "STYLE_Underline" = "Souligné";
    "STYLE_[Null]" = "[Nul]";
    You may use more sophisticated custom styles embedding several properties:
    baseline shift (real) : Raise or lower the target text.
    bold (boolean) : Whether the font style is bold.
    capitalization type (all caps/normal capitalization/small caps) : Whether a capitalization style is applied.
    character background color (color) : The color of the character's background.
    color (color) : The color of the font.
    font name (text) : The name of the font.
    font size (real) : The size of the font.
    italic (boolean) : Whether the font style is italic.
    ligatures (all ligatures/default ligatures/none) : Remove ligatures from the target text if the document is set to use ligatures.
    name (text) : The name of the style.
    outline (boolean) : Whether the font style is outline.
    shadow (boolean) : Whether the text box content casts a shadow or not.
    shadow angle (real) : The directional angle, in degrees, that the shadow is cast.
    shadow blur (integer) : The relative amount of blur of images seen through the shadow.
    shadow color (color) : The color of the shadow.
    shadow offset (real) : The offset from the text box content that the shadow extends to.
    shadow opacity (real) : The amount of opacity for the shadow, in percent.
    strikethrough color (color) : The color of the strikethrough line(s).
    strikethrough type (double strikethrough/none/single strikethrough) : Whether one or more lines are drawn through the characters.
    subscript (boolean) : Decrease the font size and lower the baseline of the text.
    superscript (boolean) : Decrease the font size and raise the baseline of the text.
    tracking (real) : The space between text characters, in percent.
    underline color (color) : The color of the underline(s).
    underline type (double underline/none/single underline) : Whether the font style is underline.
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) lundi 2 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • How do I select text in a PDF document?

    I have a text-based PDF document, but I can only select text by restarting the reader. Once I select "Take a Snapshot" I can't select text anymore. How do I switch back to select text? I tried right-clicking on the document but I don't see any "selection" tool. I am using 11.0.3 under Win 7.

    Just tested this (Reader 11.0.3 on Windows XP), and your scenario is exactly so.
    I have been able to go back to get the Select Tool by clicking on the Highlight tool in the Toolbar, then right-clicking on the document.
    But it's definitely a bug in my view.

  • Why does my 2012 Retina Macbook Pro's trackpad become extremely unresponsive after I plug in a USB mouse? The only trackpad command that works is the left click, I can't select text or press down and hold the trackpad to do anything else until I restart.

    My trackpad becomes REALLY unresponsive after I plug in a USB mouse. It seems like the cursor is broken and stuck on a permanent left click or something. I'm unable to select text or do any other sort of action that requires you to hold down the trackpad and drag. Mouse icons don't update as I scroll over different text and links. The trackpad is usually stuck in this unresponsive state until I restart my macbook which is extremely inconvenient if I have to do this after every time I use a USB mouse. Are there any fixes to this?

    Melophage,
    I don't leave it outside. Usually when I leave it overnight, I do so under the same conditions as when I leave it plugged in, and this morning I only left it for about an hour in my house and it did the same thing.
    LowLuster,
    I actually have a new hard drive I bought a while back and have been meaning to switch it out with the one that's in there now. I'll follow your instruction, then make the switch I had planned on and report back.

  • Boxed text as inline extending past margins?

    Hi,
    I actually have a few questions. I have a boxed caption with cornered edges. Once I set the box to cornered edges, my ability to change the inset spacing individually goes away. I want the left, right and top margins to be .15in, but the bottom to be smaller, about .12 in. Anyway to geet around this?
    And, with this same type box, the box extends beyond the margins of the text that I want to place it in. Is there anyway to do inline graphics that extend beyond the left margin.
    And, is there a way to set up a outlined box with rounded edges that increases/decreases in size as I flow in text. I'm thinking of maybe making it a table, but maybe there's a better way?
    Thanks in advance for any resources you can point me to.

    You can't adjust the frame insets, but you can increase the paragraph indents to increase the left and right indents overall while leaving the top and bottom alone.
    The only thing that can go inline in text and extend beyond the margins is a table. You could add a one-cell table in a paragraph of its own (center aligned if you want it to extend beyond both margins) and paste your frame into that. Out of the box, there is no way to auto-fit a frame to text content as you type or place the text, but I believe Typefi has a plugin...

  • How can I get the tab key to select text fields only?

    Since upgrading to Firefox 4 on Windows, the tab key functions differently. How do I change it so that it only selects text input fields?

    The answer is:  The bug is in the UI.  Speech recognition was enabled, by default it uses the bare escape key as a "mic on" indicator, and it does not leave any trace in the keybord configuration.  So that is the bug.  It needs to leave a trace there, a la: "X Listen-for-voice-command  ^" under Mission Control.

  • Gallery with HTML text under image

    I'm working on a gallery of images with thumbnails on the left and larger photos on the right. My problem is the larger photos on the right need some text under them. I've been adding the text to the photos in photoshop and doing this as a standard swap image/swap image restore. What I was wondering, is there a way to add this text as HTML. When I do the swap image I would need to swap out the HTML text also. I've done this as a layered div in the past, but it gets cumbersome when you have 30 thumbnails. Hopefully someone has a good solution for this. I'm thinking about giving up on Dreamweaver and doing this sort of thing in Flash.
    ----Here's the website I'm working on -- http://www.elyssabassdesigns.com/fashion_collection/fashion_cuffs.html

    There are literally hundreds of CSS, DHTML or jQuery solutions you could use.
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    http://www.dynamicdrive.com/dynamicindex14/index.html
    www.JAlbum.net
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

Maybe you are looking for

  • ISE Guest Portal redirection not working

    I have built a lab at home. I have a Win2008 Server for AD/DNS, ISE 1.2 (VM trial), a 3560-cg switch, 2500 WLC and 2602i AP. I have configured everything as per the documentations online. My issue is that when I connect to the open SSID, it gets conn

  • Adf dvt and cubic datasources

    Hi, How can I set up a "cubic" datasource to use an ADF DVT component? Thanks

  • Help with album art

    What happened? I spent 2 hours of hard work putting album art on itunes and my nano. So when I disconnect my ipod, it's supposed to show up, right? SO WHY ISN'T IT? I tried putting the album art in the photos section, I kept the pics on my computer,

  • Prevent MBP13 from sleeping when closed power & ext display?

    hi all, i use my macbook with an external monitor and keyboard. i normally have my macbook charging and the lid closed. i unplugged the mag charger and my external monitor went black.  however when my lid is open and not charging everything works fin

  • SMB automatically uses AD username and passwords

    Hello, I'm trying to connect to a server using smb. The username/password prompt window does not open and just automatically connects using the AD username and password that is connected. Any ideas?