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

Similar Messages

  • 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
    >>
    >>
    >
    >

  • Trying to create a surface  with multiple images with mouse events

    novice programmer (for a applet program)
    hi trying to create a surface i.e jpanel, canvas, that allows multiple images to be created.
    Each object is to contain a image(icon) and a name associated with that particular image. Then each image+label has a mouse event that allows the item to be dragged around the screen.
    I have tried creating own class that contains a image and string but I having problems.
    I know i can create a labels with icons but having major problems adding mouse events to allow each newly created label object to moved by the users mouse?
    if any one has any tips of how to acheive this it would be much appreciated. Thanks in advance.
    fraser.

    This should set you on the right track:- import java.awt.*;
        import java.awt.event.*;
        import javax.swing.*;
        public class DragTwoSquares extends JApplet implements MouseListener, MouseMotionListener {  
           int x1, y1;   // Coords of top-left corner of the red square.
           int x2, y2;   // Coords of top-left corner of the blue square.
           /* Some variables used during dragging */
           boolean dragging;      // Set to true when a drag is in progress.
           boolean dragRedSquare; // True if red square is being dragged, false                              //    if blue square is being dragged.                            
           int offsetX, offsetY;  // Offset of mouse-click coordinates from
                                  //   top-left corner of the square that was                           //   clicked.
           JPanel drawSurface;    // This is the panel on which the actual
                                  // drawing is done.  It is used as the
                                  // content pane of the applet.  It actually                      // belongs to an anonymous class which is
                                  // defined in place in the init() method.
            public void init() {
                 // Initialize the applet by putting the squares in a
                 // starting position and creating the drawing surface
                 // and installing it as the content pane of the applet.
              x1 = 10;  // Set up initial positions of the squares.
              y1 = 10;
              x2 = 50;
              y2 = 10;
              drawSurface = new JPanel() {
                        // This anonymous inner class defines the drawing
                        // surface for the applet.
                    public void paintComponent(Graphics g) {
                           // Draw the two squares and a black frame
                           // around the panel.
                       super.paintComponent(g);  // Fill with background color.
                       g.setColor(Color.red);
                       g.fillRect(x1, y1, 30, 30);
                       g.setColor(Color.blue);
                       g.fillRect(x2, y2, 30, 30);
                       g.setColor(Color.black);
                       g.drawRect(0,0,getSize().width-1,getSize().height-1);
              drawSurface.setBackground(Color.white);
              drawSurface.addMouseListener(this);
              drawSurface.addMouseMotionListener(this);
              setContentPane(drawSurface);
           } // end init();
           public void mousePressed(MouseEvent evt) {
                  // Respond when the user presses the mouse on the panel.
                  // Check which square the user clicked, if any, and start
                  // dragging that square.
              if (dragging)  // Exit if a drag is already in progress.
                 return;           
              int x = evt.getX();  // Location where user clicked.
              int y = evt.getY();        
              if (x >= x2 && x < x2+30 && y >= y2 && y < y2+30) {
                     // It's the blue square (which should be checked first,
                     // since it's in front of the red square.)
                 dragging = true;
                 dragRedSquare = false;
                 offsetX = x - x2;  // Distance from corner of square to (x,y).
                 offsetY = y - y2;
              else if (x >= x1 && x < x1+30 && y >= y1 && y < y1+30) {
                     // It's the red square.
                 dragging = true;
                 dragRedSquare = true;
                 offsetX = x - x1;  // Distance from corner of square to (x,y).
                 offsetY = y - y1;
           public void mouseReleased(MouseEvent evt) {
                  // Dragging stops when user releases the mouse button.
               dragging = false;
           public void mouseDragged(MouseEvent evt) {
                   // Respond when the user drags the mouse.  If a square is
                   // not being dragged, then exit. Otherwise, change the position
                   // of the square that is being dragged to match the position
                   // of the mouse.  Note that the corner of the square is placed
                   // in the same position with respect to the mouse that it had
                   // when the user started dragging it.
               if (dragging == false)
                 return;
               int x = evt.getX();
               int y = evt.getY();
               if (dragRedSquare) {  // Move the red square.
                  x1 = x - offsetX;
                  y1 = y - offsetY;
               else {   // Move the blue square.
                  x2 = x - offsetX;
                  y2 = y - offsetY;
               drawSurface.repaint();
           public void mouseMoved(MouseEvent evt) { }
           public void mouseClicked(MouseEvent evt) { }
           public void mouseEntered(MouseEvent evt) { }
           public void mouseExited(MouseEvent evt) { }  
        } // end class

  • Create Xcursor Theme with SVG Images?

    Is it possible to create an xcursor theme with SVG images instead of PNG images?
    An unproductive Google search is making me guess that the answer is "No." Also, I've downloaded a few from the AUR, and none of them use SVG images (unless they're being used as examples). Does anyone know if this is possible?

    view > edit slide master
    delete all the slide masters except the master you want to use
    File > Save Theme and add to theme chooser
    select the default theme when opening Keynote:    Keynote preferences > General > For new documents; select use theme > change theme

  • Any way to create a PDF with an image field or insert an image?

    Hi. I'm using CS3 with Acrobat 8.1 Pro on a Mac. We're trying to create a one-page PDF that we'll save and users on a PC can open up and add text fields to, as well as an area where they can insert an image file (their logo). The source file is created in Illustrator. Would we have to create a document through Acrobat with these fields available to them in their version of Acrobat or Reader (where they can add their own content), or is there another way? Not sure how to best go about it, if it's at all possible. Thanks.

    dromanellTUTOR wrote:
    Hi. I'm using CS3 with Acrobat 8.1 Pro on a Mac. We're trying to create a one-page PDF that we'll save and users on a PC can open up and add text fields to, as well as an area where they can insert an image file (their logo). The source file is created in Illustrator. Would we have to create a document through Acrobat with these fields available to them in their version of Acrobat or Reader (where they can add their own content), or is there another way? Not sure how to best go about it, if it's at all possible. Thanks.
    I don't think there is any particular requirement for Content although, you will have to play with the size of the fields to accomodate the size of the logo. if you want to send out over a web page then have them download, and email.
    you will have to go to advanced menu and choose Extend Features in Reader. this will allow the item to be downloaded, filled out, saved and emailed.
    NOTE: There is a limitation of no more than 500  returned pdfs.
    Adobe has special service that allows you to do this unlimited however; It cost about the same as a Lincoln Towne Car fully loaded, per year.  If your a Fortune 500 company its peanuts. But for the rest of the world its out of range.
    I guess the reson its so expensive, is that its not used that much. on the other hand, if they would get price down to 250-500 bucks per year, everyone could use it.
    However; this limited rights thing they have come up with is good for Non-profits and small businesses that just need something on a small scale.

  • How do I create a portfolio with rotating images?

    I'm new to web design and I'm creating my first website for my graphic design business.  I'm using CS4.  I want to have a portfolio page so that one sample of work will be displayed at a time (logos, brochures, etc.), and there will be a left and right arrow (button) to navigate through several design samples.  I also want to be able to click on the small image and have it open up larger in a separate window.  Can someone explain the best way to do this?

    LNgraphics wrote:
    I'm following the advice of an associate who is a web designer ... he said to create the site in Fireworks and export it into Dreamweaver.  I'm just not sure how to do the portfolio samples.
    Your associate has given you bad advice. Even if you wanted to do a simple HTML site, exporting a design from Fireworks to import into Dreamweaver is not the best workflow. Fireworks is a graphics application. The functionality to export HTML is intended for prototypes. The HTML you get is fragile and very difficult to maintain. If you export CSS markup, then you will still need to know HTML and CSS in order to continue the development of your design in Dreamweaver. You are far better off using Firworks to produce first a layout/mockup of your design, then the images needed for the site. From there, you should develop the site - from scratch - in Dreamweaver.
    That said, neither Fireworks nor Dreamweaver have the ability to produce the functionality you describe with a few clicks of drop down menus. What you describe needs some kind of advanced coding. Fireworks does not have anything like it.
    From here, then, I recommend you look into pre-built photo galleries, and see if there isn't one that will work well enough for you. I've used Lightbox 2 (JavaScript) and SimpleViewer (Flash). They both have pros and cons, but both are quite easy to implement (especially SimpleViewer).
    Use your favorite search engine to look for these two phrases:
    javascript photo gallery
    flash photo gallery

  • Using Pages with iOS. How do I reduce image file size when I create a document with embedded images?

    Hi,
    I have created an annual family news letter in Pages on my iPad which incorporates pictures of events, holidays, occasions etc etc. I've then gone to covert it to pdf with the intention of sharing it via email but get a warning message about the resulting file size (in this case 16Mb).
    Is there any way of reducing the file size - which is obviously being driven by the images?  The pics are being pulled in from the iPad photo library.
    Thanks Mike

    (1) you are asking about Pages for iOS in a forum dedicated to Pages for OSX.
    Most of us aren't using Pages for iOS so it would be more efficient to ask in the forum dedicated to iWork for iOS (at this time this discussion area isn't divided in three areas).
    https://discussions.apple.com/community/app_store/iwork_for_ios
    (2) As you understood why your file is huge, the answer is simple : reduce the size of your picture files before inserting them in Pages documents.
    Drop the unneeded areas, reduce the resolution in tools dedicated to image processing before inserting them.
    Yvan KOENIG (VALLAURIS, France) mercredi 21 décembre 2011 18:32:19
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • DW to create Word sigs with embedded images?

    This may be a bit off topic, but I've tried in many other
    places....
    Microsoft Word can be such crap. I simply wanted to create an
    email sig with an embedded graphic, but Word screws up in wonderful
    ways.
    I need a very simple html file with some formatted text and
    en embedded graphic, so I thought I'd use DW (I use 2004). What I
    don't understand is stuff about CID's. When you use Word as an html
    editor for Outlook, if things work OK then you can embed a graphic,
    and the html will point to an image source as a CID which I guess
    means the data is embedded in the mime stream. Can I accomplish
    this in DW? Whenever I try my image source points to a local file
    which is obviously no good. I don't want it pointing to an image on
    my server either. Any clues??
    Thanks
    James

    Posted by mistake to this forum - I'll repost into General.
    Soz James.

  • Create a PDF with multiple images per page

    So this seems really simple, but i cannot figure it out... i am creating a PDF from 30 JPGs and rather than having an image on each page in the PDF I would like to set it up so that there are 6 images per page... any thoughts .. thanks in advance
    cheers
    matt

    Once you have the PDF with a single image per page, print it out to a new PDF with 6 pages per page.
    Either that, or use an authoring application like Word or InDesign.

  • Is Indesign suitable for creating a directory with anchored images?

    I have an ancient eight-page Quark document (originally created in 3.5, now in 8.5) that contains over 200 3cm adverts created in other applications called in as images anchored into text. This means that each month I can add or remove entries and the rest flows round in linked text boxes.
    It also means that Quark quits every few minutes and the job is now virtually impossible to complete.
    I am considering recreating the whole thing in Indesign but before I do, I would like to hear from anyone doing the same type of thing:
    How stable is Indesign for this type of job? How does it cope with over 200 images (pdfs, eps, tiffs, jpgs whatever) anchored as text? Is there a format for images that Indesign prefers to handle? I imagine it's pretty intensive to process as each advert also contains an image or two and fonts of its own. I'd rather keep the adverts as vector files as the text is so tiny – even though I know that resaving the lot in Photoshop would probably help no end (removing font problems, embedded images etc etc).
    Any suggestions, feedback etc gratefully received.
    thanks

    I'd rather keep the adverts as vector files as the text is so tiny – even though I know that resaving the lot in Photoshop would probably help no end (removing font problems, embedded images etc etc).
    It shouldn't be a problem unless the Quark issue comes over to ID (something like a corrupt font). As long as you link and don't embed or paste the vector art; images, fonts, or complex drawing won't add to the screen redraw overhead because the preview is a JPEG proxy.

  • Create one project with two images- DUHHH

    Sorry I am struggling with the learning curve.
    I want to simply create a high quality print with two photos arranged using the Book's cool sample templates.
    I have arranged the images within a Book template.
    It only takes one page and Book must be an even number of pages. How can I export the one page- or what other element of Aperture should I be using?

    Hi,
    yes, I think to remember that there is support for a single style only. If you need another one too then you create a new project.
    Frank

  • Creating a PDF with Transparent Images

    Hi,
    Here is my problem:
    I am using Acrobat 9. I design posters in another program. I print to PDF.
    I design the poster and must put a logo in it with a transparent background. Note: If the poster background is white I never have any problems.
    This poster has a pink background and hence I have to put the logo into the poster in a graphic type of gif or tiff or png to maintain transparency.
    All is fine in my design program - transparency is fine etc.
    I print to PDF (Acrobat 9.0) and the dreaded white box occurs. Note, I put an old version of the logo, one I cannot use, and it maintained its transparency fine. So this means that some gif files Acrobat 9.0 keeps transparency and some it does not.
    So, in summary, I have tried all types of file formats gif, png, tiff and all types of programs to remove the logo background and save as one of the later formats and NONE maintain the transparency in the PDF output.
    I have even tried saving the whole poster as a jpeg - but the quality was too poor to print.
    I have used Word, Photoshop, MS Photodraw, Elements etc.
    I have no idea why a gif I have from years ago works and one that I am creating now maintain their tranparency in the PDF.
    I am under a deadline and am VERY worried this will not get done.
    I am immensely grateful for any help - I have been at this for countless weeks and hours...
    Thanks,
    Elisabeth

    I am using MS Publisher and even Word 2010 for poster design and have used multiple programs (and multiple formats that support transparency)  for logo editing - removal of background - Photoshop, etc.
    I place logos, both gifs, with transparent backgrounds in a document and print PDF and one or none will show transparency - it makes no sense at all.
    Most of the time the background is a white block. It couldnt be more frustrating.
    It is a simple document/poster with just a few words of text and a logo...
    Are there settings in Acrobat 9.0 that need to be turned on that I am missing. I had no trouble with Acrobat 7 - it worked EVERY time.
    I was on  with tech support for 5 hrs and there was no knowledge of this - he just wanted to reinstall 7.0 which did not work.
    Need ideas - overprinting is on. I noticed that flattening doesnt allow me to pick transparent objects - have no ideas if I am even on the right track.
    Have read everything I can find online regarding Acrobat 9.0, PDF creation and transparent logo backgrounds.
    Sooo grateful for any help!
    Thanks,
    Elisabeth

  • How do you create a slider with linkable images?

    I have been building a web site. I'd like to have a slider with the ability to click on an image to go to another page. Anyone know how to do this using Dreamweaver CS6? Any suggestions are welcome and will be most appreciated.
    Thankyou for your help.

    To add to Nancy's suggestion, you could also take a look here: http://www.pikachoose.com/
    A very lightweight, fancy & easy-to-integrate slider with lots of cool features including auto-thumbnailing and auto-aspect ratio resize.

  • Stutter when I try to create motion effects with still images--

    Can anyone help figure out the correct workflow?  I am importing jpegs into my project re-sizing them and then manually creating the "ken burns" effect on them.  And they stutter like crazy.  I've been browsing forums for the past week and can't find a solid answer that works for me.  Thanks in advance.

    The images I'm testing today I re-sized in photoshop to be 1920x1080.  One of the images was originally 1280x853 and I re-sized it to 1920x1080.
    For my project I am storing all the video on an external G Drive.  For the still image tests I've been running, I've tried putting them on the G Drive and also just on my internal drive.  This has not changed the result.
    I've tried exporting QTs to see if they'd play back any differently and they don't.  I'm not sure what you mean by "delivery system", though.  Can you clarify?
    Thanks

  • How do I make a PDF Slideshow from Bridge CS4 with 500 images?

    Every year I go for an extended photo shooting trip. I use about 400 to 600 of the images to make a PDF slide show. This worked fine in all previous versions of Bridge, but no longer works properly in Bridge CS4. I can create PDF files with up to 329 images, but when I try to make a PDF file with more than that, the PDF file is corrupted. Sometimes, the PDF file opens, but about 10% of the image at random location are corrupted, and their thumbnails show up as white or black patches. At other times, the file does not open in Adobe Reader. I get a variety of error messages. The most common is #109.
    Just to be certain it is not caused by my images, I used 550 images I had used to make a PDF show last year with Bridge CS3. I get the same problem. The slide show created last year with 550 images in Bridge CS3 still works in Adobe Reader, ruling out the Reader a being the cause of the problem. It appears that some bug has crept into the CS4 Bridge code.
    Unfortunately, a while ago a deleted CS3 from my hard drives without making a copy of the downloaded dmg of CS3, so I can no longer re-install CS3. BTW, other than this bug, I am very happy with CS4. As a photographer, I find the improvements made in CS4 ACR stunning.
    Is there a known work-around for this bug?
    Is it likely to be fixed in an upcoming update?
    Is there a way I can download a copy of CS3 allowing me to install CS3 Bridge, or, if needed, the whole CS3 suite?
         (I still have a record of my CS3 registration code.)

    I found an answer to my own question. A work around of sorts.
    Download Photoshop Elements 6 for Macintosh. With PSE6 I made a slide show with 550 images 1920x1200, without thumbs. I ran into one problem making the slide show. My images contained 4 images which had not ben created by Photoshop and could not be included in the slide show. Opening the images in Photoshop CS4 and re-saving them still did not make then acceptable. Not a big deal. I probably could have fixed the four images by stripping all EXIF data before opening them in Photoshop. BTW, PSE6 made the slide show in demo mode.
    I hope the bug in Photoshop CS4 will be fixed in Photoshop CS5.

Maybe you are looking for

  • Trying to overlay text onto images and save them.

    What I want: I have a computer running the media in my car and I want to hook up a camera to it that'll record when the computer is running and overlay the GPS speed onto the video for later viewing. What I got: I have the following piece of code tha

  • Generating PL/SQL with invoker's rights?

    When will this functionality be available in Designer? We are currently running Designer 10g (9.0.4.3.14) and this functionality is not supported yet. We would very much like to be able to generate packages with "AUTHID CURRENT_USER" from the server

  • OSB Email Can't find wsdl for Proxy?

    Hi, OSB 11G Req: System A will invoke OSB Service and OSB should send an email. I have created a Business Service and Proxy Service for Email in OSB like:- Business Service: 1.Selected Service Type as Message Service. 2. Req Message Type as Text 3.Se

  • ITunes Library getting to big for it's britches

    My iTunes library is getting too big for the hard drive on iBook G4. My iPod is 20 GB and my hard drive is 30 GB. Has anyone else run into this problem and if so how did you solve it? As a temporary fix I dumped all unessential files and software.

  • RAID Issues - Standby Disk

    I am running a PowerMac G4 with the two disks configured as a single mirrored Raid disk. Today, the system will not boot; unable to find a disk to boot from. Restarted system from the 10.4 install CD and using the Disk Utility I have discoverd the fo