Extracting Image Links From HTML

Hi, at the moment am trying to extract image locations from the html files i.e. the "src" part of <img> tag. Have tried using HTMLParserCallback as I know this allow you to extract links from a page. However when I open a document I know to have <img> tags in it, handleStartTag() is not called, I only get all the other tags. Any idea how to solve this problem? Thanks very much,
Ross

Hi,
Here's a portion of a class I wrote a while back....
Note the useMap variable I introduced in the constructor.
Some HTML files had the images in a "map" attribute, others in an "imgmap" attribute.
regards,
Owen
private class CallbackHandler extends HTMLEditorKit.ParserCallback
    private HTML.Tag tag;       // The most recently parsed tag
    private HTML.Tag lastTag;   // The last tag encountered
    private int nested = 0;
    private boolean useMap;
    public CallbackHandler(boolean useMap)
        super();
        this.useMap = useMap;
    public void handleText ( char[] data, int pos )
    public void handleStartTag ( HTML.Tag t, MutableAttributeSet attSet, int pos )
    public void handleSimpleTag ( HTML.Tag t, MutableAttributeSet attSet, int pos )
        if ( t.toString().equalsIgnoreCase ( "input" ) )
            boolean imagemap = false;
            String name = null;
            String src  = null;
            if ( attSet instanceof SimpleAttributeSet )
                SimpleAttributeSet sattSet = (SimpleAttributeSet)attSet;
                Enumeration atts = sattSet.getAttributeNames();
                Object att;
                while ( atts.hasMoreElements() )
                    att = atts.nextElement();
                    if ( att.toString().equalsIgnoreCase ( "name" ) )
                        name = (String)sattSet.getAttribute ( att );
                        // got the name of the attribute
                        // Note : useMap is a boolean flag for you to set.
                        //        Some HTML pages used "map" attributes, others "imgmap" attributes
                        if ( useMap )
                            if ( name.equalsIgnoreCase ( "map" ) )
                                imagemap = true;
                        else
                            if ( name.equalsIgnoreCase ( "imgmap" ) )
                                imagemap = true;
                    if ( att.toString().equalsIgnoreCase ( "src" ) )
                        src = (String)sattSet.getAttribute ( att );
                if ( imagemap )
                    try
                        imagemapURL = new URL ( src );
                    catch ( MalformedURLException malEx )
                        System.out.println ("Invalid Image Map URL : " + src );
    public void handleEndTag ( HTML.Tag t, int pos )
}

