How do i create multiple triggers in one image?

Hi there,
I have an image which consists of multiple sections. (It's a circle with pie-pieces: see attachment)
I want every segment of the image to be a seperate trigger: when you hover or click other segments will turn gray and a text will appear.
At first i thought that it wouldn't be possible, but then i saw this website http://pmkwilliams.com/# (i know it's made with edge, i saw it in a presentation on youtube)
Can anyone help me? All the help is welcome! And a link to a tutorial would be grant.
And i want to appologise if this is asked before: i didn't know how you would call such a feature. English is not my motherlanguage...
Thanks sooo much in advance!!!
bart

Hi ResDesign, thanks again for your reply.
I just inserted a part of the code, but because i can't seem to find the way the "american map animateproject" works i find it hard to see what it is i have to do.
1: I understand that i need to create rectangles at the place i want the trigger to be: coords="217,9, 222,9,226,9,230,9"/>'+
             // for a rectangle shape use shape="rect"
2: I changed every "usmap" to my own image name.
3: But it also says '<area id="California" shape="poly" title="California region:West" Does this mean that when you hover, you'll see this text? i could delete this then?
4: I don't know what to do with the timeline. What do i set up and what keyframes do i use?
The idea was that when you click on one segment of the circle the others would go gray and a text will appear on the right.
I realise that maybe this is to difficult for me: i've never done javascript, so if you think this is too much...
Thanks in advance.
bart

