Change image and click

How can i do this: on rollover the image must change own picture, on click do another my event
On rollover image i can't click
on button can't change button image state
sorry for my english

Hello,
That is totally different from what I first understood.
A button in CP has only 3 states: up, over and down, there you can have different images (have a look in the Gallery\Buttons)
But having a different image button after hovering over it? Is that what you want? Hovering over someting is not an event that can trigger something, out of the box in Captivate. If you are willing to buy the Eventhandler widget of InfoSemantics, then perhaps you could realise this because you will have a lot more possible events to trigger an advanced action. That action will be similar to the one I described, hide and show (not necessarily a button, just an image over the button would do fine). Here is the link:
http://www.infosemantics.com.au/catalog/widgets/interactive/wdgt_event_handler_01
Perhaps I could find a workaround without that widget, but this is really the simplest way.
Lilybiri

Similar Messages

  • Changing images and folders to lower case

    I modified my Apache software so that all the URL's in my websites default to lower case before I realized that my images would also be affected. I also modified it so that underscores are changed to dashes. Thus, an image located at images/Maps/South_America.png now gets left behind when the URL defaults to images/maps/south-america.png.
    So I have two choices - 1) Figure out a way to exempt image links from the new defaults, or 2) rename all my images and the folders that contain them.
    As I haven't yet figured out how to do the former, I need to learn how to do the latter.
    So I guess we're talking about as many as three or four operations here - change all folder names to lower case, change all images names to lower case and replace underscores in folders and images with dashes.
    Can anyone tell me how to get started? I believe there are lots of tools and software programs that accomplish at least some of these, but I'd like to find out which operations, if any, Apple can do first. Ideally, I'd like to dump my entire images folder into some program and let it change everything. (I've already made a backup of my images folders, of course.)
    Thanks.

    First of all be sure the font you're using has small letters and not just caps. If it does, then click the tiny triangle at the far left of the options bar and choose Reset Tool.

  • Changing images (and text) in InDesign file to spot color.

    Hi, Im trying to create a two color job in InDesign that will be black and red. The problem I have is that our imagesetter is not separating the colors.
    I was told that the red color needs to be a spot color in InDesign for the imagesetter to know to separate the colors. Otherwise, if the colors are not set as a spot color then it sends the file as CMYK separations or grayscale separations.
    The question I have is how can I change the images (and text) in my InDesign file to be set as a spot color? Thanks in advance.

    Please re-ask your question in the ID forum:
    Mike

  • Changed image and description on xml for itunes, but has not shown up.

    I changed the image and description for iTunes, but my iTunes site does not show the changes. Any suggestions?

    Rob,
    I actually have 2 podcasts.
    S and S Show:
    iTunes url:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=173173299&s=143 441&i=9388805
    RSS url:
    http://feeds.feedburner.com/SAndSShow
    Religion, Politics & Other Stuff
    iTunes:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=170839359
    RSS:
    http://feeds.feedburner.com/ReligionPoliticsAndOtherStuff
    The description I added for the S and S Show has worked. But for some reason, the description for my other site will show up and then disappear.
    The last time this happened, the description was gone from my xml file. I added it again, it then showed up again and now its gone again. No idea why this is happening.
    Thanks again,
    Scott

  • Change Image on Click

    Hi I am using Eclipse version 3.4.2 installed with SAP widget foundation.
    I have a requirement where when I click an image it should swap to an another image and vice versa.
    Could anyone help me.

    Another option is to create your button as a movieclip, with two frames with labels to match the intent, and toggle between the frames when you click it using a variable that keeps track of the status.
    var running:Boolean = true; // assumes you start in the running mode
    btn_mc.addEventListener(MouseEvent.CLICK, toggleBtn);
    function toggleBtn(evt:MouseEvent):void {
         running ? evt.currentTarget.gotoAndStop("stopped") : evt.currentTarget.gotoAndStop("running");
         running = !running;

  • How to add selection event, change event and click event for dropdownlist for mobile applications

    Please someone help me in writng selection , click and change events for dropdownlist in flex for mobile applications . i have tried but i wasn't able to select the items in dropdown using my mouse or touch in my mobile . Please help me I am struck at this point and i am unable to get solution gfor this. Please................
    Some code for which i neederd help:
    <s:DropDownList id="ddlBranch" x="257" y="475" width="63%" height="80%"
                                    creationComplete="ddlBranch_creationCompleteHandler(event)"
                                    fontFamily="Calibri" fontSize="24"
                                    labelField="BranchName"
                                    prompt="{ddlBranch.selectedItem}"
                                    requireSelection="true"
                                    selectionColor="#7ab342">
                        <s:AsyncListView list="{getBranchResult.lastResult}"/>
                    </s:DropDownList>
    <s:DropDownList id="ddlZone" x="257" y="546" width="63%" height="80%"
                                    creationComplete="ddlZone_creationCompleteHandler(event)"
                                    fontFamily="Calibri" fontSize="24"
                                    labelField="ZoneName"
                                    prompt="{ddlZone.selectedItem}"
                                    requireSelection="true"
                                    selectionColor="#7ab342">
                        <s:AsyncListView list="{getZoneResult.lastResult}"/>
                    </s:DropDownList>
    I will get the list of Branches(first DDL) and Zones(Second DDL) from a webservice written in DOT(.)NET,  what i needded is touch events and selection events for both the dropdown lists and the data in the second DropDown List should bind based on the First Dropdown list item selected.
    Service call for binding data to DDL:
    protected function ddlBranch_creationCompleteHandler(event:FlexEvent):void
                    getBranchResult.token = loginService.getBranch();
                protected function ddlZone_creationCompleteHandler(event:FlexEvent):void
                    getZoneResult.token = loginService.getZone();
    Please help...
    Thank you.

    Therer are two ways you can assign an action to the "OnEnter"-event of your input field:
    1. in method cl_wd_input_field=>new_input_field you have the parameter:
    ON_ENTER
    You just have to assign your action name to this field and it will be called on the OnEnter-event of your InputField.
    e.g:
         lr_input_field = cl_wd_input_field=>new_input_field(
                                                 id = 'INP_MY_INPUT_FIELD'
                                                 on_enter = 'MYACTION'
    2. You can use the method SET_ON_ENTER.
    like:
         lr_input_field->set_on_enter( 'MYACTION' ).
    Just make sure, you have created and implemented this action and its handler.

  • Change images and graphic button

    hi experts
    i'd like to know, by the se80, how is possible to change the standard images of SRM 3.0 and also its standard buttons...i'd like to give to the system a "custom look".
    Thanks
    andrea

    hi,
    if you would like to change the login page, this is no longer on the template possible. Please use
    HTM_LOGIN in class CL_SRM_ICF_BASIC_LOGIN. See OSS note 778488.
    You must upload new image in se80 -> internet services -> bbpglobal into MIMES,
    then go to eg. login.html and change sap image to yours.
    (don't forget to publish services after upload)
    Check also this link:
    http://help.sap.com/saphelp_srm50/helpdata/en/60/93b74377a911d2b41c006094b92d37/frameset.htm
    BR,
    Disha.
    Do reward points for useful answers.

  • Imported images from card reader to PC. When I select an image and click on EDIT i get "serching for missing file"               missing file"

    Why are the files missing?

    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • How to open a .jpg image and edit it.

    I can't seem to figure out how to open a .jpg image or any image in Flash Professional CC. I'm quite new to this so sorry if this sounds like a stupid question. When I go to File>Open I can only see .as , .fla, .jsfl , .xsfl and .xml files. I do not have an option to be able to view .jpg or .png pictures. I would appericate if somebody could take the time and answer this for me
    Thanks

    If you want to edit a jpeg or png image, do that with a separate program such as Fireworks or Photoshop.  After you import the image into Flash you can edit the image again in these separate applications and update the image you imported into Flash via selecting the Properties option in the library menu for the image and clicking the Update button.

  • After I click system preferences to change my screensaver, it will say loading images and the cursor will be loading. How do i fix this ?

    After I click system preferences to change my screensaver, it will say loading images and the cursor will be loading. How do i fix this to be able to change my screensaver and not have my computer do this?

    Try system preferences>desktop,click desktop tab. Click the Apple folders, iPhoto, or folders. Click the pic you want on the icon, it should put the pic as your wallpaper. You can change the picture if you change picture if you click it and the time.  Unless I don't understand your question.  ATB

  • TS3276 Having trouble sending jpeg images as attachments in Mac email.....they go thru as images and PC users can't see the SAVE or QUICK LOOK boxes that Mac mail has.  One friend scrolled over the image, right clicked on it and saved as a PNG file.

    Having trouble sending jpeg images as attachments in Mac email.....they go thru as images and PC users can't see the SAVE or QUICK LOOK boxes that Mac mail has.  One friend scrolled over the image, right clicked on it and saved as a PNG file.

    Apple Mail isn't going to change the format of any of your attachments. it isn't going to corrupt them either.
    Exchange is a transport protocol and server. The issue you describe is not related to Exchange.
    There are many different versions of Microsoft Outlook in use and they all have e-mail bugs. Different versions have different bugs. Some Apple Mail hack to get around a bug in Outlook 2003 may cause the same message to be problematic in Outlook 2000. Fix them both and another issue will cause trouble in Outlook 2007. You can't fix this. Apple can't fix this. Microsoft can and has but that is irrelevant if your recipients are using older versions.
    One specific problem is that Apple Mail always sends image attachments inline, as images, not as iconized files. You can change this with Attachment Tamer. Just be aware that use of this software will break other things such as Stationery. E-mail is just a disaster. To date, no one outside of Apple has ever implemented the e-mail standards from 1993. Apple has continually changed its e-mail software to be more compatible with the de-facto standards that Netscape and Microsoft have unilaterally defined and people documented as "standards" after the fact. The e-mail messages that Apple Mail sends are 100% correct and do not violate any of the original standards from 1993 or the Microsoft/Netscape modifications. The problem is entirely bugs and limitations in various versions of Outlook.

  • Changing Images from CMYK to RGB and file size

    Hello and Thank You in advance...
    I'm new to Keynote and I created a slideshow with CMYK image and it is a certain size. When I resaved the images (same name, same location) and resaved the Keynote document, there is no change in file size. Is there a way to update the images in the slideshow?

    Keynote puts the images INSIDE the .key file.
    The best way to fix this is Control-click on a copy of your .key file and choose Show Package Contents.
    Then select your NEW images in the finder and choose COPY (I know, it sounds weird, but the finder in OS X can use the Copy option to actually copy files).
    Then click into the open .key folder and PASTE. You should get a notice that the images inside the folder already exist and do you want to replace them. Choose yes.
    Close the folder and open the .key file and see if it worked okay.

  • How to change images based on action.Even clicking changed images should ?

    how to change images based on action.
    Even clicking changed images should do respective actions.
    and while displaying only one image at a time sholud get displayed.
    I am using three images for a single column of a table in Jsp.
    Any clues.
    Any link for any good javascript html jsp site where i can find some good solution.
    vijendra

    In broad way if i say i have multiple situations in mutiple tables where i need such a logic to operate in for all tables.
    lets say in first time load of page by default one image will be displayed (one with sorted order for first column rest all non sorted)Now after every click to any image respective sort should get called.along with all images should get changed.Here with every function one/two images will get effect at least.
    As in first if i say sort by desc then this image will change rest all will remain in unsort form.
    when i move to other column and click on new image the previos will convert to unsort and new one will convert to sort by ascending. rest all will be in unsort form as it is.
    Now it seems like same logic is required with two three conditions.
    even for everyaction different parametrs has to be passed at differnt situations.
    Any good idea if someone can suggest.
    I will be very greatful for him.
    thanks
    vijendra

  • I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes.   I hav

    I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes. I have viewed some videos and read numerous articles but haven't found the one to help me. Please point me in the best direction. Thank you Vincent TC

    For the sake of clarity and to save people time, Todd is asking about the behaviour of the Patch tool when using it to repair the area next to the young lad's head.  Todd gets a blurred dark tone pretty much regardless of the options he uses.
    IMO that's what I would expect to happen because of the close proximity of the other image elements i.e. the lad's neck and the strong lines of his shirt.  I would not choose to use the Patch tool in this situation.  Content Aware Fill makes a better stab at it. 

  • I'm using iphone 5 but its camera is not properly working. all the images i'm clicking are of dimension 600X800 and the size of the image is just 60-70 kb. now please tell me how to increase the dimension of images and its size.

    i'm using iphone 5 but its camera is not properly working. all the images i'm clicking are of dimension 600X800 and the size of the image is just 60-70 kb. now please tell me how to increase the dimension of images and its size.

    ''rojere [[#question-1055991|said]]''
    <blockquote>
    i try to keep my thumb palms off the mouse pad when i am typing but every now and then my screen resizes larger or smaller until i take my left palm off the keyboard base its only when my left palm is resting on the base next to the touch pad. i type pretty fast so it gets annoying and yes it also jumps screens or reverts back to previous message and i have to choose ctrl z to undo and get back to my message i was typing... it also switches tabs on me as well... not sure why my palm being on the left of the keypad on the base should effect anything but it does after a while. and i have to stop what i am doing...and go to the firefox menu and change the screen size back down to 100% sometimes it goes up to 200-300 other times it goes down to 70-80% i find it annoying i i wish there was a way to turn off the screen resize in the setup panel. if its just left to be 100% i am happy with that... i don't need it to be bigger or smaller... there should be a way to LOCK it down... i understand that there are people out there with eye problems and needs to have the screen size increase using the + or - but there should be a lock so it just stays no matter what is happening on my keypad or touch pad or base of the pad... that screen size will not increase or decrease. unless i turn off the lock... perhaps this is something they can implement in the next version or do a quick update of the browser
    </blockquote>
    sorry that is all greek to me thanks for attempting to explain what you were trying to explain sorry i just not tech person to be able to understand or where to begin ... have good day and thanks for again trying

Maybe you are looking for

  • Can you use two different iTunes accounts in Apple TV

    My wife and I have our own iTunes accounts which we use on our separate iPhones, but on the same Macbook. Can we use these separate accounts on Apple TV. Not at the same time of course. Thanks

  • How do I get thunderbird to leave email copies on my email server

    I WANT to keep a copy of the emails on my server and I have set my account to leave copies until I delete them but it is still pulling them off. We use GoDaddy POP setting. This worked fine previously on Outlook. I want to keep copies as my email is

  • HT4623 ios 6.1.3 problem restart

    ios 6.1.3 yukledim telefonum siyal gelince kapanior bazen tlf acılıo biri arayınca kapanior bana acilen yardım edin numaram 0533 885 08 09

  • Sql text

    Hi all, i checked from sid,serial#,sql_id from gv$session_longops where time_remaining!=0; i would like to check the complete sql_text that is executing. I have tried from select sql_fulltext from gv$sql; but i can't able to see complete sql command.

  • AE CS5 crashes on startup

    I have had this problem since I decided to start learning the app. Its been over a month and I forget how many calls to video tech support. Was told last week its a wide spread issue with fonts. I was directed to remove AdobeFnt.lst files to no avail