Rotating images and links

I have a website that uses include commands to insert shtml files into different sections of my home page. I would like to have rotating images and text links in one of the include sections. For example, image one shows up with link to URL #1, then image two shows up with link to URL#2. Any thoughts on how to easily accomplish this? Would I use Flash, javascript?
Thanks,
Elliott

This one uses JavaScript.
http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • Question regarding image and links tag

    Hi. Im new to podcasting and have just had my first podcast excepted on itunes.
    Im using garageband.com to store my audio file and copy & pasting the address into itunes to submit it. (http://www.garageband.com/user/wabel/podcast/main.xml)
    What i dont understand is adding an cd cover image and links to a web site.
    I asume its sumular to html, where you type the code with link or image, but where? I cant edit within the above link!
    Please help.

    The "code" for images and links goes into the xml file.
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel>
    <ttl>60</ttl>
    <title></title>
    <link></link>
    <language></language>
    <copyright></copyright>
    <itunes:subtitle></itunes:subtitle>
    <itunes:author></itunes:author>
    <itunes:summary></itunes:summary>
    <itunes:owner>
    <itunes:name>John Doe</itunes:name>
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:image href="http://example.com/podcasts/everything/AllAboutEverything.jpg" />
    <itunes:category text=" ">
    <itunes:category text=" "/>
    </itunes:category>
    <item>
    <title></title>
    <itunes:author></itunes:author>
    <itunes:subtitle></itunes:subtitle>
    <itunes:summary></itunes:summary>
    <enclosure url=" " length=" " type=" " />
    <guid></guid>
    <pubDate></pubDate>
    <itunes:duration></itunes:duration>
    <itunes:keywords></itunes:keywords>
    </item>
    </channel
    </rss>

  • I have a Flash Sample to rotate images and text but I not find a way to display special characters

    Hello everyone.
    I bought a very nice Flash application that rotate images, and text of any color and size. It use an XML input file.
    I've posted here, a complete copy, so any of you can download, view and use it freely.
    I would appreciate if any of you know how to do, so that the text displayed, including the characters I use in my language (Spanish), such as á, é, í, ó, ú, ñ, and other special characters.
    In fact, I could not find a way to do it, because I'm not expert Flash, and less in ActionScript.
    If any of you would help me on that, I thank you implement the appropriate adjustments and compressed into a. zip file, and let me know where to download it, or if you prefer you can send it to my email: [email protected]
    After all compressed in .zip format is a very small file: 430K.
    Click here to download the complete sample.
    Thanks.
    =====================================
    Translated using http://translate.google.es
    =====================================

    Hello Rinus,
    If I understood your last post correctly, then problem 2 is resolved, right?
    Regarding problem 3:
    I'm not asking you to share exact VIs.
    I just want to see a very simple VI that explains the concept of what you're trying to do, what should happen (this can be in words that refer to the front panel elements) and what you've tried.
    The terminology you're using isn't clear to me without an extra explanation.
    This could even be only a Front Panel with a few buttons on where you just describe what should happen with specific controls/indicators.
    Based on the first post it is not clear to me what you mean with:
    - A "button element":
      Are you talking about a control, an indicator, a cluster that contains multiple control?
    - The structure:
      Is this an event structure, case structure, for loop, ...?
    Is it seems like you want to programmatically control Front Panel objects, which on itself is no problem at all independent of how many objects you want to control.
    Please share with me simple example of what goes wrong and explain which things should happen on that specific Front Panel.
    This will allow me to help you and also allow me to guide you along the right path.
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

  • HTML content with images and links blocked

    Hello,
    I very much need some help here because my company needs to send out newsletters to our clients in HTML format soon and so far the email with HTML content is being blocked as spam while text content works fine. Specifically, whenever I add a link or an image in HTML content, the email doesn't go through. I tried sending in multipart format but it is also not sending HTML with images and links. Here is my attempt:
                                    props.setProperty("mail.transport.protocol", "smtp");
                                     props.setProperty("mail.host", "mail.server.com");
                                     props.setProperty("mail.user", "joeuser");
                                     Session mailSession = Session.getDefaultInstance(props, null);
                                     mailSession.setDebug(true);
                                     Transport transport = mailSession.getTransport();
                                     MimeMultipart mp = new MimeMultipart("alternative");
                                     MimeBodyPart htmlPart = new MimeBodyPart();
                                     MimeBodyPart textPart = new MimeBodyPart();
                                     textPart.setText("Just to make it multipart");
                                     htmlPart.setHeader("MIME-Version", "1.0");
                                     htmlPart.setHeader("Content-Type", htmlPart.getContentType());
                                     htmlPart.setContent(strHtmlMessage, "text/html");
                                     mp.addBodyPart(textPart);
                                     mp.addBodyPart(htmlPart);
                                     MimeMessage message = new MimeMessage(mailSession);
                                     message.setHeader("MIME-Version", "1.0");
                                     message.setHeader("Content-Type", mp.getContentType());
                                     message.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");
                                     message.setContent(mp);
                                     message.setSubject(strSubject);
                                     message.setFrom(new InternetAddress("[email protected]"));
                                     message.addRecipient(Message.RecipientType.TO,
                                             new InternetAddress("[email protected]"));
                                             transport.connect();
                                             transport.sendMessage(message,
                                             message.getRecipients(Message.RecipientType.TO));
                                     transport.close();This code is one of my numerous attempts to make HTML send images and links. Please, let me know if there is a workaround way to make JavaMail send HTML with links and images in the message body. Your help will be greatly appreciated.

    The JavaMail FAQ has information on creating HTML messages, including
    messages with both plain text and HTML. Did you find it?
    BTW, your code has many unnecessary statements, such as setting
    the Mime-Version header, which JavaMail will do for you, and setting
    the Content-Type header, which JavaMail does as a side-effect of the
    setContent or setText calls.
    Other than that, it looks like your code should be correctly creating a
    multipart/alternative message. If the recipient is still rejecting it you
    need to figure out what it is about the message that makes the recipient
    think it's spam. Can you send a similar message using another mailer?
    Can you send the message to a different recipient?

  • Windows.ApplicationModel.DataTransfer. How share image and link in same post ?

    How share image and link in same post  ?

    You can
    share a link and share an image (as an image or
    as a file), but logically speaking all of the data types shared are considered different views of the same thing. The share target will pull out the best format for its target and leave the rest. The share source cannot tell the target how to interpret
    the data.
    See
    Choosing data formats and file types.
    If you want to combine multiple data types in one view then you can combine them in an HTML page. See
    How to share HTML

  • Keep track of images and links in a datafile

    Hi,
    I have set up replication between my source and destination server. How do images and contents linked in a webpage section replicate?
    I think images and content reffred should be replicated seperately, as a datafile doesnot have a refrence telling images reffered should be moved.
    Now the question is how to move Images and contents that are linked in the webpage along with datafiles.
    One solution is to use SiteStudio section replication. If we use that how to make sure this goes through a work flow and then gets replicated?
    your inputs willl be usefull

    This seems somewhat like an architecture question. Let's assume you have two servers (I'll call them staging and production). You have set the Site Studio Migration Utility to automatically replicate content associated with your site from staging to production. Now in our example, on staging there is a datafile with various images and links to native content that users regularly update. You have a workflow layer applied to all datafiles of your site so that content isn't migrated into production until it has been workflow approved. I'm assuming this is how you are set up (since this is a commonly recommended architecture).
    Now back to the datafile. I'm assuming the images in the datafile (as well as any linked native content) have site specific metadata applied to them, so that the Site Studio Migration utility replicates them into production just like migrates other areas of your site. If that is the case, then it is the responsibility of the workflow approver to verify that all images (and document links) look right before approving the content for auto migration.
    Unfortunately, you may run into a situation like the following... You have a page that lists sales figures every month, and uses an image to visualize those sales figures. You already have a datafile in production for February as well as the associated February graphic. You create an updated sales figure datafile for March, as well as an updated associated image for March. The image migrates into production automatically, before the updated datafile referencing the updated image clears workflow. Your February sales figure page could potentially have the March sales image inside of it. This is a potential problem since there is no concept of a "group approval" for all elements that make up the contents within a datafile. You could add a layer of workflow to all native content and images, but then you'd have to be fairly certain that you were synched up properly. You could also manually migrate, but I can see where this would not be ideal either. Unfortunately, there is no easy answer.

  • Adding image and link at bom matrix.

    Hello Friends,
                         I have added two user defined fields in the matrix at bom form as.
    1.For storing image
    2.For storing link
    Now I want to add image and link through coding but this is giving me error as "This is not user defined item."
    Thanks.

    Mithun,
    Did u make sure that the Columns are Active and Editable..? are they visible..??
    To set the value try the following..
    objEdit = objMatrix.Columns.Item("V_12").Cells.Item(pVal.Row).Specific
    objEdit.String = "www.yahoo.com"
    where objEdit is a Edit text.
    Regards,
    Vasu Natari.

  • Rotating Images and shapes indesign, pixelated?

    Hello,
    I am currently working on a magazine from scratch, and i am having this trouble of pixelated images and shapes, when i rotate them.
    I sat the file on a high quality display, and exported it to PDF... images and shapes still look like shattered....
    Please advise, i need to fix this issue
    Thanks

    1st picture : exported pdf
    2nd picture: indesign file
    3rd picture: PDF Settings
    i am using an acrobat X pro and im using settings such as JPEG 2000 losless / res 300 ppi / JPEG QUALITY HIGH ( check 3rd image )

  • Relink Mutiple Images and Link filename to artboard

    Hello everyone! I have been looking for a solution to help automate a printing and ordering process. I have a design template with 2 pages both 8.5x11 in size. One page represents the front and other the back for double sided printing. I have 6 different images per sheet so in my links panel I have 12 total links, 2 of each. I was wondering if there is a script to update all the links with the same filename with other image? Currently I have to search through all the images and update each one.
    I have 6 artboards dividing the 8.5x11 sheet proportionatly. Each artboard represents a different order. Is there a script to write the linked filename to the bottom corner of each artboard?
    Sorry if any of this is confusing. Any help would be much appreciated.
    Thanks!

    Welcome to the forum.
    ahendrick1983 wrote:
    script to update all the links
    CarlosCanto, wrote a great script a while back that should assist with this task:
    ahendrick1983 wrote:
    script to write the linked filename on each artboard?
    I provided a basic example in your newer thread "Add image link filename to each artboard":
    http://forums.adobe.com/message/6049438#6049438
    Hope something proves useful to your efforts.

  • Broken images and links

    Once the file is created in RoboHelp (Word to HTML) it looks
    fine in IE, but its broken in FireFox. My coder looked at it and
    all of the links and images have backward slashes(\) instead of
    forward slashes (/) which makes things broken in FireFox. We are
    updating this file monthly and don't have the time to go through
    and change all the slashes each time. Is there a way to change the
    setting in RoboHelp? Any suggestions?
    Thanks!

    Hold up. You cannot install RH on a server as a shared
    application. One, it is against the licence. Two, it won't work!
    If you can't send me the file, on this one I find it
    difficult to impossible to help you. I am not about to post it to
    the world so "public knowledge" doesn't really come into it. Lots
    of people have sent me confidential files and nobody has ever had
    cause to complain. I was once sent a 100mb project detailing a
    bank's procedures but I am still working rather than spending what
    I could have got from their coffers. I am sure you could strip a
    lot of information out just leaving some of these links and images
    in but making the file useless to anyone. However it's your call as
    to whether or not you want assistance and there's only one way I
    can do it.
    I never had any formal RH training either but I did work
    alongside someone who did know the product. Sounds like you don't
    have that advantage so maybe the tutorials or an external course
    would help.
    Sorry I cannot help you.

  • About rotating images and making a PDF

    I have roteted some images of an album because they are "vertical". What I want is to make a PDF in which the vertical images appear "vertical" and the horizontal ones in "horizontal", but when I do this action the images rotated (vertical) appear horizontal again.
    Is there any way of solve this?

    Make sure you aren't using Orientation: Best Fit in
    the contact sheet settings.
    Ian
    Oh, yes I had this option. But I think there´s not solution, if I use Portrait orientation then the horizontal images turn into vertical and viceversa.

  • Dreamweaver Relative Image and Link Issue

    Hi there
    I have just created a website in Dreamweaver. It previews
    fine in Firefox but when previewing it in IE neither the images are
    loading or the internal links working.
    I think it has something to do with roots or relative linking
    as links are all coming up with
    http://home.html in front of them and
    images
    http://home.html/Assets (assets
    being where images are stored). I hope this isnt too difficult to
    fix.
    Thank you in advance

    LOL. Just so....
    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
    ==================
    "Ken Binney" <[email protected]> wrote
    in message
    news:g9me63$hql$[email protected]..
    > Lose this:
    > <base href="home.html" />
    >
    > "B10000" <[email protected]> wrote in
    message
    > news:g9m260$553$[email protected]..
    >> Hi there
    >>
    >> I have just created a website in Dreamweaver. It
    previews fine in Firefox
    >> but
    >> when previewing it in IE neither the images or
    loading, or the internal
    >> links
    >> working.
    >>
    >> I think it has something to do with roots or
    relative linking as links
    >> are all
    >> coming up with
    http://home.html in front of them and
    images
    >>
    http://home.html/Assets (assets
    being where images are stored). I hope
    >> this
    >> isnt too difficult to fix.
    >>
    >> Thank you in advance
    >>
    >
    >

  • Mail problem with embedded images and links

    Since Yosemite Apple Mail seems to have a problem with images that are used as a hyperlink to a website.
    While links are clickable with external loaded images work fine, links with embedded images just do not anything. Clicking on them selects them, a double-click opens the image in Preview.
    This works:
    <a href="https://www.google.de"><img src="https://www.google.de/images/srpr/logo11w.png" alt="Google Logo"></a>
    This does not work:
    <a href="https://www.google.de"><img src="cid:logo_google" alt="Google Logo"></a>
    Can you reproduce this problem?
    We tried it with OS X 10.10.1 and 10.10.2

    After a bit of digging around I think I have found the reason for the EO being called prior to the CO. In the parent page CO, there is a transaction commit (oapagecontext.getApplicationModule(oawebbean).getTransaction().commit();).
    Therefore, I assume that as my custom AM is a child of standard AM where the transaction is being commit, the child AM is sharing the same transaction/session and hence the EO being called.
    I am running into issues with moving the validation to the EO as the validation requires visibility of the VO values to calculate a total value. Therefore is there a way to ensure that my custom AM maintains a separate database session/transaction to the parent/standard AM? Is it possible to break the parent/child relationship?
    This way I assume that the commit issued by the parent page CO will not affect my custom AM/EO.
    Cheers.
    Jon.

  • Help needed after uploading photos to my PC and being unable to rotate images and video

    HELP!!
    When I connect my iphone to my PC it imports all pics and video. Then when I go into the folder located where these images are located in my C drive and I want to rotate a photo (and video) that was taken upright on my iphone, I get a warning message stating "you cannot rotate this image. The file might be in use or open in another program or the file or folder might be read only"
    How do I edit and rotate these photos and videos so I can actually use them on my PC???
    Thank you!!!

    Yes, due to Incomplete Software Update on your iPhone your Device is now in Recovery Mode and you cannot take a Backup now. But if you have taken a backup earlier then you can Restore that backup on your iPhone after you Reset your iPhone to Factory Settings.

  • Rotating images and PDFs arbitrary in Viewer

    All my scans are slightly out of rectangularity, because my scanner ist not running correctly.
    Is there a way to rotate in finer degrees than 90/180 etc.) Maybe the automator gives a clue?

    Most image editing applications will do that. Some will look for horizontal lines and do it automatically. Others will let you choose two points on a horizontal line. I have straightened scans with Photoshop Elements, Gimp, and Graphic Converter.
    Of course, often the original is not straight, and sometimes different parts of an image are not parallel to other parts. The scanner may not be the problem.

Maybe you are looking for