Similar Messages

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • Extracting Image Data from DB

    Hello,
    we are running an archive for articles from our magazines, inside the article there are several images. At the moment we store the images in the filesystem and deliver them as HTML Link with the OAS to the customer.
    The problem is the image size. Some images are very big. So I would like to load them into the Database use the ordimage.process Package to scale them down.
    Now the problem.
    How can I retrieve the converted image from the DB?
    Directly with the OAS or extract them to the Filesystem and use a link in HTML code.
    Thanks
    Det

    Hi,
    One approach would be to use the interMedia Web Agent. It is designed to retrieve (and upload) multimedia data, including images, from an Oracle database and supports a number of web servers, including OAS. You can download the interMedia Web Agent from OTN. The Web Agent uses PL/SQL procedures to locate images, etc, from the database. You can write these procedures yourself, or use the Code Wizard in the interMedia Clipboard Windows-NT application to create the procedures for you.
    Hope this helps,
    Simon
    null

  • Firefox not displaying some images linked from Photobucket

    Firefox 19.0 there is a website where they have a gallery of pictures all the images from the gallery are hosted on Photobucket, they use to show up as normal but now for some reason they don't, I tried clearing the cookies and the cache, I made sure the download images automatically is check and every other bit of advise I could find on the web to no avail.
    One thing I notice though is if you right click the missing image to get to view image information you will see Location: the address of the image is correct (copy and paste in the address bar bring up the image)
    Type: text/html (This is odd it should be img/jpeg)
    Size: 0 kb (of course the image was not downloaded)
    Dimension: 0 x 0 (again no image downloaded)
    So if anybody has an idea how to fix this it would be greatly appreciated.
    Thanks

    The images on that page aren't links to real images, but at least currently link to an html page (page info > media shows type text/html).<br />
    You can see that if you right-click an image and open the image in a new tab by middle clicking the View Image entry in the right-click context menu.<br />
    Firefox seems to have a problem to display the image in this case.

  • Extract image data from a bitmap image in C# HELP Please!!

    Hi there, 
    I am trying to extract the image data from a bitmap file - i.e. delete the image's BMP header.
    But I keep getting an error (System.IndexOutOfRangeException) in line 85 (if I am not mistaken) inFilename = args[0];
    Where the Console Application just crashes. 
    https://msdn.microsoft.com/query/dev12.query?appId=Dev12IDEF1&l=EN-US&k=k(EHIndexOutOfRange);k(TargetFrameworkMoniker-.NETFramework,Version%3Dv4.5);k(DevLang-csharp)&rd=true
    Any idea what is going wrong? 
    I thank you for your time and help in advance,
    IP
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ConsoleApplication1
    class Program
    private static string inFilename, outFilename;
    private static string errorMessage;
    private static void ShowUsage()
    Console.WriteLine("BMP2CSV by David Bolton. http://cplus.about.com (C) 2013");
    Console.WriteLine(@"Usage: bmp2csv input[.bmp] [output.csv]");
    Console.WriteLine(@"[means optional]");
    Console.WriteLine("Input extension must be .bmp, ouutput (if supplied) .csv");
    private static bool outputCsv(byte[] data, int width, int height)
    try
    using (var sw = new StreamWriter(outFilename))
    var ptr = 0;
    for (var y = 0; y < height; y++)
    var line = new StringBuilder();
    for (var x = 0; x < width; x++)
    line.Append(data[ptr++].ToString()).Append(',');
    sw.WriteLine(line);
    return true;
    catch
    Console.WriteLine("Error writing to " + outFilename);
    return false;
    private static bool ProcessFile()
    try
    using (var filein = new BinaryReader(File.OpenRead(inFilename)))
    var Signature1 = filein.ReadByte(); // now at 0x1
    var Signature2 = filein.ReadByte(); // now at 0x2
    if (Signature1 != 66 || Signature2 != 77) // Must be BM
    errorMessage = "Input File is not a BMP file";
    return false;
    filein.ReadDouble(); // skip next 8 bytes now at position 0xa
    var Offset = filein.ReadInt32(); // offset in file now at 0ea
    filein.ReadInt32(); // now at 0x12a
    var fileWidth = filein.ReadInt32(); // now at 0x16
    var fileHeight = filein.ReadInt32(); // now at 0x1a
    filein.ReadBytes(Offset - 0x1a); // should now be at offset bytes into file
    var data = filein.ReadBytes((int)filein.BaseStream.Length - Offset);
    // read remainder of file into data- array of bytes
    //Console.WriteLine("Data Length = {0}",data.Length);
    return outputCsv(data, fileWidth, fileHeight);
    catch
    errorMessage = "Error reading " + inFilename;
    return false;
    private static void Main(string[] args)
    errorMessage = "Ok";
    if (!ExtractParameters(args))
    return;
    if (!File.Exists(inFilename))
    Console.WriteLine("Cannot find file " + inFilename);
    return;
    if (ProcessFile())
    Console.WriteLine("file successfully processed - output in " + outFilename);
    else
    Console.WriteLine("File processing failed: " + errorMessage);
    private static bool ExtractParameters(string[] args)
    inFilename = args[0];
    var extension = Path.GetExtension(inFilename);
    if (extension.Length == 0)
    inFilename += ".bmp";
    else
    if (extension.ToUpper() != ".BMP")
    ShowUsage();
    return false;
    switch (args.Count())
    case 1: // No output filename so swap extensions
    outFilename = Path.GetFileNameWithoutExtension(inFilename) + ".csv";
    break;
    case 2:
    { // check outfiulename has no extension or a .csv only
    outFilename = args[1];
    extension = Path.GetExtension(outFilename);
    if (extension.Length == 0)
    outFilename += ".csv";
    else if (extension.ToUpper() != ".CSV")
    ShowUsage();
    return false;
    break;
    default: // no parameters? You get the usage message
    ShowUsage();
    return false;
    return true;

    You probably did not specify the command-line arguments, i.e. the name of input and output files. In order to do this in Visual Studio for debugging, see
    https://msdn.microsoft.com/en-us/library/vstudio/1ktzfy9w(v=vs.100).aspx. So type something like “C:\My Folder\MyFile.bmp” “C:\My Folder\MyOutput.csv”, including quotation marks, according to your real disks and paths.
    The program should be fixed to detect such errors and call
    ShowUsage. Maybe ask the author.

  • Converting image links from Word to PDF

    If I insert a picture into a Word file (Insert/Picture From File), select the picture and Insert/Hyperlink and then Convert to Adobe PDF, the hyperlink is still active in the pdf file as expected (Add Links is checked in the conversion settings).
    However, if I do the same but apply any layout options to the picture before attaching the hyperlink (e.g. Format Picture/Layout/Square text wrapping), Convert to PDF does not convert the link into the pdf file and the image appears as if no link had ever been set.
    Does anybody know of a solution to this problem?  Or is Acrobat 9 any better?  I am curently using Word 2000 and Acrobat 6 running on XP

    Thanks for the reply.
    I have already inserted the links within the pdf, so I do have a working document.  It is only a draft, though, and any subsequent editing requires going back to the original Word document, editing and converting again to pdf and then re-establishing the links - with over 30 images (linked to pre-exixting pdf documents) this last step is both tedious and error-prone!  Thanks for the warning re Acrobat 9 and Word 2000.  I had been thinking of upgrading ...
    Mike

  • How link from html page to a specific frame in flash cs5 as3

    Hi!
    I'm kinda new around here. I am interested in knowing how to link from a specific html page to a specific frame in flash cs5 as3.
    I have a website that I originally began to design in flash but later started developing new pages for it in html. The flash part of it has several pages on different frames and I have created links from the flash part to the other html pages, but, I can only link the html pages back to the main flash home page, and not the other pages in the flash part of the website.
    I have read that in cs3 it was possible using the flashvars skip variable, but I don't know how to do it. I have not yet seen any working examples and I could not find any instructions / tutorials online for cs5.
    Can someone help here?

    add a query string, to the swf's embedding html, with variable/value indicating the frame you want to display in your swf.  add a javascript function to return the query string (or entire url), call the javascript function from flash using the externalinterface class.  and finally add code to your swf to parse the returned url or query string, parse it and then direct your timeline to the appropriate frame.

  • Extract email address from html

    Hi,
    I am trying to extract "email address"  from an html output query. How would I do that?
    I am on CF9.
    example:
    Query col1:
    <html><head></head><body>today they emailed about it from (mailto:[email protected]) ...hello there and here</body></html>

    Argh!  No!
    God I hate it when people knock together a regex like this and go "Look!  Email address validation!"
    Before one starts down this road, one should read the RFC (http://tools.ietf.org/html/rfc5322, summarised here: http://en.wikipedia.org/wiki/Email_address).
    Your own regex fails my spamtrap email address (for example: [email protected]), because you've forgotten that a + is a legitimate character in the local part of an email address.  Along with a bunch of other completely legit characters.
    Reading on through the RFC you will realise than ANYTHING is valid in the local part of an email address, provided it's quoted (double-quote being another character your regex doesn't accept).
    If someone doesn't want to give you their valid email address, they won't.  I can give you [email protected], and that will pass.  If I do want to give you my address, you should make sure your code will actually accept it!
    I can understand wanting to make sure the punter doesn't key their email address in incorrectly, but your method doesn't help here.  It'd pass [email protected], despite the fact that it should be [email protected]  "Close" is not good enough in these cases.
    The only sensible way of doing this is to ask them to type it in twice.  This will assist people who don't just roll their eyes and copy and paste what they typed in the first box into the second box, wondering why you're wasting their time.  So a typo will be transferred, so it's no help.
    If you really want to get a person's email address, deprive them of something until they respond to an email that you end them.  At the email address they specified. Because they actually don't mind you having their email address.  This only works if you're not simply trying to harvest email addresses for your own benefit, and not the benefit of your subscribers.
    Bottom line: email address is a mug's game, and one not often played by people who know the rules.
    Adam

  • Can I extract images/items from a pdf?

    I lost my hard drive! (D'oh!)
    But I do have some hi-res pdf files made from the original files (InDesign).
    Is it possible to extract discrete components from pdfs? Such as images, text blocks, etc?
    It seems like it should be possible, but I'm wondering if one must be a PostScript coder or somesuch.
    Cheers!
    ~Ben

    Excellent! Thank you both, George and Steve.
    I have CS3, so v8.3.1 or Acrobat. So that process is Advanced > Document Processing > Export all images.
    Oddly, it tells me that it can't extract/export vector images. I suppose that means AS SUCH, since it managed to export JPEG versions of images that I know were .eps format. Strange, but true!
    Thanks again!
    Ben

  • URGENT - Extract Image Files From Long Raw Column

    Hi.
    I have to extract image files (tif and wmf format) from "long raw" column and put them in a directory, using a PL/SQL procedure.
    Can anyone help me.
    Thanks

    Well that is interesting, that ORA returns no records on Metalink. Anyway, that was for my own curiosity.
    As you are on 10g, this is how I would write a long raw to a file if I had no choice:
    1) create a gtt with a column of type blob
    2) insert into the gtt the long raw column using the to_lob conversion function
    3) you now have a lob!
    4) open a binary file for writing using utl_file (binary mode was introduced in 10g)
    4) use dbms_lob to read through the blob and write it in chunks to the file
    You will have to do this row by row. It will be painfully excrutiatingly slow.
    This is basically your only choice unless you have a OCI programmer to hand. In which case I would be getting them to write the C code to read the long raw column and write it to a file. This could then be compiled into a library and called as an external procedure from PL/SQL.
    HTH
    Chris

  • How to - link from HTML Region to Report Column?

    Dear Apex gurus,
    Ok, I'll go straight to my question. I have a file upload page with Report Region (conditional) which comes up after file uploading process. Under Report I have a column to delete uploaded file (column has an image in link, target in application, item name: P2_DELETE_ID and value: #DOC_ID#). Basically the Report picks up just uploaded file ID and allows me to delete the file by having Hiden Page Item (P2_DELETE_ID) and Before Header Process:
    BEGIN
    DELETE FROM EBA_ASSET_ORDER_TEMP_DOCS
    WHERE doc_id = :P2_DELETE_ID;
    END;with condition: Value in Expression 1 is Not Null, and Expression 1 set to:
    P2_DELETE_IDI have and another conditional Region (which is HTML) and it comes up after file uploading process as well. The region Source is:
    &lt;div id="FinalMessage">&lt;/div>
    &lt;br />
    &lt;div >&lt;a href="javascript:confirmFileDelete(htmldb_delete_message,'f?p=&APP_ID.:2:&SESSION.:REMOVE_ID:::P2_DELETE_ID:#DOC_ID#');">&lt;img >src="/i/delete.gif" style="position: relative; top: 1px;"/>Remove Uploaded File&lt;/a>
    &lt;/div>where id="FinalMessage" - is the Sucess/Error message from JS
    and .....href="javascript:confirmFileDelete....... - is my actual question. So, I am trying to hide my Report Region and show only my HTML region where I will be able using this (.....href....) link delete file from my table. I am able to dele file using report colum link but my .....href.... link dosnt want to delete my file, doen't even want to pick up file ID. Is there a way where I can link my .....href.... link to pull from Report Column????
    Thanks

    I am getting crazy now:
    It gives me an error message whan I am trying to add RETURN to my process, here is my process, seems to be fine and I can fined what is going on, may be I am blind:
    DECLARE
    n_size NUMBER;
    v_filename VARCHAR2(500);
    P2_FILE_INPUT VARCHAR2(1000) := v('P2_FILE_INPUT');
    BEGIN
    INSERT INTO EBA_ASSET_ORDER_TEMP_DOCS (DOC_ID, NAME, CONTENTS, mime_type, CREATED_ON, DOC_SIZE, FILENAME)
    SELECT ID, P2_FILE_INPUT, BLOB_CONTENT, mime_type, CREATED_ON, DOC_SIZE, FILENAME
    FROM apex_application_files
    WHERE NAME = P2_FILE_INPUT
    RETURNING DOC_ID INTO :P2_DELETE_ID;
    DELETE apex_application_files
    WHERE NAME = P2_FILE_INPUT;
    END;error:
    1 error has occurred
    ORA-06550: line 13, column 38: PL/SQL: ORA-00933: SQL command not properly ended ORA-06550: line 10, column 4: PL/SQL: SQL Statement ignored
    Edited by: Yasen® on Oct 5, 2009 3:28 PM

  • Help with getting links from HTML page

    Hello all. I found the sun tutorial for getting HREF values from a tags in an HTML document at <http://java.sun.com/developer/TechTips/1999/tt0923.html>. My question now is how would a person add the ability to get the text of the link to this code?
    For example:
    Provided the HTML code:<a href="link.html">example</a>Returned is: href=link.html text=example

    I think the TechTip you've linked too is quite old (1999). I would write a simple SAXParser that uses TagSoup (http://www.ccil.org/~cowan/XML/tagsoup/) as its input source. In your handler, simply set a flag and reset a StringBuffer to collect the contents of any <a>...</a> element. Simplified:
        public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
            if ("a".equals(localName)) {
                currentHref = attributes.getValue("href");
                if (currentHref != null && currentHref.length() > 0) {
                    inLink = true;
                    //reset the string buffer
                    buffer.setLength(0);
        public void characters(char[] ch, int start, int length) throws SAXException {
            if (inLink) buf.append(ch, start, length);
        public void endElement(String uri, String localName, String qName) throws SAXException {
            if ("a".equals(localName) && inLink) {
                inLink = false;
                //add link to the stack
                links.add(new Link(currentHref, buffer.toString()));
        }Completely untested, of course... .Good luck...

  • How do I find and extract images in from email

    Over the years, plenty of people have shared pictures with me via email.  I want to find all those pictures and make copies to put into aperture.  I don't want to grab all the pictures that are .gifs that are icons from applications or signature etc.
    Does anyone know a good way or app to do this?  Finder doesn't seem to allow me to exclude certain files.

    mass wrote:
    Finder doesn't seem to allow me to exclude certain files.
    Let's get a few things out of the way first.
    As to X1, forget it. It's Windows only, and it's not exactly cheap.
    Also, nothing I say applies to Outlook. I assume you're talking Outlook 2011, and I have no clue how it works.
    As to Finder, it doesn't do searches. All searches are done by Spotlight. Finder's Find command, the Spotlight menu, these are just different ways of interacting with Spotlight. And, yes, of course you can exclude certain files. You simply have to learn to use Spotlight. I'm not a fan -- I think Spotlight is not a search engine, but a sorry, pathetic excuse for one -- but still, it can do a few things if you handle it right.
    Now, about Mail. AFAIK, Apple does not document the <~/Library/Mail> structure, so what follows is from my own observations, and hence not authoritative.
    Incoming and outgoing messages from your mail accounts, ie, listed in Mail.app's Sidebar under "Mailboxes", are stored in <~/Library/Mail/[account]>, inside .mbox packages, as individual .emlx files. An .emlx file contains the raw message, plus an XML footer. Any attachments are, of course, inside the raw message in base64 encoding. The .emlx metadata does not include whether or not the message contains an attachment, so you can't use Spotlight to search for messages with attachments, nor can you do that in Mail.
    However, messages which are moved from your mail accounts to local, user-created mailboxes, listed in Mail.app's Sidebar under "On My Mac", are treated slightly differently. They are still stored as .emlx files (including attachments) inside .mbox packages, which, in their turn, are inside a directory named "Mailboxes", but the attachments are also extracted to an Attachments directory inside the respective .mbox package, being stored inside directories labelled with the respective message's number. With this arrangement, finding images with Spotlight becomes trivial.
    For instance, you say you want to find all images which are not GIFs. In Finder, select <~/Library/Mail/Mailboxes>, then ⌘F or ⇧⌘F. In the search field, type
    kind:image NOT .gif
    (the Boolean operator NOT is case sensitive). This should find all images which do not contain the string ".gif" in their file name. Of course, there are strings attached.  If there is an image named, say, "my_photo.gif.jpg", it will be missed. Also, "kind:image" only looks for TIFF, JPEG, PNG, GIF and BMP formats. It will probably not find RAW images, or those in more exotic formats.
    So, your first step in Mail (if you haven't done so already) is to organise your mail, irrespective of attachments, in mailboxes and folders in "On My Mac". (IMHO, this is a good idea in any case.)
    The next step is to use a Spotlight search as described above to find all images. After that, it's up to you. I don't know how Aperture works. Maybe you can just import them, or maybe you need to copy them to some folder. (Remember, you may copy stuff from <~/Library/Mail>, but don't move or delete any of it in Finder -- or the wrath of Mac OS X will strike down upon thee with great vengeance and furious anger!) If you do need to copy them to some other folder, I suspect you'll discover another bridge to cross, but we'll deal with that when -- if -- we get there.

  • Problem with return link from html page back to css page

    Here is the site..almost ready for publication
    http://www.matriley.com/glensite/index.html
    1) Go to properties for sale
    2)Choose a suberb
    3)click on a property with a video
    4) watch the crazy video if you like
    5) Click go back to properties
    ^) Yes the page is there but the property page is now
    inactive...why?
    8)The whole thing works fine on Firefox but we do have this
    Glitch on IE
    PLEAASSE Can someone help
    Regards Matthew [email protected]
    Everything works well but for the problem return link to the
    properties page after you have gone to the video.The property page
    becomes inactive

    Your page is a monster -
    Empty Cache
    10.6K 1 HTML/Text
    1.5K 1 Stylesheet File
    985.4K 25 Images
    997.7K Total size
    27 HTTP requests
    25 images with aggregate weight of ~1MB is much too large,
    you know?
    Anyhow, I cannot reproduce your problem in IE7. Are you
    referring to IE6,
    instead?
    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
    ==================
    "fredbillmatt" <[email protected]> wrote in
    message
    news:fv0m9k$a7a$[email protected]..
    > Here is the site..almost ready for publication
    >
    http://www.matriley.com/glensite/index.html
    >
    > 1) Go to properties for sale
    > 2)Choose a suberb
    > 3)click on a property with a video
    > 4) watch the crazy video if you like
    > 5) Click go back to properties
    > ^) Yes the page is there but the property page is now
    inactive...why?
    > 8)The whole thing works fine on Firefox but we do have
    this Glitch on IE
    > PLEAASSE Can someone help
    > Regards Matthew [email protected]
    > Everything works well but for the problem return link to
    the properties
    > page
    > after you have gone to the video.The property page
    becomes inactive
    >

  • Image Link in HTML Help Doesn't Work (Works Fine in PDF)

    Using TCS V1.3 with the latest patches.
    Single source project with FM to RH -- output to HTML Help.
    I want to create a hyperlink over an image that, when clicked, opens a new topic within the same .chm file.
    Here's what I did:
    1. Imported image by ref. into FM.
    2. Created text box over image.
    3. Created a hypertext link (Specify Named Destination) at the beginning of the destination heading/topic.
    4. Created a hypertext link (Jump to Named Destination) inside the text box.
    5. Tested link in FM - works fine.
    6. Tested link in PDF - works fine.
    7. Tested in .chm - link doesn't exist, just the image.
    Have I missed a step?

    Hello,
    Its because Spry attaches event listeners on the "tabs / buttons / handles" of the accordion, these event listeners are set so they prevent default events.
    There a few ways to solve it.
    - Add a onclick event to your <a> elements that does this:
    onclick="window.location = this.href; return true;"
    - Or you could add another event listener that does it for you, so you don't have to bother adding onclick="" to your elements
    - Or edit the SpryAccordion.js. On line 248 to 276 you will find:
    if (e.preventDefault) e.preventDefault();
    else e.returnValue = false;
    if (e.stopPropagation) e.stopPropagation();
    else e.cancelBubble = true;
    return false;
    Replace it with:
    if (e.stopPropagation) e.stopPropagation();
    else e.cancelBubble = true;
    return true;
    Hopes this helps,