Similar Messages

  • Bash script question, how do I create multiple directories on one line

    I am making a package for amavisd-new (yes I am aware that there is one in community but I can't say I like the way it is done).
    I have an install script from which I want to create multiple directories if they do not exist.
    So I want to create a directory /var/spool/amavis with subdirectories of var tmp virusmails spammassassin .
    I can't seem to be able to find a way to do this on one line.

    pelle.k wrote:
    peets wrote:Hehe because it's less typing!
    Good one!
    Also, it's by far the more dynamic method.
    If you want to get pedantic, it's also far less efficient in terms of execution time: each iteration of the loop forks a new process, whereas using a single mkdir command forks only once.  The "best" way is the curly-braces method demonstrated above by chimeric.

  • How do I create multiple prints in one order?

    I am attempting to order multiple prints but as I order one picture the system immediately send (uploads) the order. I wish to include multiple pictures in one order.
    What is the process?

    You might want to consider starting a new discussion. Since this one is marked solved, less people are likely to look at it. You can link to this one.
    Have you tried putting them in a folder and then try to upload the folder?

  • How do I create multiple TEBs with one submit button on one page in Captivate 7

    I've read other posts on this topic (which refer primarily to earlier versions of Captivate) and am still at a loss as to how to put multiple text entry boxes on a page with one submit button. Here's my scenario:
    I am creating test questions.
    Each test question has multiple text entry boxes (for numbers only).
    Student should be able to enter numbers into the textboxes in any order.
    Then there is one Submit button that should initiate validating all the text entries, and move to a scoring page (so I can test it). (What would be best is if this button not only did the above, but also submitted scores to the LMS.  But that is not my question at this time.)
    I'd like this question to be set up as a template so that I can duplicate it, be able to add or delete text boxes and change the values required in the text boxes.  
    Here is an image of a sample question page with multiple TEBs. The yellow boxes tell the student where they need to enter text:
    Any help or direction to help is appreciated!!

    I think the problem here is that Arlhoolie wants all of the different TEBs to behave as if they were part of a single interaction that submits only ONE result to the quiz.  Using multiple TEBs in Captivate means that you have multiple scored objects and therefore multiple results being submitted to the quiz.
    If you want a single Success or Failure result submitted to the quiz based on the results from multiple interactive objects then there really is no simple way to do it.  But you could try using the Infosemantics Interactive Master widget to combine all the TEBs as slave objects that report to the Master Widget, which then reports a single score to the quiz based on the results from the slave objects.
    You can learn more about the Master widget here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/interactive-master
    http://www.infosemantics.com.au/interactivemaster/help
    You can download a free trial version of the widget here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets
    One caveat you should be aware of is that this widget is not HTML5 compatible.

  • How do i creating multiple icloud accounts for one itunes account

    how do i creating multiple icloud accounts to access one itunes account?

    Perhaps you could explain a bit more what you want to do...
    iCloud accounts don't access an iTunes account.
    iTunes account is used to make purchases.

  • How do I create multiple live USBs of Operating systems to boot from on one flashdrive?

    How do I create multiple live USBs of Operating systems to boot from on one flashdrive?
    I am attempting to create multiple live USBs within one flashdrive so that i can boot various operating systems without having to buy multiple USb sticks. I am using a Mac OS X Snow Leopard 10.6.8 Operating System currently. I am using the Terminal provided by the OS.
    I would like to try Debian, Kali, Precise Puppy, and Sabayon- with one space left empty for whatever Linux OS I would like to try next. I have partitioned an 8GB flashdrive into the following sections:
    name of intended OS,     space allocated for it:
    1)Debian ........................1.32 GB
    2)Kali..............................2.61GB
    3)Precise Puppy..............163.7MB
    4)Sabayon.......................1.77GB
    5)TBD..............................2.14GB
    I have figured out how to change the .iso files of the operating systems into .img files with the following commands:
    hdiutil convert -format UDRW /path/to/input.iso -o /path/to/output.img
    a .img.dmg file is created, this is corrected in the next line of code *please note: I am a a very beginner at programming, and would greatly appreciate any help. Thank you!
    mv /path/to/output/file.img{.dmg,}
    This is where I started to get confused:
    I entered diskutil list to find the location of the partitions on my flashdrive, and this is the relevant section:
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:     FDisk_partition_scheme                        *8.0 GB     disk1
       1:                 DOS_FAT_32 DEBIAN               1.3 GB     disk1s1
       2:                 DOS_FAT_32 KALI                    2.6 GB     disk1s2
       3:                 DOS_FAT_32 PRECISE            163.7 MB   disk1s3
       4:                 DOS_FAT_32 SABAYON           1.8 GB     disk1s5
       5:                 DOS_FAT_32 TBD                     2.1 GB     disk1s6
    This is the code I attempted to use and the subsequent result:
    charles-burtons-mac-mini:~ charlesburton$ sudo dd if=/Users/charlesburton/Desktop/debian-live-7.2-i386-gnome-desktop.img of=/dev/disk1s1 bs=1m
    dd: /dev/disk1s1: Resource busy
    *at this point I went to the Disk Utility GUi and unmounted only the DEBIAN partition, now back to the terminal*
    charles-burtons-mac-mini:~ charlesburton$ sudo dd if=/Users/charlesburton/Desktop/debian-live-7.2-i386-gnome-desktop.img of=/dev/disk1s1 bs=1m
    dd: /dev/disk1s1: end of device
    1259+0 records in
    1258+1 records out
    1320005632 bytes transferred in 1011.966891 secs (1304396 bytes/sec)
    Please may someone help explain why I had a return value of +1 in my records in and how I can make it work properly.

    I would like to know the answer to this as well.  I tried renaming the 3D version by adding 3D after it, but it still not a separate movie in iTunes.
    It's putting them in the same folder.

  • How can I create multiple sales orders with reference to one contract?

    Hello Gurus,
    Can you please how can I create multiple sales orders with reference to one contract?
    thanks!
    Rakesh

    hi
    Lets consider example
    In your contract for line item 1 you have entered qty 100
    You careated sales order with 70 quantity, and now you want to creat another sales order for 30
    For this first you need to check what is your item category in contract (VA42)
    Goto VOV7
    SPRO - IMG  - Sales and distribution - Sales - Sales document item - Define item categories - Go to change mode
    Make the completion rule = B Item is completed after full quantity has been referenced

  • How can I create multiple versions of a video within the same project?

    OK...this is a probably a very basic question but I'm not sure how to word it clearly.
    How can I create multiple versions of a video within the same project? What I mean is that I have a bout 50 minutes of video and I want to make two DVDs using different clips from this original 50 minutes of footage. It would be a real pain to have to re-import the video AGAIN for the second DVD. I suppose I could drop anything I don't want to burn to DVD back into the clips pane but that would wipe out all my transitions wouldn't it? I want to save each project in their “raw” form so I can burn additional DVDs later otherwise I would just do them one at a time and not care about one of them being destroyed.
    Wow...that was a mess. Does anyone understand what the heck I’m asking? I hope so.

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • How do I create multiple calendars on my iPad?

    How do I create multiple calendars on my iPad?

    I love stealing another users posts and here is one now ....
    You don't create multiple calendars on the iPad.
    The iPad is designed to be synced with a supported application on your computer for contacts and calendar events. The contact Groups I've created with the Address Book on my Mac and the different calendars I have with iCal on my Mac are available and kept synchronized with the my iPhone's Contacts and Calendar applications, and the same applies to the iPad.
    Long story short, this is done with the supported application on your computer used for syncing contacts and calendar events.
    The same principle applies to PC users. You have to sync within iTunes from a supported calendar application on your PC.

  • Create multiple folders with one click on documents tab in BP in SAP CRM

    Hi Experts,
    I have a requirement to create multiple folders by clicking on a button in Documents tab in BP transaction in CRM. In standard process by clicking on create folder button we create folders. we want to create multiple folders with one single click ( i guess we can develop another button for that) folder name will be hard coded. Kindly let me know , how this can be achieved.

    Hi Experts,
    I have a requirement to create multiple folders by clicking on a button in Documents tab in BP transaction in CRM. In standard process by clicking on create folder button we create folders. we want to create multiple folders with one single click ( i guess we can develop another button for that) folder name will be hard coded. Kindly let me know , how this can be achieved.

  • How do I scan multiple pages into one document?

    How do I scan multiple pages into one document?
    HP Photosmart 5514-e-All-in-One Printer B111h
    Model CQ 183 A

    Hi,
    Have you tried this (using PDF format).
    Launch the scan from the HP Solution Center
    Click Change Settings.
    Select the desire Scan Shortcut, then click Save to file save options
    Make sure Create One File per scanned page... is Unchecked, Approve and perform the Scan.
    Regards,
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Address Book - Create multiple contacts at one company?

    I am using Address Book v 4.0.4 and I want to be able to create multiple contacts at one company without having to reenter the Company, Tel. and Address information each time.
    Is there a way to duplicate an address, say the basic company address, to make the process of entering multiple people at one company any faster?
    Any tips would be appreciated. Thanks, Michel
    MBP Laptop & G5 Tower   Mac OS X (10.4.9)   Address Book v 4.0.4

    I talked to Apple today and here is how you create multiple contacts at one address, company etc. without having to reenter everything.
    1) In Address Book, highlight a contact in the name list
    2) Go to the Edit Menu & COPY
    3) Go back to the Edit Menu & PASTE
    4) Make changes to the new 'duplicated' contact
    Seems easy if you know how to do it.

  • How do I create multiple photo albums?

    I was curious as to how I can create multiple photo albums using only the iPhone 4. I found out a way to creat "one" album. But I can't even change the name of it and it's not very useful if I can only create one album. I have a lot of pictures on my phone and I would like to sort them out. I use Windows 7 not a Mac. (Wish I had one though)
    Also, will the iOS 5 allow users to create photo albums using only the phone? The current OS doesn't seem to allow it.
    Thanks for your time!

    I should have fiddled with my computer more. I figured it out by creating a "Master" folder. And inside that folder contains more folders with my organized pictures. But, would still like to be able to do this all on the phone. That would make the iPhone just THAT much more simple.

  • HT5114 How can I create multiple accounts without the necessity to create multiple email addresses?  I now have 2 i-phones (mine and my wife's#, 1 i-pad #mine#, 1 i-pad mini #10 year old's#, and 1 I-pod touch #11 year old's).  I would like to maintain pur

    How can I create multiple accounts without the necessity to create multiple email addresses?  I now have 2 i-phones (mine and my wife's), 1 i-pad (mine), 1 i-pad mini (10 year old's), and 1 I-pod touch (11 year old's).  I would like to maintain purchase control, but would like to be able to have a separate account ID for each person.  Is that possible?

    Each email address can only be on one iTunes account, and all purchases are tied to the account that buys them. If you want to have separate iTunes accounts on each then you will need separate email accounts for each iTunes account

  • How do I save multiple songs as one file?

    How do I save multiple songs as one file?

    Mhoopes wrote:
    How do I save multiple songs as one file?
    There are two ways:
    1.  Put the individual song files into a folder, and then Zip the folder.  This creates a single .zip file.  (Note however, that a .zip file is not playable in a normal player: it is just a "holder" for the song files.)
    2.  Use an audio editor such as Audacity to concatenate the individual song files into a single song file.  This creates a single file can be played in a normal player such as iTunes.
    Technique #2 is the one normally used to create a continuous mix.

Maybe you are looking for

  • How do i use both ssd and hdd drives on macbook pro together

    have a mid 2012 macbook pro 15 inch. I replaced hdd drive with ssd drive and put hdd drive in optic bay. Was wondering what the best way to use both together is

  • G3 upgrade from 8.6 to 9.2.2

    Is there currently an upgrade path to take a G3 blue & white tower from System 8.6 (the system it came with) to 9.2.2? Thank you! G3 blue & white   Mac OS 8.6 or Earlier  

  • Video iChat on my iMac is not working

    Video iChat on my iMac is not working. The i chat buddies screen is up all right.  I can see my buddies' pictures on the screen.  But I can't start the video iChat.  It worked fine for a few years...suddendly it does not work???

  • Lightroom vs Capture One

    I just got a dutch Photo Mag that compared Lightroom 2 to Capture One 4. I was amazed at the conclusion Capture One won the contest, based upon image quality results. I immediately downloaded a 30 day trial and compared LR, PS cS3 and CO side by side

  • Pause button for Captivate 4

    I've done a lot of work for a customer, originally I used a shortened playbar with next/back and play/pause.  Now with issues in Captivate 4 (The playbar appears below the course instead of on top) I need to import a Pause button as I cant use the sk