Hello Kylie, You CAN do anything with a "rollover". However, if you are using higher level tools to generate the rollover (such as Dreamweaver) then you may find you have to hack around inside what it has generated before you will be able to do what you want to do. Then the problem will be that Dreamweaver may go and overwrite all your hard work if you make another change within the tool itself.
Rollovers are simply a pair of event traps on the onmouseover and onmouseout attributes for the particular thing you want to control. This means you can write your own javascript to do as much (or as little) as you like. I am guessing what you need is a custom solution written along those lines. Your rollover code (onmouseover) needs to update two parts of the screen and your rollout code (onmouseout) needs to clean that up (ie. replace what was there - or just clear it out). When replacing stuff you will obviously need to remember what was originally there - you can do that in your rollover code as well. If you are not familiar with Javascript then you may need to find someone who can do that for you. I am not aware of any "add in" tools that provide that sort of flexibility. Then again, I deliberately avoid them because I have always found I am working around them. So there may be stuff available. Gary Menzel IT Operations Brisbane -+- ABN AMRO Morgans Limited Level 29, 123 Eagle Street BRISBANE QLD 4000 PH: 07 333 44 828 FX: 07 3834 0828 [EMAIL PROTECTED] wrote on 07/10/2003 05:53:43 PM: > Hello All, > > I have a page where I'd like to show a 2 row, 2 column table, with a list of > names from my query running down the right-hand side, bottom row. This is > fine. I've also put a swap image function on each name, so that the person's > image pops up in the left-hand side, bottom row when you roll over them. > Clicking on the name takes you to a detail page on the person in question. > > My problem is that I'd like to print their job title (which is another field > of the same record in the query) in the top row of my table - also on > rollover of the name. I can achieve this with another image - if I want to > create an image for each job title - but I'd rather use straight text. > > If page code would help, please let me know. > > Cheers & thanks to anyone with a suggestion, > > Kylie Lindstrom > Web Designer > > Liberty Financial > Telephone (61 3) 8635 8803 > Facsimile (61 3) 8635 9988 > Website www.liberty.com.au > > --- > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > To unsubscribe send a blank email to [EMAIL PROTECTED] > > MX Downunder AsiaPac DevCon - http://mxdu.com/ **************************************************************************** If this communication is not intended for you and you are not an authorised recipient of this email you are prohibited by law from dealing with or relying on the email or any file attachments. This prohibition includes reading, printing, copying, re-transmitting, disseminating, storing or in any other way dealing or acting in reliance on the information. If you have received this email in error, we request you contact ABN AMRO Morgans Limited immediately by returning the email to [EMAIL PROTECTED] and destroy the original. We will refund any reasonable costs associated with notifying ABN AMRO Morgans. This email is confidential and may contain privileged client information. ABN AMRO Morgans has taken reasonable steps to ensure the accuracy and integrity of all its communications, including electronic communications, but accepts no liability for materials transmitted. Materials may also be transmitted without the knowledge of ABN AMRO Morgans. ABN AMRO Morgans Limited its directors and employees do not accept liability for the results of any actions taken or not on the basis of the information in this report. ABN AMRO Morgans Limited and its associates hold or may hold securities in the companies/trusts mentioned herein. Any recommendation is made on the basis of our research of the investment and may not suit the specific requirements of clients. Assessments of suitability to an individual's portfolio can only be made after an examination of the particular client's investments, financial circumstances and requirements. **************************************************************************** --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