Maybe you are looking for

  • How do I connect my Epson XP-205 printer to my wifi network when using an Apple Time Capsule as a router?

    Printer is updated with latest firmware and I have downloaded the latest installation sw from Epson. Configuration is done from my Mac Book pro running Mountain Lion. The network is set up using WPA2/AES. I have tried configuration using WIFI as well

  • How to find no of bytes per character in a word - Urgent need

    Hi, I have some data in the database with chinese characters. I want to know how many bytes per each character in a word and get the total bytes. Is there any built in Oracle function or anything where i can get no of bytes for each character or a wo

  • Message security in XI

    Hi All, In my scenario Proxy to Http (Sync), the message processing should be more secure. Please let me know the protocals which can be provide security (Https or digital singanture) and also let me know how this can be implemented in HTTP receiver

  • Do I have a battery issue?

    Hello. I got my MacBook on Monday and I'm starting to notice something when I check-up on my battery. It came reading "Capacity: 5200." Today since 11 p.m. it was 5091. Then from 2-3 p.m. it now reads 5001. I dont know what the problem is. I charged

  • No cursor change for link

    I've successfully created a movie that links to another web page, but there's nothing to indicate that the movie is a link - the cursor doesn't change to a hand when over the movie - I'd rather not put text beside the image to indicate the link, sinc