How do I add button states separately without Photoshop Layers?

I realize I can make a layered Photoshop file to import buttons and their states into Muse using the "Place Photoshop Button.,.."
but I would rather do them individually manually i.e. exporting each state from Photoshop as independent .png files into my assets folder, such as normalbutton.png, overbutton.png, activebutton.png, and manually importing each state?  Any ideas?

Again:
1. Choose an object.
2. Choose the state (normal, rollover, active …)
3. Klick on "Fill"
4. Choose a photo and a method to fit it into the object.
5. Repeat that for the other states.

Similar Messages

  • How would I create buttons states for MCs I am creating abstract MCs

    I am creating a generic website that would have abstract MCs that would load jpg or TXT fields for the user interface to allow for fast updates to the site. The MCs that would make up the user interface would be empty and load things into it using XML or PHP later on. How would I create button states for the user interface MCs.  I started creating a function for every MC button state but I thought there might be a more efficient way.
    would creating a array help in this case?
    and is using URLRequest the way to link to pages with in a movie well the flash movie that is the site it's self?
    /*---------------------------- THE START OF MY ACTION SCRIPT ------------------------------*/
    var waywardLogo_mc:MovieClip = new MovieClip;
    var theCollection_mc:MovieClip = new MovieClip;
    var newsPage_mc:MovieClip = new MovieClip;
    var whatthe#$@!doyouwant!?_mc:MovieClip = new MovieClip;
    /*---------------------------- onOver ------------------------------*/
    waywardLogo_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    theCollection_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    newspage_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    whatthe#$@!doyouwant!?_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    /*---------------------------- onOut ------------------------------*/
    waywardLogo_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    theCollection_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    newspage_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    whatthe#$@!doyouwant!?_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    /*---------------------------- onClick ------------------------------*/
    waywardLogo_mc.addEventListener(MouseEvent.CLICK,onClick);
    theCollection_mc.addEventListener(MouseEvent.CLICK,onClick);
    newspage_mc.addEventListener(MouseEvent.CLICK,onClick);
    whatthe#$@!doyouwant!?_mc.addEventListener(MouseEvent.CLICK,onClick);
    function onOver(event:MouseEvent):void
    event.target.alpha = .5;
    function onOut(event:MouseEvent):void
    event.target.alpha = 1;
    function onClick(event:MouseEvent):void
    event.target.URLRequest("");
    /*---------------------------- onover, onOut, onClick buttonModes ------------------------------*/
    waywardLogo_mc.buttonMode = true;
    theCollection_mc.buttonMode = true;
    newspage_mc.buttonMode = true;
    whatthe#$@!doyouwant!?_mc.buttonMode = true;

    click insert/new symbol, tick movieclip, assign a name, tick export for actionscript and in the class textfield enter a name (say ButtonClass) and click ok.
    attached to the first frame of your new movieclip, type stop() in the actions panel.  put whatever graphic you want on-stage for your button's up stage.  create another keyframe, label it "over" and put whatever graphic you want for button's over state on-stage.
    in a layer above those graphics, you'll probably want to add a dynamic textfield so each of your buttons can have different text.  assign the textfield and instance name (say tf) and extend its timeline to the last frame of your movieclip button.
    then when you want to create a button, on your timeline you can use:
    var b:ButtonClass=new ButtonClass();  // these two lines need to be entered for each button
    buttonhandlerF(b,someX,someY);
    //-------code between dotted lines only needs to be entered once no matter how many buttons you add --------------------
    function buttonhandlerF(b:ButtonClass,x:Number,y:Number){
    b.addEventListener(MouseEvent.MOUSE_OVER,overF);
    b.addEventListener(MouseEVent.MOUSE_OUT,outF);
    b.x=x
    b.y=y
    addChild(b);
    function overF(e:MouseEvent){
    e.currentTarget.gotoAndStop("over");
    function outF(e:MouseEvent){
    e.currentTarget.gotoAndStop(1);
    //-------code between dotted lines only needs to be entered once --------------------
    // you'll also want to create a click listener and listener function
    the code between the dotted lines is amenable to being added to a ButtonClass.as class file if want to expand your capabilities.

  • How can i add a line separator on Dreamweaver?

    Hi
    How can i add a line separator on Dreamweaver?
    Thanks

    Do you mean a Horizontal Rule (the <hr/> tag)?
    Click where you want it to appear and go to Insert > Horizontal Rule, or drag and drop from the Common heading of the Insert window.
    If that's not what you're talking about, could you be a bit more descriptive as to what you are trying to accomplish?

  • In mavericks, how can I add my linkedin account without adding my contacts to my mac address book?

    in mavericks, how can I add my linkedin account without adding my contacts to my mac address book?
    it seems to be a prerequisite to adding the account. any advice please?

    Welcome to the Apple Community.
    iTunes, iCloud, Messages and FaceTime are all seperate services. You could change your ID for Messages without affecting anything else. If you wish to change your ID for iCloud, you would need to save your data, please let us know if you wish to use another ID for more than messages.

  • How do I add a sky overlay in photoshop cc?

    How do I add a sky overlay in photoshop cc? I have other photoshop users tell me there is a library of open photos on the bottom of the screen (which CC DOES NOT HAVE) and this makes it easy to drag photos and then add masks for layring overlays, textures etc. Please help.

    As far as the library of images, that sounds like they are using mini bridge, but you have actually have the photos to use.  Photoshop does not supply them.  In regard to adding a sky overlay, there are tons of tutorials on this on the web, so do a search for that and find one that works well with what you want to do.

  • How can I add iCloud to mail without it choosing mobile me?

    How can I add iCloud account to mail without it choosing mobile me?

    Please always state your operating system when you have a question. Presumably you have Snow Leopard or Leopard - system too old to have heard of iCloud.
    Please follow the steps outlined in this illustrated article:
    Entering iCloud email settings manually in Snow Leopard or Leopard

  • How can I add buttons that do different things to each row of an rpt result

    Hi there,
    I'm trying to figure out how to add buttons to each row of a report. Here is the scenario:
    report query returns a set of data that needs to be "approved". The options are "Append", "Replace", or "Reject" (I want to make the results look like so:)
    Person1 today blah, blah blah... Append button Replace button Reject button
    Person2 today blah, blah, blah... Append button Replace button Reject button
    PersonA today something, blah... Append button Replace button Reject button
    and so on.
    I'd like to set up the page so that there is an append, replace, reject button for each row returned by the report. So when the "Approver" clicks on the append button, something happens for that row, etc. How does one do this? So far I can only get the buttons to show up in the region. I also thought it might be possible to somehow turn the append, replace, reject text into links that called a plsql proceedure that would handle the action, but I'm not having any success with that idea either.
    Edited by: user10361829 on Sep 29, 2009 12:10 PM

    What I've done is make my report query as follows:
    select field_a, field_b, field_c, 'Append', 'Replace', 'Reject'
    from table_x
    where field y = :PX_ID
    That gives me the words (append, replace, reject) in the report. Then I go to the report attributes section and make a link out of the columns (append, replace, reject) so far, so good.
    Next question is how to make clicking on those links activate an update action on tableN. In the column_link section there is a box marked "Request" that looks like it might be relevant because Request is a term connected to buttons, but I've no idea how to use it. Or, can one use the tabluar form element section of the report attributes page to connect the Append (pseudo column) to an action? I've looked at your example (Sam) with the delete button, but what I really need to see is the Apex menu that sets it up because there are so many levels in the interface it is not intuitive (at least for me). I know exactly what I want it to look like but I'm missing the crucial step to get there... Thanks for your help so far.
    Column link section is described below :
    Column Link     Top
    Link Text      flashlight          
         [*Append*][Icon 1][Icon 2][Icon 3][Icon 4][Icon 5]
    Link Attributes      
    Target: *"Page in this application"*     Page: *10*     
    Reset Pagination
    Request Clear Cache      
    Name     Value
    Item 1      Px_page_item flashlight *#????#*          flashlight
    Item 2      flashlight          flashlight
    Item 3      flashlight          flashlight
    URL      
    Page Checksum

  • How do i add files to itunes without it copying all of them over again

    i just recently purchased a brand new G5... i have been a PC user my whole life and have just recently made the change. I am glad that I have but i am running into some basic problems. I put all of my old mp3s on DVD and just recopyed them into this HD... i am used to using winamp.. where i have files just how i like them and i add them to a playlist and play them.. how do i add these files to itunes without having the program copy all of the files again to the ...itunesmusic directory. PLEASE HELP ME

    In iTunes go to Preferences > Advanced, there you can tell iTunes to NOT copy the music files to the iTunes Music folder while importing.
    (I'd advise you, though, to consider changing your old habits and letting iTunes manage the music files on your hard drive, that's the way iTunes was designed to work. After all, iTunes is not Winamp ...)
    Alexander.

  • How do i add buttons in the tool bar?

    Hi,
    I want to add buttons like "Load' in the tool bar.How do i do it? I am using LabView7.1
    Please help me..
    Regards
    Meenatchi

    Meenatchi wrote:
    I am creating one dialog,in that i want to add menu bar and title bar.
    See the attached VI, whose Window Appearance category is set to Top-level, from the VI Properties window.
    From this, you can go ahead customizing the menu bar to your wish.
    - Partha
    LabVIEW - Wires that catch bugs!
    Attachments:
    Top-level Application Window.vi ‏11 KB

  • How we can add buttons on report/dashboard ?

    Hi,
    I want to add buttons on my report/dashboard so that clicking on one button it should generate one report, by clicking on another button it should generate another report.All these things are to be done on single dashboard/report.
    Thanks,
    Ganesh

    Hi Ganesh,
    Just as Olaf said, we can embedded all other reports as subreports in the main report, then control its visibility toggled by some Textboxes. For more details, please refer to the following steps:
    Drag some Textboxes(Textbox1, Textbox2, Textbox3…) and some Subreports to design surface.
    Right-click one subreport to open Subreport Properties dialog box.
    Select the report name which you want to display as the subreport in the General pane.
    Select “Hide” option when the report is initially run and enable it toggled by ‘Textbox1’ item.
    In the Parameters pane, add parameters if necessary.
    Use the same method for other subreports.
    The following screenshot is for your reference:
    The following blog is for your reference:
    http://www.codeproject.com/Articles/195017/SSRS-Series-Part-II-Working-with-Subreports-DrillD
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How do I add buttons to the toolbar in Reader?

    En Adobe Reader, ¿Como puedo agregar botones a la barra de herramientas? Ya que pierdo mucho tiempo utilizando el botón derecho del mause y buscar los botones en las ventanas emergentes.
    Muchas gracias

    Hi richarddaniel1111,
    To add buttons to the toolbar, do this:
    Choose View > Show/Hide > Toolbar items.
    Choose an option from the submenu (File, Edit, Comment, and so on).
    Choose the tool that you want to add to the toolbar.
    Hope that helps!
    Best,
    Sara

  • How can i add more statements in java code dynamically...

    I have a (business works) BW process in TIBCO which has many activities including �java code�. In java code activity I have some if statements like
    if (Country.equals("USA�))
    Country code = 1
    else if(Country.equals("GERMANY�))
    Country code = 49
    the above information is coming from database. now my project is deployed and running. In future, if they add more countries in database how I can include them dynamically without changing my BW process java code activity and redeploying again. Is there any solution?
    Please advice.

    You won't reconfigure the Java application without redeploying. This is one of the reasons that including data in the code is bad.
    If you created a file which contained data like this:
    Canada <tab> 1
    USA <tab> 12
    Germany <tab> 6
    Then your program could read the file into a map. The map could be used to lookup the country code based on the name.
    In the future, you could change the file to:
    Canada <tab> 1
    USA <tab> 12
    Germany <tab> 6
    France <tab> 17
    China <tab> 2
    And the program wouldn't need to be changed. You would just need to send out the new country file.

  • How do I add buttons/links in video

    Hello,
    I am new to editing video. I am looking to add a replay link and a go to url link once my movie plays through. I am using Flash CS3 pro. If someone could give me specific directions or direct me to a tutorial instructing me how to do this I would appreciate it very much.
    Thank you.
    Paul

    create two buttons, say urlBtn and replayBtn:
    replayBtn.addEventListener(MouseEvent.CLICK,replayF);
    urlBtn.addEventListener(MouseEvent.CLICK,urlF);
    function replayF(e:Event){
    flv.seek(0);  // where flv is your flvplayback component's instance name
    flv.play();
    function urlF(e:Event){
    navigateToURL(new URLRequest("http:www.adobe.com"));

  • My old computer crashed and I lost my old library of recorded CD's and new music.  I downloaded iTunes again and found my old account info.  How do I add a new CD without deleting all of my music on my iPod?

    My old Computer crashed and I lost my old library of recorded CD's and tunes.  iTunes says I must delete everything off my iPod in order to add a new CD.  It also said I already have an account which I was able to locate.  I don't know how to get into my old account.  I think that would solve everything.  I have Windows XP.  I'd appreciate any input.

    No.
    All iTunes content on your iPod Touch should be in your iTunes library on your computer, and your iTunes library on your computer should be included with your computer's backup along with all other important data - stored on an external drive or some other external media used for backup purposes only.
    When music was purchased on a CD, if the CD was lost and you returned to the store where the CD was purchased with your receipt, were you given a replacement CD?
    The same applies here.

  • How to dynamically add button to a movie/stage?

    I am using Flex Developer and I am designing a Flash Lite app
    which uses AS2. However I cant find anyway of adding a control such
    as a button to the stage from code. Do I need to buy a tool to do
    that or can I add controls/containers from code?
    E.g. in AS3 you create the button object then do an
    addChild(button) and it adds.
    Any sample docs apprecietd..

    You would create a movie clip button and from your library
    make sure the linkage identifier is set then call a function in
    your action script to attach the button(s) to the stage, the code
    should look something like such:

Maybe you are looking for

  • Canon 40D profile shows as "Camera RGB" instead of "sRGB"

    When I open 40D files in Photoshop CS3, I get a profile warning that says "Camera RGB" Is this normal? I don't recall getting this warning before and I have the 40D set to use sRGB and photoshop working space set to "working space - sRGB IEC1966-2.1"

  • Email ID's of users

    Hi, can any body very urgently tell me the way to display the users and the email addresses of them. i.e., i have list of users and i need the email addresses of them. Is there any short cut to get the entire list other than with SU01. Thanks in adva

  • Does any one knows BAPI for FPRV?

    Hi All, i need a BAPI for Transfer Posting of Adjusted , transaction FPRV. I need to CALL bapi from my event. thank you very much

  • Problems with Photoshop CS4 installer, stops initializing at 90%

    I need help. I have been trying for the last several days to install a copy of Photoshop CS4 on a new Laptop computer with Vista 64, I purchased Photoshop CS$ about a year ago. I have installed the same software on another computer with vista 64 with

  • Sorting podcasts OUT of smart playlists

    I keep a "recently added" list but it also pulls in new podcasts, I don't see "podcast" as one of the criteria you can sort with ... how do I keep my music and podcasts separate? thanks