Auto slideshow with progressive image load

Hello everyone,
Does anyone know of a good autoplay slideshow script that
starts with the
first image on page load and then downloads the additional
images when
called? In other words, if there are 20 images in the
slideshow, it doesn't
load all 20 images before displaying the first.
I have just a couple of specific requirements.
I don't need any controls (pause, forward, etc) on it.
Most of the javascript slideshows I've looked at in Google or
have in my
snippet list have the image name hardcoded in the script.
Image1.jpg, image2.jpg, etc, which won't work.
I'll be feeding the images dynamically depending on the
category the user
chooses and the image names are variable.
I'm currently using javascript that automatically shows and
hides divs with
the same class name by changing the display style from none
to block and
back to none as it loops through them.
This works well as I can dynamically write as many divs as
needed by looping
through all the items in a category.
But alas, this one still doesn't start to run until all the
images are
downloaded.
You can see it here:
http://www.onelongfellowsquare.com/
There's actually 3 "slideshows", stacked one on top of the
next, using this
in the "Featured" section.
Thank you for any help or ideas.
Take care,
Tim

Thanks, Jeff.
That's the functionality I was looking for.
I just need to figure out the best way to dynamically fill
the array with
image names from a database.
Take care,
Tim
"Jeff" <[email protected]> wrote in message
news:[email protected]...
> <head>
> <script language="JavaScript1.1">
> <!--
> var slidespeed=3000
> var slideimages=new
>
Array("image1.JPG","image2.JPG","image3.jpg","image4.jpg","image5.jpg","image6.jpg")
>
> var slidelinks=new Array("")
>
> var newwindow=0
>
> var imageholder=new Array()
> var ie=document.all
> for (i=0;i<slideimages.length;i++){
> imageholder
=new Image()
> imageholder.src=slideimages
> }
>
> function gotoshow(){
> if (newwindow)
> window.open(slidelinks[whichlink])
> else
> window.location=slidelinks[whichlink]
> }
> //-->
> </script>
> </head>
>
> <body>
> <a href="javascript:gotoshow()"><img
src="image1.JPG" alt="" name="slide"
> width="400" height="271" border=0
style="filter:blendTrans(duration=3)">
>
> <script language="JavaScript1.1">
> <!--
> var whichlink=0
> var whichimage=0
> var blenddelay=(ie)?
document.images.slide.filters[0].duration*1000 : 0
> function slideit(){
> if (!document.images) return
> if (ie) document.images.slide.filters[0].apply()
> document.images.slide.src=imageholder[whichimage].src
> if (ie) document.images.slide.filters[0].play()
> whichlink=whichimage
> whichimage=(whichimage<slideimages.length-1)?
whichimage+1 : 0
> setTimeout("slideit()",slidespeed+blenddelay)
> }
> slideit()
> //-->
> </script>
> </body>
>
> Jeff
>
>
>
> ----- Original Message -----
> From: "TC2112" <[email protected]>
> Newsgroups: macromedia.dreamweaver
> Sent: Saturday, January 31, 2009 7:04 PM
> Subject: Auto slideshow with progressive image load
>
>
>> Hello everyone,
>>
>> Does anyone know of a good autoplay slideshow script
that starts with the
>> first image on page load and then downloads the
additional images when
>> called? In other words, if there are 20 images in
the slideshow, it
>> doesn't load all 20 images before displaying the
first.
>>
>> I have just a couple of specific requirements.
>> I don't need any controls (pause, forward, etc) on
it.
>> Most of the javascript slideshows I've looked at in
Google or have in my
>> snippet list have the image name hardcoded in the
script.
>> Image1.jpg, image2.jpg, etc, which won't work.
>> I'll be feeding the images dynamically depending on
the category the user
>> chooses and the image names are variable.
>>
>>
>> I'm currently using javascript that automatically
shows and hides divs
>> with the same class name by changing the display
style from none to block
>> and back to none as it loops through them.
>> This works well as I can dynamically write as many
divs as needed by
>> looping through all the items in a category.
>> But alas, this one still doesn't start to run until
all the images are
>> downloaded.
>> You can see it here:
>>
http://www.onelongfellowsquare.com/
>> There's actually 3 "slideshows", stacked one on top
of the next, using
>> this in the "Featured" section.
>>
>> Thank you for any help or ideas.
>>
>>
>> Take care,
>>
>> Tim
>>
>>
>
> "TC2112" <[email protected]> wrote in message
> news:[email protected]...
>> Hello everyone,
>>
>> Does anyone know of a good autoplay slideshow script
that starts with the
>> first image on page load and then downloads the
additional images when
>> called? In other words, if there are 20 images in
the slideshow, it
>> doesn't load all 20 images before displaying the
first.
>>
>> I have just a couple of specific requirements.
>> I don't need any controls (pause, forward, etc) on
it.
>> Most of the javascript slideshows I've looked at in
Google or have in my
>> snippet list have the image name hardcoded in the
script.
>> Image1.jpg, image2.jpg, etc, which won't work.
>> I'll be feeding the images dynamically depending on
the category the user
>> chooses and the image names are variable.
>>
>>
>> I'm currently using javascript that automatically
shows and hides divs
>> with the same class name by changing the display
style from none to block
>> and back to none as it loops through them.
>> This works well as I can dynamically write as many
divs as needed by
>> looping through all the items in a category.
>> But alas, this one still doesn't start to run until
all the images are
>> downloaded.
>> You can see it here:
>>
http://www.onelongfellowsquare.com/
>> There's actually 3 "slideshows", stacked one on top
of the next, using
>> this in the "Featured" section.
>>
>> Thank you for any help or ideas.
>>
>>
>> Take care,
>>
>> Tim
>>
>>
>
>

