How to get a rollover in 1 spot to show in another?

Hello guys, I haven't used dreamweaver since 2001 and even back then I wasn't that great at it.
I used joomla to build my church webiste, but I had a photoshop person make a index page for me and the concept it because the church has 3 locations, at the bottom you have the "Visit" link and what I would like to do is when you hover over to press visit, in the middle of the page the church image will show up and i'm not sure how to do that in dreamweaver.
I'm using DW CS6
Under each church address I'm going to add a jpg there with the word "Visit" and when the member hover over the word. where it has 1, 2 and 3 depending on which visit button the member press the church image will show on top.
Thanks for any help anyone can give me.

That would be a "disjointed rollover"
http://dreamweaver.wonderhowto.com/how-to/create-disjointed-rollovers-dreamweaver-1049/
Here's a couple videos:
http://www.youtube.com/watch?v=pBFofd8kUhI
http://dreamweaver.wonderhowto.com/how-to/create-disjointed-rollovers-dreamweaver-1049/

Similar Messages

  • How to get flagged messages in to tasks or alternatively view another users to do list.

    If someone could just help me out I would be extremely appreciative.
    2 of us work in one mail box together called admin. when one of us is away we like to use the flags to create follow ups for each other on certain email items.
    Firstly, I can only see my main accounts to do list
    Secondly, when I flag a contact / message / anything in fact, in any mailbox it only appears in their respective to do lists and not in their tasks. Thus I cannot see what I have flagged for them at a glance as I can not find a way to view other peoples
    to do list. i.e. neither of us can see any of the flags in the shared mailbox we use (admin) unless we log in under a different profile, which is troublesome as it takes way to long to switch back and forth.
    I presently use colour categories to delegate who is currently in charge of answering certain emails and use custom flags to note what we are waiting for in particular to a certain email and then mark a tick when it has been dealt with. Simple system but
    not currently working in full due to the follow up flags not appearing in tasks.
    This also affects my task synching on my mobile where once again it only shows what is in tasks... i.e stuff I have physically typed in outlook rather than flagged content; mails, contacts etc.
    Any ideas how to get the follow up flags appearing in tasks or an ability to see other peoples to do lists... the first is more preferable but I will take what I can.
    Kindest Regards
    Woody

    Just add the 'admin' mailbox as additional account in Outlook, as opposed to additional mailbox (i.e. don't add it from Accounts Settings -> More settings -> Advanced, but from File -> Add account instead).
    It will then show flagged items and tasks from all accounts in the 'To-do' list.

  • How to get the right format if I copy data off another source....

    IWorks '08
    I have a data source that I want to copy to Numbers and it posts it all in the first row, when I paste it. (Excel will automatically format it correctly). I've tried a number of different things and can't figure out how to get the data to post across the page. Can Numbers even do this?

    Welcome to Apple Discussions
    Could you possibly have the insertion cursor blinking in the cell rather than just having a cell selected?
    If the cursor is blinking in the cell, Numbers "thinks" you want to paste all of the content in that one cell. By just selecting the cell, the data will be separated if Numbers "sees" the separations. This used to be a problem, particularly with data copied from a web page in Safari, but is mostly fixed in Numbers '09.

  • How to get the info relevant to spot the users' cursors are pointing at?

    Dear all,
    Anybody knows how to write a graphic plotting code such that when users move their cursors on the plot, they can get the information relevant to the spot their cursors are pointing to? Thanks in advance.
    -MY

    add.MouseListener(new mouseAdapter(){
    int x = getX();
    int y = getY();
    or something pretty similar ... do a search for "mouseAdapter", you'll find lots of working code samples.

  • How to get the brightness and volume icon to show one the screen?

    Whenever the volume and brightness buttons are pressed, the icons don't pop up on the screen to show the change. How can i get it to work again?

    Cynthia ...
    Try restarting your Mac then try again.

  • I figured out how to get CD's from iTunes library to show up in iTunes Match!

    On your iPad, iPhone, or iPod, go to Settings>iTunes & App Store>iTunes Match (turn on iTunes Match).  Wow, how wonderfully it works when you figure out what to do!!
    I can't believe that this answer doesn't appear in the help section, since getting ALL of music, including CD's, to sync with devices appears to be a HUGE problem. 

    The iPhone does not sync iCal todo items. It syncs iCal events only.
    I'm hopeful that a future version of Calendar supports this feature. Right now the only way to manage todo lists is by using a webapp (unless you're adventurous and are willing to try an unauthorized solution).

  • I've just changed servers for my email and have automatically installed it on to Thunderbird but can't work out how to get the Sent, Junk, Trash boxes to show?

    All that's showing is my Inbox and a Deleted box under it. I don't have a Sent, Drafts or Archive icons showing and when I send emails they go but they don't save to either Sent or Drafts.
    How do I get these boxes please?
    Kim

    Note; if you did not get a copy of the emails off the old server into your Local Folders and you move away from the old server to a new server, you will not have any access to those emails on the old server.

  • How to get the value from one Popup lov column to another popup lov column

    Hi,
    I am new to oracle apex development and having the below issue.
    In my application, there is a tabular form with 15 columns ( c1.. c15).
    I have to populate the value of column C5 based on the selected(from popup lov) value of column C3, tried to use onchange, but didn't help much.
    Any help please.
    Thanks and Regards,

    Oh boy, this is a fun one.
    onchange should work theoretically (in this example, assume that f05 is the target column that should be set and "this" is the source item whose value is to be transferred to f05 on the same row (row 2)):
    onchange=$s('f05_0002',$v(this));
    BUT the catch is of course that needs to be different for every row (can't hardcode the '2'), so you need something to dynamically create the row number component.
    I wrote this for an app I'm working on that uses master-detail forms heavily (I also wrote a lot more code to read the fmap array that is in v4 so that I can reference my cells via their column name and not the numeric position (so "f05 can be determined w/o hard coding), insulating against columns moving around, columns being made display-only etc. but I won't bore you with that here unless you really need to know).
    function getRow(pObj)
    { //Pass in an object reference to a tabular form cell and get back an integer
      //derived from the object ID.
      var vRow=pObj.id.substr(pObj.id.indexOf("_")+1);
      if (isNaN(vRow))
        return (null);
      return (parseInt(vRow,10));
    function formatRow(pRow)
    { //Pass in an integer and it'll be returned as the tabular form cell ID suffix
      //(e.g.: pass in 1 and get back string "_0001").
      //Used in building ID references to tabular form cells.
      if((isThingEmpty(pRow)) || (isNaN(pRow)))
        return(null);
      var vRow=pRow.toString();
      while(vRow.length<4)
        vRow="0"+vRow;
      return("_"+vRow);
    }Therefore:
    onchange=$s('f05_'+formatRow(getRow(this)),$v(this));
    So in essence, pass in "this" which will be a reference to the current item, largely to determine what row we're on. getRow will return 1, 2, 3, etc. formatRow will take that and return 0001, 0002, 0003, etc. Once that is done, it'll concatenate with the f05 and f04 to refer to the correct columns (determining f05, f04, etc. dynamically is another matter if you really need to but I didn't want to complicate this answer too much at once).
    Note: above I also use a isThingEmpty() function that I wrote. It does nothing other than check the item for an empty string, if the item is null, etc. Just do your own evaluation of empty-string, no-value, etc. there.
    It would indeed be nice though if Apex had a better way to delclaratively access the tabular form items though. Despite all the v4 enhancements, tabular forms were not entirely upgraded to the same full functionality of page items.

  • How to get your pictures and contacts from one device to another

    hey guys I just bought an iphone 5s and I wanted to transfer all my photos and contacts from my old iphone which was a 4s to my 5s. when I tried to do it first time a message appeared on my computer and said that it couldn't transfer anything because the software on my iphone 4s was too old. I updated everything and I tried to restore the backup, but instead of restoring it from my most recent backup it restored it from a backup that happened about a year ago. So i need to know how to restore a backup from my iphone 4s and transfer it to my 5s

    The following has instructions for transferring to a new iPhone via either iCloud or iTunes: Transfer content from an iPhone, iPad, or iPod touch to a new device - Apple Support

  • How to get video file and iTunes Extra to show as one file in iTunes?

    When I purchase a movie in iTunes with iTunes Extras, after the download is finished in the "Movies" and "Genres" view they appear as one file. You click on the cover, it opens, shows the "Play iTunes Extra" button as well as a small Play arrow button next to the title to play the movie directly. Only in "List" view do they appear as separate files.
    How can I achieve that for my own iTunes extra? I tried giving the .ite the same XID as the movie file but that didn't work, they continue to appear as separate files in iTunes and the little play button when expanding the iTunes Extra doesn't work obviously. Anyone can tell me how this is done?

    Ok, I finally figured it out... there is 2 files that play a critical role in this
    first is manifest.xml
    in this file ensure that the library_item type string references the xid for your video file, and it has to be a proper xid. The iAd Producer manual explains how to create one if it does
    example:
    <library_item type="video" local_id="feature" xid="TEST:uuid:C7AE7CED-3F60-4C08-AA01-E3F9647B95CC" name="Your Movie"/>
    second file and even more critical is iTunesMetadata.plist. There is a couple of strings in there that lace the iTunes Extra to the film and vice versa
    <key>itemId</key>
    <integer>987654321</integer>
    <key>itemName</key>
    <string>Your Movie - iTunes Extras</string>
    The first is a unique 9 digit number that identifies your iTunes Extra file, the second is the name of the file that should follow the convention "Your Movie Title - iTunes Extras"
    <key>playlistId</key>
    <integer>123456789</integer>
    <key>playlistName</key>
    <string>Your Movie</string>
    This is what ties it back to the movie file, we will come back to it later where in the movie MetaData you need to place this 9 digit string
    <key>xid</key>
    <string>TEST:uuid:C7AE7CED-3F60-4C08-AA01-E3F9647B95CC_ITUNES_EXTRAS</string>
    This is the convention in how to properly xid your iTunes Extra, it is your movie's XID with "_ITUNES_EXTRAS" added to the end of it
    <key>Name File</key>
    <string>Your Movie - iTunes Extras.ite</string>
    <key>associated-adam-ids</key>
    <array>
    <integer>123456789</integer>
    The first is self explanatory but the second is again this 9 digit number that you will need to place into the meta data of your movie. It is what will make iTunes lace the two files together
    <key>xid-asset-mapping</key>
    <dict>
    <key>TEST:uuid:C7AE7CED-3F60-4C08-AA01-E3F9647B95CC</key>
    <array>
    <integer>123456789</integer>
    </array>
    <key>TEST:uuid:C7AE7CED-3F60-4C08-AA01-E3F9647B95CC_ITUNES_EXTRAS</key>
    <array>
    <integer>987654321</integer>
    </array>
    </dict>
    This is the last critical piece, it laces the two files tigthly together. Now the 9 digit number counting down from 9 is part of the unique ID of the iTunes Extra, the 9 digit number counting up from 1 needs to be put into the metadata of your movie. The annotation type for this is "contentID".
    That's pretty much it. If you did it right your files will now appear as one file in cover view just like a movie bought in the store.
    The easiest to do this right is to grab the manifest.xml and iTunesMetadata.plist from an iTunes store movie and copy paste and edit it for your purposes, which is what I did.
    Cheers everyone!

  • How to get the data from one table and insert into another table

    Hi,
    We have requirement to build OA page with the data needs to be populated from one table and on save data into another table.
    For the above requirement what the best way to implement in OAF.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    Thanks

    You can achieve this in many different ways, one is
    1. Create another VO based on the EO which is based on the dest table.
    2. At save, copy the contents of the source VO into the dest VO (see copy routine in dev guide).
    3. commiting the transaction will push the data into the dest table on which the dest VO is based.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    if by table you mean a DB table, then no, you can have a VO based on multiple EOs which will do DMLs accordingly.Thanks
    Tapash

  • Home Sharing - how to get music files to transfer from one computer to another...

    I have two computers in my home authorised for Home Sharing - I have no problems locating the other library on either of my computers. However, when I am on iTunes in Computer A and I click onto Computer B's music library (so that I can transfer music file to Computer A) I am unable to move Computer B's music into Computer A. I have both iTunes open on each computer and ther are both using the same Wifi connection.
    In iTunes Help, it says:
         - select the music files that I want to share into Computer A. (this bit I can do).
         - in the 'show' menu at the bottom of the iTunes window, select 'items not in my library'. This is where I run into trouble - there does not appear to be any such menu!
         - select items I wish to import, then click on 'import'. - again, no such button appears to exist!
    I have updated my iTunes software to the latest version available on both computers. This is very frustrating for something that should be quite simple - I would very much appreciate any suggestions or solutions...

    Hi arastis10,
    If you are having issues transfering songs between computers set up for Home Sharing, you may find the following articles helpful:
    Apple Support: Understanding Home Sharing
    http://support.apple.com/kb/HT3819
    With Home Sharing, you can stream music and video from one authorized computer to another, or simply drag music between computer libraries. You can also choose to have iTunes automatically import purchases you make on any of your Home Sharing computers to your own library. To do so, select the library and use the Settings button at the lower right of the iTunes window to check what you'd like copied.
    iTunes 10 for Mac: Use Home Sharing to import items from another iTunes library
    http://support.apple.com/kb/PH986
    Cheers,
    - Brenden

  • How to get the table of value field? and can we expand the technical limits

    Dear
    I have created value field in COPA with KEA6. And now, I need the table which the value fields are saved. Yet, I have tried a lot to find it and get failure? Can any guy help me? Please tell me how to get the table of a value field.
    And another question is that, can we extend the technical limits for the number of value field for ECC6.0?
    We have a note for R.4.x Please see below:
    OSS note 160892
    You can display the length of a data record using Transaction KEA0 ('Maintain Operating Concern'). After you have navigated to the 'Characteristics Screen' or to the 'Value field Screen' choose menu path 'Extras -> Technical Limits'.
    The maximum displayed here under 'Length in bytes on the DB' is the maximum length permitted by the Dictionary. The reserve required for the release upgrade must be subtracted from this value.
    To increase the allowed number of the value fields, increase the value that is assigned to field ikcge-bas_max_cnt (FORM init_ikcge_ke USING fm_subrc, approx. line 165) in Include FKCGNF20. It specifies the number of the possible value fields. The corresponding part of the source code is attached to the note as a correction.
    David Sun
    Regards!

    how to extend the limit of value numbers? please see the original question.

  • How to get selected value from selectOneRadio ???

    Hi...i want to how to get selected value from selectOneRadio and use it in another page and in backing bean.
    Note i have about 10 selectOneRadio group in one page i want to know value of each one of them.
    Plzzzzzzzz i need help

    You have a datatable in which each row is a question, correct?
    Also in each row you have 5 possible answers that are in a radio, correct?
    So,
    You need to put in your datatable model, a question, and a list of answers (5 in yor case) and the selected one.
    So you will have a get to the question, an SelectItem[] list to populate the radios and another get/set to the selected question.
    ex:
    <h:selectOneRadio value="#{notas.selectedString}" id="rb">
    <f:selectItem itemValue="#{notas.valuesList}"/>
    </h:selectOneRadio>
    Search the web for examples like yours.

  • I got a new computer and don't know how to get music from ipod touch to itunes library

    I recently got a new computer and don't know how to get music from my ipod touch to show on my itunes library. 

    You need to transfer the iTunes folder from the old computer to the new one.
    iTunes: How to move your music to a new computer (Mac or Windows):
      http://support.apple.com/kb/HT4527

Maybe you are looking for

  • Bad Camera but Genius Bar Swapped out the iPhone

    FYI. My camera phone was not working correctly. When I would choose the camera icon, it would intermittently show a blank screen. Sometimes it would sort of work with strange green streaks on the screen. I shot a couple of pics and they were recorded

  • PSE 9 Help! My effects palette is blank! Also help installing actions..

    Maybe these two problems are related? I am new to PSE 9 but I was using 8 until now. I have great Actions that worked beautifully in PSE 8. I am trying to install them the same way for PSE 9 but I seem to be missing a whole folder. The path I take is

  • How do I create two quizzes in one project

    I have one project, which has 2 question pools of 10 & 12 questions.  Trainees have to answer 3 & 3 respectively.  Unfortunately, the quizzes are linked and mean that the whole project has to be completed before quiz results are published allowing tr

  • Disable full screen safari on iPhone

    After upgrading to iOS 7, I noticed that the toolbar disappears in safari while browsing.  I am a heavy user of the back button and the bookmarks button.  Both of them only require a single touch to use in iOS 6.  Now that the toolbar disappears, if

  • SAP 8.8 Xlreporter Error "File or Assembly Name :BlowFish_NET ,

    Hi Guys I just setup SAP 8.8 and trying to run Xlreporter, and i get this Error When it try to run a report File or Assembly Name :BlowFish_NET ,or one of its Dependancies was not found. Though the File BlowFish_NET is there in the XLReporter locatio