Similar Messages

  • Slideshow with Fading Images

    Is there a tutorial around on creating a slideshow with
    fading images. I want to drop my images into a folder. 01.jpg,
    02.jpg etc. and then have an actionscript automatically fade them
    in and out.
    Does someone know how to do this dynamically. I know it can
    be done. I want all of the .jpg images to reside in a folder and
    then I want the images to load and play automatically using an .XML
    file.
    Thanks

    I would do it with this code:
    on frame 1:
    mc = function() {
    num = (Math.round(Math.random()*27));
    //----------------------------------------- 27 being the
    number of images i have (name them from 0.jpg to 26.jpg
    totalfilename = num + ".jpg";
    _root.picLoader.loadMovie("
    http://www.yoursite/yourimageFolder/"
    + totalfilename);
    //----------------------------------------picLoader being my
    empty movie clip where the pictures are loaded
    mc();
    clearInterval(mc.intID);
    mc.intID = setInterval(mc, 20000);
    // ----------------------------------------------- every 20
    sec the picture will change randomly
    then on the emptyMovieClip ad this code:
    // this will fade the image in
    onClipEvent (load)
    this._alpha = 0;
    onClipEvent (enterFrame)
    if (this._alpha < 100)
    this._alpha = this._alpha + 5;
    } // end if
    if (this._alpha >= 100)
    this._alpha = 100;
    } // end if
    I hop this helped

  • Creating a wizzard with progress images

    hi there,
    i'd like to create my first wizzard.
    is any easy and straight foreward method to get those nice progress images on the left side.
    they should look similar to those recently used be the apex build-in wizzards, for example when creating a new page.
    grtz
    peter
    Edited by: yeti on 12.08.2009 15:11

    Hello Peter,
    basically, a wizard is special type of a list.
    Your can create a new list in the shared components section with the template "Wizard Progress List". After that you are able to create list entries. The list entry label can also be an img-tag, e.g. <img src="#WORKSPACE_IMAGES#image.gif" alt="" />. The image.gif is an example. You can upload your images into the images area and reference them in the img-tag.
    With "Current List Entry" you can control for what pages the entry becomes current.
    Hope this helps!
    Jens

  • Problem with an image load

    i have a little problem here.. I have an awt.Choice, when i pick one of the options, in a JPanel bellow, appears a bidimentional array of JButtons (JButtons[][]) all with ImageIcons, and they all together makes one image... the problem is that the image appears cuted and incomplited, but if i minimize and restore the window, it fully appears.. in other words the image is there, but it doesn't shows rigth.. haw can i avoid this.. thanks...

    Make each of those areas into TWO images: A B&W one, and
    a COLOR one. Just
    do a simple image swap.
    You can see something similar on this page layer's menu -
    http://www.madisonconcrete.com/testing/page.html
    Those are just image swaps.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cjallen1" <[email protected]> wrote in
    message
    news:e73fos$ee3$[email protected]..
    > Can anyone help me with this problem !!
    >
    > I want the page to load with an image (that includes the
    navigation menu)
    > in
    > black and white but when the mouse rollovers the
    sections of the site i
    > want
    > that particular menu selection to become colour
    >
    > I hope i explained it well enough
    >
    > 1. Black and white image
    > 2. User selects option on image (Hotspot??)
    > 3. Only that part of the image (hotspot area) changes to
    the image of that
    > area in colour
    >

  • Broad Question - Horizontal Scrolling Slideshow with Still Images

    Hi everyone,
    I have to make a horizontal scrolling slideshow using many images of different filetypes, sizes and DPI in Premiere Pro CS5.5.  I have tried a few different methods but each has its own problems:
    1. Arrange still images horizontally in the timeline, adjacent to eachother, and apply a custom Push video transition between each one.  This is a consistent method that doesnt require much work but it's tough to control the amount of whitespace between the images, especially when the images are all different proportions.
    2. Arrange still images both horizontally and vertically in the timeline, so that there is no white space between the images (the images overlap across multiple video lanes).  Then, set up motion fx for the position of the image for each clip.  This is tedious and I have to make every clip the same size and make sure the distance each clip travels (in the motion fx) is the same. So for instance, I have to set the starting key to 1200 on the x-axis, and the ending key to -300, for every single image (tedious when there are many).  Another problem with this is that it becomes very difficult to change the duration of the motion fx once ive set it up for many.
    3. To have an easier time composing the arrangement of images, I just make a single giant image by laying out dozens of photos in InDesign, then export a very wide jpeg.  The great thing about this is it's fast, easy, and the composition is exactly how i want it.  The bad thing is that premiere doesn't handle many megapixel images well, and furthermore the image quality is horrific compared to the quality of importing individual images. 
    The biggest problem with all of these is the image quality (extremely poor compared to viewing the source images on their own) and the animation smoothness (all three methods produce very jittery and erratic videos).  The biggest question I have is: should I even be doing a slideshow in Premiere?  Can someone recommend a better application I should be using for something like this?  Do i have to learn Flash?  I am not trying to make an interactive thing, just a video/animation where I hit play and dozens of images scroll horizontally, at the same speed, with a lot of control over the scaling of the images and their horizontal and vertical arrangement (the amount of whitespace between them). 
    Thanks for everyone's time and help!

    Don't know if it is still being sold, but Grass Valley's Imaginate was the perfect application for your intended purpose. There are many others as well, but PR is not the program of choice for this.

  • Slideshow with linked images

    Hi,
    I read on a post from about a year ago that someone else was having problems getting the images in his slide show to be linked to other web sites or other pages. The solution for the linking was the following onclick javascript code:
    <img src="pic1.jpg" onclick="window.location = 'http://www.google.com';" />
    That is working great. But my last minor issue is that I'm not getting the "pointy finger" indicator when I hover over an image, showing that it links to somewhere. The original discussion said to add this to the css:
    #slideshow img {
         cursor:pointer;
    But I'm not sure which css to add this to. jquery-latest.min.js? jquery.cycle2.min.js? And where? at the very end, or....?
    Thanks for any help you can give. I'm obviously not a javascript programmer so I'm just trying to tape and paste this solution together.
    Gail

    Nancy,
    As I mentioned, your solution didn't work for me, partly because I didn't fully understand the instructions. I'll go through my questions step by step. See my comments in bold below.
    <!doctype html> 
    <html> 
    <head> 
    <meta charset="utf-8"> 
    <title>HTML5 with Cycle2 </title> 
    OK, I've done this. Essentially created a new template with the above code.
    <!--add this to your HTML5 Template.dwt <head> tags--> 
    <!--Latest jQuery Core Library--> 
    <script src="http://code.jquery.com/jquery-latest.min.js"> 
    </script> 
    I did that. Added it to the template I created above.
    <!--add this to your Template.dwt <head> tags--> 
    <!--Cycle2 Plugin Script--> 
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script> 
    </head> 
    On this step, do you mean the same template page I created above, or something else? If it's the same template, then this script comes right after <script src="http://code.jquery.com/jquery-latest.min.js">  </script> , correct?
    In these steps below, I assume you mean I create a new HTML page based on the template I created above?
    <body> 
    <!--add this to your HTML5 child page--> 
    <!--begin slideshow--> 
    <div class="slideshow" 
        data-cycle-pause-on-hover='true', 
        data-cycle-timeout='2000' 
        data-cycle-slides="> a" 

    <!--your images go here--> 
    <a href="http://www.iongeo.com"><img src="images/ION_GeoVentures_logo_sm.jpg" alt="ION logo"/></a> 
    <a href="http://www.hess.com"> <img src="images/Hess-logo_sm.jpg"/></a> 
    <a href="http://www.shell.com"><img src="images/Shell-logo-sm.jpg"/></a> 
    <a href="http://www.chevron.com"><img src="images/Chevron-logo_sm.jpg"/></a> 
    <a href="http://www.halliburton.com"><img src="images/Halliburton-logo_sm.jpg"/></a> 
    <a href="http://www.statoil.com"><img src="images/Statoil_logo_sm.jpg"/></a> 
    <a href="http://www.slb.com"><img src="images/Schlumberger-logo_sm.jpg"/></a> 
    <!--end slideshow--> 
    </div> 
    </body> 
    </html> 
    Again, I apologize for being dense!
    Jon: I did go to the validator page, and removed the extra <head> and <body> and <style> tags.
    Gail

  • Slideshow with multiple images on the screen at once

    I’m trying to create a graduation slideshow in Premiere Elements 11 that mixes both still photos and video.  I can handle the video portion just fine (I think!), but I’m struggling to get the photos to do what I want.
    I would like five photos (and a text field) to individually phase in and remain visible on a black “slide”.  Once all five photos are visible, I intend to transition to the next “slide” with five new photos.  What is the best way to go about doing this?  I’ve searched for a couple of hours and can’t seem to find anything that explains what I’m trying to do.  The best I can come up with is to create a title slide, and plop each of the five photos and text on top of it, then transition to another title slide and repeat.
    I did this same project last year, and I created the “slides” in PowerPoint, and then exported the animated show as a .wmv.  From there, I imported them into Premiere to combine with the video footage.  I can probably do that again this year, but I was hoping there was a simple way to accomplish the same thing in Premiere. 
    Thanks in advance!
    Ginger Wick

    WickGIkd98
    I have something for you to consider. It does not involve any user keyframing, but just a lot of details for what could be an interesting "Picture In Picture" effect. The following is the How To. If necessary, I will post a link to what the end result might look (via YouTube).
    This presentation will use a simple model with five scenic photos to demonstrate some basic principles on which you can build. The idea here will be to have a the main photo spin in to the center from the top, followed by one at a time placement (appearance, non spin in) of a photo in the lower left, lower right, upper left, upper right, and concluding with all 5 photos displayed for a designated amount of time.
    We start by setting up the Timeline with:
    Our background, in this case a blue color matte, on Video Track 1.
    And
    A Photo on each of Video Track 2, 3, 4, 5, and 6
    To make it easier to follow what is going on at this stage, we stagger (train look) the position of the photo on each of the tracks with respect to one another.
    In the Expert workspace (assuming you are using Premiere Elements 11 or 12), we click on the fx Effects Tab, set the category to Presets, and get to PiPs by clicking Show All and selecting PIPs from the drop down list.
    The PiPs category contains numerous options, offering simple placement as well as placement involving Scale In or Out, Spin In or Out, or Slide In or Out. We will go the simple placement route for photos on Video Tracks 3, 4, 5, and 6 and use Spin In for our Video Track 2 photo which we will use as our center photo.
    We highlight the photo on Video Track 3
    We select the 25% LL (lower left)
    We drag the 25% LL into the highlighted photo on Video Track 3.
    In a similar manner, we apply a particular PIP 25% effect to photo on each of Video Track 4, 5, and 6
    Video Track 4, 25% LR (lower right)
    Video Track 5, 25% UL (upper left)
    Video Track 6, 25% UR (upper right)
    Now we highlight the photo on Video Track 2
    And, apply the PIP 25% UR Spin In
    We move the Timeline Indicator at a spot on the Timeline where the Monitor shows the final resting point for the placed PIP 25% UR Spin In, click on the image in the Monitor to bring up the photo’s bounding box, and then drag the image to the center position.
    Now it is time to put things together.
    With the mouse cursor, we drag the photo file on Video Track 2 to the start of the Timeline. We then move the images on Video Tracks 3, 4, 5, and 6 so that they start 2, 4, 6, and 8 seconds respectively from the start of the Timeline. A handy way to do this is utilizing the timecode field below the Monitor and left and right arrow keys of the computer keyboard.
    Then, with the mouse cursor, we drag the ends of the images on Video Tracks  1, 2, 3, 4, 5, and 6 so that they all end at the same Timeline time.
    Some Finishing Touches are the last steps.
    Adjusting Photo positions. We place the Timeline Indicator at a position on the Timeline where all five photos are displayed together in their final stationery position in the Monitor. If necessary, we click on one photo at a time in the Monitor to bring up its bounding box for repositioning and resizing. (Make sure that the correct  video track photo is selected.)
    Applying Additional Effects. Consider going to Presets category and applying one of the Drop Shadows or Bevel Edges options. We applied Drop Shadows to each of photos on Video Tracks 3, 4, 5, and 6 and Bevel Edges to photo on Video Track 2. Also, check out the variations on these effects that can be achieved in the Applied Effects Tab/Applied Effects Palette/and expanded panel for the applied effect.
    Now let us see what all this looks like after our finishing touches. If you try it, please let us know how easy or not so easy the instructions were to follow and if it worked for you.
    Thanks.
    ATR

  • FCE 4 for slideshows with still images only

    I recently put together a slideshow in FCE 4 from my still photographs. The show looks great when I run the original file. But the DVD I created looks awful. Is there a special way to size the still images for better quality. I sized them the way we do at camera club for our digital projector (1024 X 768, resolution 100).
    Thanks.
    Barb

    Unfortunately, Tom, the slideshow capabilities in iPhoto are not sophisticated enough. I need to be able to "choreograph" the images with a musical selection. I like the marker features in FCE so I can easily time out the musical selection and place the transitions where I need them before I even import my images. I also like the ability to play with the audio, for example, trimming and fading out a piece of music that may be a tad long; or starting a selection of music after a title slide has been on the screen. I kind of need the type of editing one does with film but using still images. If only Apple would combine some of the features of Final Cut Express with a program like iPhoto that handles the still image resolution. Any possibility of that happening?

  • Auto Cropping with video images problem (CS6)

    I'm working with 6 video clips to create a compilation.  All are mp4s.  When 2of them are dropped (or dragged) form the source panel into the timeline, for some reason the video on them is zoomed in, or cropped, to like 30% of the original.  When I view the clips in the source panel (by double clicking on the file in "source" below, everything is fine - it's 100% of the image there.  But something is happening when the file gets dropped into the timeline on the right.  Is there some zoom or crop feature somewhere that's getting triggered that I need to turn off?   Thanks for any help, Andrew

    I may have figured out how this happens but not how to fix.
    When I imported the two “problem” clips, they look normal (non-cropped) if I choose “Change Existing Settings.”  They become cropped, however, if I choose “Keep Sequence Settlings.”
    The problem is I have problems with the other 4 clips if I also choose “Change Sequence Settings.”  These 4 are only ok if I choose “Keep Sequence Settings.” So the reverse problem of the other 2 clips.
    Is there a way to custom choose either “Keep Sequence Settings” or “Change Existing Settings” for each clip?  It seems that once you make a choice for either setting on the first clip (i.e. “Keep Sequence Settings”), all the clips you import after that automatically default to that setting choice (“Keep Sequence Settings”).

  • How to: Horizontal slideshow with parts of previous and next images

    I want to make a slideshow with 6 images in it. The centre image is fully visible, the previous and next images, you can only see parts of it. When you click on the button for previous and next the image swipes tot the centre. Is this possible in Muse, and how???
    I dont want to show the slideshow in the full background( yellow area in the screenshot) but only in the main container.(see image below)

    "Previous" and "Next" buttons are for selecting the next or previous menu in a series of submenus for multiple chapter selection. Look at the options for indexing that creates multiple submenus for the chapters in a timeline.

  • Muse slideshow really slow to load in Preview

    Muse v7.2, new healthy iMac:
    Building a 24 image slideshow with small images (50 to 150 kb size), but they take FOREVER to load in preview (a 75 kb image took 2 minutes to load)! Please help! Thanks!

    Roger
    Thanks for the reply. Here’s what I figured out, after a prolonged chat with an Adobe tech: The Preview feature doesn’t seem to work very well, either the Preview button or file > Preview Page (or Site) in Browser. The Tech had me switch browsers (from Firefox to Chrome), and dump the cache, still no good.
    She then had me Publish the site, using the Publish button (or file > Publish…), and the site came up quickly, and the pics looked great, not pixelated like they were using Preview. When you publish, you make up a name and add the businesscatalyst.com suffix, and hit publish, and your page/site comes up on your default browser.
    I built another page with a slideshow, tested it, and on the whole, it loaded quickly (sometimes would hang on a single image, not sure why). At any rate, I feel like I understand the process better, and have a sense of what the problem was.
    I hope this helps,
    Mike

  • Slideshow vertical hero image aligns left

    Using the slideshow widget with a vertical image sometimes results in the hero image randomly aligning to the left instead of centered. All the hero images are positioned in the center of the content area. The slideshow frame is the full width of the content area so that each image slides in from right to left (due to the Horizontal setting for Transition). The Y coordinate is 10 for the slideshow content (and the hero image container). Horizontal images have not shown a shift to the left. Not all vertical images exibit the behaviour (one slideshow with 20 images, 5 of them vertical, had 4 which shifted left, one displayed properly centered).
    I have only seen this on my Phone layout, not on the Tablet or Desktop layouts. The problem shows when in Preview mode, Preview Page in Browser and on an iPhone 4s.
    NOTE: After further troubleshooting I found something that seems to resolve the issue. If I move the Y coordinate of the image to 11 (slideshow content is at Y: 10) the image stops shifting to the far left and aligns properly to the center. It doesn't make sense, since other horizontal images are set at Y: 10 and even a few pixels taller but have not exibited the problem.

    I noticed when I add a drop shadow to the hero image in the slide show, the hero image when viewed in browser or preview, then aligns left, when I remove the drop shadow from the hero image, then the content is properly aligned.

  • Image Loading Time

    I have a very Image extensive program, and it is beginning to malfunction due to long loading times and code happening before the images actually appear, which does all kinds of strange things. Is there any line of code i can put anywhere to tell all of the images to load before any code happens? Or is there any way to load them before they're being loaded? Aaaaaaaaah! I'm very confused and at a dead end with this image loading stuff... Thanks for any help!

    I use this code:
    image = toolkit.getImage("yeh.jpg");
    while(image.getWidth(this) == -1) {
         try {
              Thread.sleep(10);
         catch (Exception e) {System.out.println("error");}
    }If the image hasn't loaded, image.getWidth will return -1, causing to app to sleep for 10 runs.
    When the image has loaded, the app goes on to the next code...
    hope that helps, sleep well
    izy_t

  • Spry Image Slideshow with Filmstrip- Filmstip thumbs loading incorrectly

    Hello, I am hoping someone will be able to help me. I loaded the Widget for the Spry Image Slideshow with Filmstrip. After reading several tutorials as that the product did not work correctly, I finally got the corrupted .js fixed (thanks Accustic Gramps for all your posts very helpful when going through looking). First page looks great, now, I put the slideshow on another page and loaded it, but the filmstrip is now loading off placement so the thumbs are all messed up.
    Hoping someone can help me.
    here is the code and the link:   http://www.highqualitycontractinginc.com/additions.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>High Quality Contracting Inc- Craftsmanship You Can Trust</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>High Quality Contracting Inc- Craftsmanship You Can Trust</title>
    <meta name="author" content="Mouse Bytez- Website Design and Hosting Services" />
    <meta name="Description" content="High Quality Contracting, Inc- serving Southeastern Wisconsin for all of your contracting, remodeling needs." />
    <meta name="Classification" content="Building and remodeling  Contractor " />
    <meta name="ROBOTS" content="ALL" />
    <meta name="distribution" content="local" />
    <meta name="verify-v1" content="Adu52DLSLorp36w7Ec2sX5iUCtXJGFKRzejTHlondpg=" />
    <link rel="stylesheet" href="stylesheets/style.css" type="text/css" />
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="/Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryPanelSelector.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryPanelSet.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryFadingPanels.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SprySliderPanels.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryFilmStrip.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryImageLoader.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/SpryImageSlideShow.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/plugins/ImageSlideShow/SpryT humbnailFilmStripPlugin.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/plugins/ImageSlideShow/SpryT itleSliderPlugin.js" type="text/javascript"></script>
    <script src="http://www.highqualitycontractinginc.com/Spry-UI-1.7/includes/plugins/ImageSlideShow/SpryP anAndZoomPlugin.js" type="text/javascript"></script>
    <link href="http://www.highqualitycontractinginc.com/Spry-UI-1.7/css/ImageSlideShow/basicFS/basic_fs.c ss" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #ImageSlideShow {
        width: 500px;
        border: solid 4px #000000;
        background-color: #FFFFFF;
        padding-top: 10px;
    #ImageSlideShow .ISSName {
        top: -24px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 18px;
        text-transform: uppercase;
        color: #000000;
    #ImageSlideShow .ISSSlideTitle {
        top: -18px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 12px;
        overflow: hidden;
        color: #AAAAAA;
        text-transform: none;
    #ImageSlideShow .ISSClip {
        height: 400px;
        border: solid 1px #000000;
        background-color: #000000;
    #ImageSlideShow .ISSControls {
        top: 11px;
        height: 400px;
    #ImageSlideShow .FilmStrip {
        height: 80px;
        background-color: #CCCCCC;
    #ImageSlideShow .FilmStripPreviousButton, #ImageSlideShow .FilmStripNextButton {
        width: 25px;
        height: 80px;
    #ImageSlideShow .FilmStripTrack {
        height: 80px;
    #ImageSlideShow .FilmStripContainer {
        height: 80px;
    #ImageSlideShow .FilmStripPanel {
        height: 80px;
        padding-left: 10px;
    #ImageSlideShow .FilmStripPanel .ISSSlideLink {
        border: solid 1px #AAAAAA;
        background-color: #FFFFFF;
    #ImageSlideShow .FilmStripPanel .ISSSlideLinkRight {
        border: solid 1px #AAAAAA;
        width: 56px;
        height: 47px;
    #ImageSlideShow .FilmStripCurrentPanel .ISSSlideLink {
        background-color: #FFFFFF;
        border-color: #FF0000;
    #ImageSlideShow .FilmStripCurrentPanel .ISSSlideLinkRight {
        border-color: #AAAAAA;
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2141543" binding="#ImageSlideShow" />
    </oa:widgets>
    -->
    </script>
    </head>
    <body>
    <!--  / WRAPPER \ -->
    <div id="wrapper" class="bg">
        <!--  / MAIN CONTAINER \ -->
          <div id="mainCntr">
            <!--  / HEADER CONTAINER \ -->
            <div id="headerCntr">
              <h1><img src="images/bbbsealh1US.gif" width="135" height="51" /></h1>
                  <!-- / MENU CONTAINER \ -->
              <div class="menuCntr">
                        <ul>
                          <li class="selected"><a href="index.html" class="home">Home</a></li>
                          <li><a href="about.html" class="home">About </a></li>
                          <li><a href="links.html" class="links">Links</a></li>
                          <li><a href="service.html" class="service">Services</a></li>
                          <li><a href="contact.html" class="contact">Contact</a></li>
                        </ul>
              </div>
                  <!-- \  MENU CONTAINER  /-->
           </div>
            <!--  \ HEADER CONTAINER / -->
           <img src="images/logo.jpg" width="987" height="289" alt="High Quality Contracting Inc" />       <!--  / CONTENT CONTAINER \ -->
          <div id="contentCntr">
              <!--  / LEFT CONTAINER \ -->
              <div id="leftCntr">
                <!--  FEATUERED BOX  -->
                    <!--  / FEATUERED BOX \ -->
                <div class="featurdBox">
                     <ul>
                        <li onclick="tab1()" ><a href="javascript:void(null); class="active">Menu</a>
                            <ul id="first" style="display: block;">
                                <li><a href="additions.html" title="remodeling additions"> Addition Construction</a></li>
                                <li><a href="affiliates.html" title="affiliates">Affiliates </a></li>
                                <li><a href="cabinetry.html" title="cabinetry construction">Cabinetry Construction</a></li>                    
                                <li><a href="chimney.html" title="chimney construction and repair">Chimney Construction/Repair</a></li>
                                <li><a href="about.html" title="company profile">Company Profile </a></li>
                                <li><a href="decks.html" title="custom deck builders">Custom Decks </a></li>
                                <li><a href="http://www.johnsonbankmortgage.com/vmyszewski" title="financing services through Johnson Bank" target="_blank">Financing Services </a></li>
                                <li><a href="flooring.html" title="hardwood, carpet, tile flooring">Flooring Services </a></li>
                               <li> <a href="grading.html" title="grading services">Grading Services </a></li>
                              <li> <a href="garages.html" title="garage construction and remodeling">Garages Construction</a></li>
                              <li><a href="interior.html" title="interior walls and painting">Interior Walls </a></li>
                               <li><a href="organizations.html" title="organizations"> Organizations & Charities</a></li>
                               <li><a href="rec_rooms.html" title="rec rooms and bonus rooms"> Rec Rooms/Bonus Rooms </a></li>
                                                          <li><a href="rough_carptentry.html" title="rough carpentry"> Rough Carpentry</a></li>
                               <li><a href="siding.html" title="vinyl siding"> Siding Services </a></li>
                               <li><a href="testimonial1.html" title="testimonial 1"> Testimonial 1</a></li>
                               <li><a href="testimonial2.html" title="testimonial 2"> Testimonial 2</a></li>
                               <li><a href="testimonial3.html" title="testimonial 3"> Testimonial 3</a></li>
                               <li><a href="testimonial4.html" title="testimonial 4"> Testimonial 4</a></li>
                               <li><a href="testimonial5.html" title="testimonial 5"> Testimonial 5</a></li>
                               <li><a href="testimonial6.html" title="testimonial 6"> Testimonial 6</a></li>
                               <li><a href="testimonial7.html" title="testimonial 7" class="last"> Testimonial 7</a></li>
                          </ul>
                        </li>
                      </ul>
                </div>
                <!--Feature end -->
            <!--  / YES BOX \ --></div>
              <!--  \ LEFT CONTAINER / -->
              <!--  / RIGHT CONTAINER \ -->
              <div id="rightCntr">
                  <!--  / WELCOME BOX \ -->
                <div class="welcomeBox">
                  <h2>Home Additions examples</h2>
                  <ul id="ImageSlideShow" title="High Quality Contracting Inc ">
                <li><a href="images/2011/large/Additionafter1.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Additionafter1.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/2nd-floor-addition.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/2nd-floor-addition.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Caledonia-addition-After1.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Caledonia-addition-After1.jpg" alt="Wisconsin Construction and Remodeling" /></a></li>
                <li><a href="images/2011/large/addition.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/addition.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Addition-framing2.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Addition-framing.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Elm-Grove-Addition-After.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Elm-Grove-Addition-After.jpg" alt="Wisconsin Construction and Remodeling" /></a></li>
                <li><a href="images/2011/large/Completion-2nd-floor-additi.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Completion-2nd-floor-additi.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Caledonia-addition-rear-vie.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Caledonia-addition-rear-vie.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Elm-Grove-Addition-After1.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Elm-Grove-Addition-After1.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Elm-Grove-Addition-After.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Elm-Grove-Addition-After.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Addition-framing2.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Addition-framing1.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Elm-Grove-Addition-During.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Elm-Grove-Addition-During.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Dormer.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Dormer.jpg" alt="Wisconsin Addition Construction" /></a></li>
                <li><a href="images/2011/large/Caledonia-addition-After.jpg" title="Wisconsin Construction and Remodeling"><img src="images/2011/thumbs/Caledonia-addition-After.jpg" alt="Wisconsin Construction and Remodeling" /></a></li>
              </ul>
              <script type="text/javascript">
    // BeginOAWidget_Instance_2141543: #ImageSlideShow
    var ImageSlideShow = new Spry.Widget.ImageSlideShow("#ImageSlideShow", {
        widgetID: "ImageSlideShow",
        widgetClass: "BasicSlideShowFS",
        injectionType: "replace",
        autoPlay: true,
        displayInterval: 4000,
        transitionDuration: 2000,
        componentOrder: ["name", "title", "view", "controls", "links"],
        sliceMap: { BasicSlideShowFS: "3slice", ISSSlideLink: "3slice" },
        plugIns: [ Spry.Widget.ImageSlideShow.ThumbnailFilmStripPlugin, Spry.Widget.ImageSlideShow.TitleSliderPlugin, Spry.Widget.ImageSlideShow.PanAndZoomPlugin ],
        TFSP: { pageIncrement: 8, wraparound: true }
    // EndOAWidget_Instance_2141543
                           </script>
                </div>
                <!--  / PORTFOLIO BOX \ -->
                <div class="portfolioBox">
                    <h2>Home addition construction
    </h2>
                    <p class="style21">Sometimes moving is just an option, yet you need that extra space. As  a master home remodeler, High Quality Contracting Inc can build your 1st or 2nd story addition creating the perfect space and improving the look of your home. We have years of experience in creating beautiful functional additions. </p>
                    <p> </p>
                    <p class="style21">We offer the following:
                   <br /><br /></p>
                    <ul>
                      <li class="style21"><strong>* 1st and 2nd floor additions</strong></li>
                      <li class="style21"><strong>* In-law suites</strong> </li>
                      <li class="style21"><strong>* Sun Room Additions </strong></li>
                      <li class="style21"><strong>* Garden Room Additions </strong></li>
                      <li class="style21"><strong> * Home Office Addtions </strong></li>
                      <li class="style21"><strong> * Three Season Room Additions </strong></li>
                      <li class="style21"><strong> * Great Room Additions</strong> </li>
                      <li class="style21"><strong> * Hot Tub Room Additions</strong></li>
                      <li class="style21"><strong> * Family Room Additions</strong> </li>
                      <li class="style21"><strong> * Home Theater Addtions</strong> </li>
                      <li class="style21"><strong> * Many more options available</strong> </li>
                  </ul>
                </div>
                  <!--  / PORTFOLIO BOX \ -->
              </div>
              <!--  \ RIGHT CONTAINER / -->
           </div>
          <!--  \ CONTENT CONTAINER / -->
        </div>
        <!--  \ MAIN CONTAINER / -->
        <!--  / FOOTER CONTAINER \ -->
        <div id="footerCntr">
                <div class="footerBox">
                     <a href="http://www.facebook.com/pages/High-Quality-Contracting-Inc/154074487989079?sk=wall" target="_blank"><img src="images/facebook.jpg" alt="High Quality Contracting Facebook Page" width="52" height="47" border="0" /></a>
                    <p align="center">&copy; High Quality Contracting, Inc All Rights Reserved| Web Site by: <a href="http://www.mousebytez.com" title="mouse bytez, llc" target="_blank">Mouse Bytez,LLC</a></p>
                  </div>
        </div>
        <!--  \ FOOTER CONTAINER / -->
    </div>
    <!--  \ WRAPPER / -->
    </body>
    </html>

    My apology, mousebytez, I now notice that you had already supplied the URL to your site in your first post.
    And now my second apology, I have tried the page in IE7+ and in FF and see no problem. Could you please bear with this old soul and explain the problem a bit further.
    Gramps

  • Splash screen with progress bar and multiple jar files to load

    Hello,
    I have been looking to the new features in java 6 for splash screens. I haven't implemented this never before and i was wondering how i could do the following with java 1.5 or 6:
    I would like to see a splash screen with a progress bar that "grows" when every jar file has been read.
    At this time i call my application like this from a shell script:
    exec "$JAVA_BIN" -Djava.library.path=$LIBRARIES_J3D -classpath xxxx.jar yyyy.jar zzzz.jar ...
    where xxx.jar, yyy.jar and zzz.jar are very heavy jars.
    So i would like to see in the progress bar 33% 66% and 100% when they are loaded.
    I do not know if this is the right forum to ask for this. If no, please point me which would be the ideal one.
    Any help will be very useful. Thanks to all!

    Am 10.07.2015 um 07:17 schrieb Lalit Solanki:
    > Hi friend,
    >
    > I am create pure eclipse E4 application and trying to splash screen with progress bar and message.
    >
    >
    >
    >
    > but above image in only support eclipse E3 application so pleas help me how to add progress bar and message in eclipse E4 application
    >
    Hi Lalit,
    there's a Bug entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382224
    Meanwhile you can use this solution:
    https://www.eclipse.org/forums/index.php/t/328812/5ceed4bcaa683a94d65efb161bffd217/
    Regards,
    Ralf.

Maybe you are looking for