Best App. to Make Buttons, etc. w/Different Looks for 'onmouseover' etc.

Hello,
I'm making a simple 6 page site using DW for a class. I want
the navagational buttons to have some flair. I can't code yet, but
am learning. I have soo many tools I don't know which to use.
Flash? PS and Image Ready? Ill. ? The site is my entire grade. The
class is on DW, which I can do, just wanted to have different
appearances for onmouseover, onmousedown and other.
Is Flash the best app. for this?
TIA

> Is Flash the best app. for this?
Not in the real world, no. The best app would be a graphics
editor, whether
it be Microsoft Paint, Photoshop Elements, Fireworks,
Photoshop, Xara, etc.
Make the button graphics in your graphics editor, and place
them on the page
in DW.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Lino 100" <[email protected]> wrote in
message
news:fbh18n$aul$[email protected]..
> Hello,
>
> I'm making a simple 6 page site using DW for a class. I
want the
> navagational
> buttons to have some flair. I can't code yet, but am
learning. I have soo
> many
> tools I don't know which to use. Flash? PS and Image
Ready? Ill. ? The
> site
> is my entire grade. The class is on DW, which I can do,
just wanted to
> have
> different appearances for onmouseover, onmousedown and
other.
>
> Is Flash the best app. for this?
>
> TIA
>

Similar Messages

  • What is the best way to make a program fit different monitor resoultions?

    In our lab all our test stations have 1280x1024 resoultion monitors. In the "other lab" all the test station monitors are 1440x900 resoultion.
    Now I am tasked with making my programs run on the test stations in the other lab. I have tried setting the options "maintain proportions of windows for different monitor resoultions" and "Scale all object on front panel as the windows resizes" and of course neither one of these options really does what I would expect it to do.
    What is the best way to make programs fit different monitor resoultions?

    J-M wrote:
    I resize the Front Panel when the program start to fit the monitor resolution.  After that, I use the "SBE_Determine If Screen Resized.vi" from TomBrass (http://forums.ni.com/t5/LabVIEW/Resizing-controls-on-a-tab-control-within-a-pane/td-p/1520244 ).  This vi is very useful if you don't want to monopolize the CPU with the "Panel Resize" event.
    I don't like this function for a couple reasons.  First for the example you don't need any custom code to handle the window resizing, just use a couple splitters.  Even if you did need to handle the resize, you only resize after the mouse is up after the resize which is not how normal Windows programs work they resize as the mouse moves.  So I modified the VI to resize objects as you resize the window.  Then because doing this can generate 100 events very quickly, I use a boolean in a shift register to make sure that we only handle the resize event if there is no new resize events after 0ms.  This essentially makes a lossy queue and handles the last resize event.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.
    Attachments:
    Resizable_Graph.vi ‏22 KB

  • How to make buttons on scroll bar larger for touchscreen use...

    I need to enlarge the buttons on the LabVIEW scrollbar for use with a touchscreen.

    Hi,
    Is it a touch panel on which you will be using the LabVIEW Touch Panel Module (Windows CE)?  If it is on a Windows CE machine, you cannot create custom controls (actually you can, but the changes will not appear when you deploy the actual application, since the module uses the native Windows CE controls).  If you are deploying to a Windows XP machine, you can can create custom controls in normal LabVIEW like smercurio_fc said.
    Here is the relevant section in the help file: http://zone.ni.com/reference/en-XX/help/371361E-01/lvconcepts/custom_cont_ind_type/
    Message Edited by Jeremy_B on 02-17-2009 09:58 AM
    Regards,
    Jeremy_B
    Applications Engineer
    National Instruments

  • Flex 4.1 Best way to make button in Custom ItemRenderer to call function in parent

    When I push the button in the ItemRenderer I would like to call a function that is in the parent that contains the List with the ItemRenderer. Also that function should be able to get the data of that ItemRenderer.
    So at the moment I see only as a solution a custom event with the data of the ItemRenderer.
    Is it possible if for example I set a MouseEvent listener on the list and detect if that button is clicked on to call that function - I managed to do that so far as you probably figured, but now I can't get in which item was that button so I can get it's data. Going parent parent parent of that button to reach the renderer to get it's data seems kinda not the best solution.
    Any ideas ?

    Another Approach would be to pass the parent application as parameter to the item.
    ItemRenderer:
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        autoDrawBackground="true">
         <fx:Script>
              <![CDATA[
                   [Bindable] public var _parent:ParentCall;  // or just _parent:*
              ]]>
         </fx:Script>
         <s:Label text="{data}"/>
         <s:Button x="117" y="1" label="Trigger Parent Function" click="{_parent.doit()}"/>
    </s:ItemRenderer>
    mainApplication:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                      creationComplete="application1_creationCompleteHandler(event)"
                      >
         <fx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   import mx.events.FlexEvent;
                   [Bindable] private var itemRendererFactory:ClassFactory;
                   protected function application1_creationCompleteHandler(event:FlexEvent):void
                        itemRendererFactory = new ClassFactory(mytem);
                        itemRendererFactory.properties = { _parent:this};
                        list.itemRenderer = itemRendererFactory;
                   public function doit():void
                        Alert.show('yeah!');
              ]]>
         </fx:Script>
         <s:List id='list'  >
              <s:dataProvider>
              <s:ArrayCollection>
                   <fx:String>item 1</fx:String>
                   <fx:String>item 1</fx:String>
              </s:ArrayCollection>
              </s:dataProvider>
         </s:List>
    </s:Application>

  • What is the best app to make a class list roster?

    Student
    Address
    Phone
    E-mail
    Parents

    If you are talking about an app for the iPod Touch, then you are best asking this question in the Touch forum.
    http://discussions.apple.com/forum.jspa?forumID=1215

  • App Limitations, Interactions, Buttons, etc.

    Let me start by saying I am impressed with what the toolset has accomplished so far.
    However, I am finding it hard to do what I see as fairly innocuous tasks.
    I would like to have a button on the stage that when pressed shows a "lightbox" gallery with a close button.
    When the close button is pressed the lightbox is removed from view and the original button is again visible.
    I want to use this lightbox to display video or a gallery or scrollable text.
    I am trying to make the jump from actual Flash Development to InDesign vernacular. I am wanting to understand the Multi-State Objects and Button usage.
    If you can, draw lines of similarity to Flash terms.
    Are Multi-State Objects similar to Movie Clips in Flash?
    Can buttons be used as hotspots? (Similar to how you could use an empty button in Flash.)
    Can I nest buttons inside of MSOs?
    Can I make a page in an article NOT visible in the table of contents view?
    I will chalk up the lack of detailed information/documentation to be because of the recent enhancements and updates, yes?
    Anything will help. Thanks in advance.

    ROMANOV, thanks for the quick answers...
    *2 is a state in an MSO with a hotspot over the yellow object, correct?*
    correct!
    So, I would create an MSO with 2 states. One state shows the image with the hotspot covering the appropriate area. Then State two would be the text showing with the close button active. The first state would be the default and when you click on the hotspot it goes to State 2. Then on state 2, the button (that looks like a close button) would be coded with a go to State 1. Correct?
    *Can you use an intermediate window to play video?*
    you can use inline (not a fullscreen video), *intermediate window to show title and descriptive copy* may be a part of your own design
    So this would be another MSO, with two states. The first state is normal with a hotspot to jump to state 2 that would show the title and descriptive copy. Can I put the video in the second state? or do i just make it look like a video player, but add a hotspot on top of it to trigger the video.

  • How do you make a SpryMenuBar a different color for each page?

    Hey everyone. I'm new to web design and dreamweaver is definitly kicking my butt. Anyway, I'm trying to create a simple website for a foundation and I want to make each page have a different color Sprymenubar to match the color theme of the different pages. The site will only have about 6 color themes max so this shouldn't be a huge undertaking. The trouble I'm having is I have created the home page (the color green) and right now I'm working on the second page (the color blue). When I added a new sprymenubar and changed the CSS Rule to make the color of the menu blue and the hover color light blue it then changes the color of the menu on the home page from Green to Blue. How annoying! I even tried starting from scratch and inserting another horizontal sprymenubar but I can't seem to make another horizontal sprymenubar with a whole new set of rules independent from the first one. What can I do? Do I have to make an editable region or am I just not clicking a certain button to make the new menubar independent from the first one?
    Examples
    First this
    Then this
    And then this happens 
    Let me know!!

    Ok I found a similar question on this forum that was answered and helped. If anyone comes across this wondering the same thing, copy and paste your SpryMenuBarHorizontal.css file and rename the copy to something like "(Title_Of_Page)SpryMenuBarHorizontal.css" and then replace "SpryMenuBarHorizontal.css" in your code to <link href="../SpryAssets/(Title_Of_Page)SpryMenuBarHorizontal.css" and then you are good to go.

  • What is the best way to make my file in FCPX Compatible for a DVD.

    I am working with a file that is about 53 minutes in length.  The video is broken up into 14 3to5 minute videos.  During my project, as I completed each video, I saved a master file and shared as APPLE PRO RES so that I wouldnt lose anything as this is my first time working with FCPX.  This made a hi-def quicktime file of each video (came out great). Now I need to put the entire project together.  My individual master files are about 4g a piece and I would imagine putting them together, will be way too large to make a dvd with.
    My question is what is the best way to put it all together and export/share? I have all of the original projects still in FCPX, do i copy and paste them into one big file? Then share, and If I share what format should i share with?  I need to take the file, throw it on a external HD and put on my laptop to create the DVD in IDVD. Needs to be decent quality for the DVD.  I have read that I can create a DVD right from FCPX, but that would be impossible as I am working on a new imac with no burner!
    ANY HELP WOULD BE GREATLY APPRECIATED!

    jpqb48 wrote:
    My question is what is the best way to put it all together and export/share? I have all of the original projects still in FCPX, do i copy and paste them into one big file? Then share, and If I share what format should i share with?
    All sounds good.
    Create a new project and paste your 14 videos (projects) sequentially into it, Perhaps insert a gap clip and put in chapter markers if you want. Share>DVD. Should create a high quality disk.
    Good luck.
    Russ

  • How is the best way to make a mirror of your site for a Spanish version that links to the English and Visa versa

    I will need to have my site be multilingual and was wondering what the best approach to this is. The sites will be identical with the text changing from one language to another.

    Hi David,
    You can copy the pages and all its content will be copied over. You can then change the text to the desired language. For linking pages to other language pages, you need to add hyperlink on the pages to the desired language pages.
    Regards,
    Aish

  • Custom Exit Button not working..looks for required input field on screen?

    I defined this EXIT button as type E in Menu Painter.
    I am using "MODULE At EXIT-COMMAND" in my PAI.
    SAP message still asks for the required input field when I select the function EXIT button?
    The logic still will not break into the At EXIT-COMMAND of my PAI?
       Thank-You.

    Hi
    Have you assigned variable OK_CODE in the list of screen element?
    IF NOT zin_railid is initial.
        LEAVE TO SCREEN 0100.
    ENDIF.
    Which is the sense to create a button for exit-command and doesn't allow the exit if the input field is empty?
    In SE41 I entered "Back" over the back button, "EXIT" over the exit button, and "CANCEL" over the cancel button.
    I selected each one, and got a popup to enter "E" for each type. As I said they appear, but do nothing?
    Did I need to set a status for these?
    No you don't, it's only important to define a functional having the attribute for EXIT-COMMAND
    Max
    Max
    Edited by: max bianchi on Nov 5, 2010 6:31 PM

  • Windows XP and Windows classic result in different look for JTable

    We have a JTable with JTableHeader. If we set look to Windows classic both header and data are aligned correctly but if we use Windows XP the header and data get misaligned .
    How can this be fixed so it works for bot classic and XP.

    Why do you keep asking the same question over and over again in different threads? The source for WindowsTableHeaderUI is available, and if it has a bug, you'll have to extend this delegate and provide a fix.

  • Where's the best place to find Quartz Composer experts? (looking for a developer)

    I'm looking for a Quartz Composer developer who is 1) interested in working with an artist and 2) can give me a quote for a specific project I am developing.

    Apple hosts a bunch of mailing lists, one of which is for Quartz Composer devs. I read the list occasionally but have never really had the time to become proficient with QC.
    Start here for general info about Apple's mailing lists:   http://lists.apple.com/
    Then click the "Lists hosted on this site" link to see all the various lists. You'll have to subscribe to quartzcomposer-dev in order to post your questions to the list.
    The list is intended for technical discussions related to development and not really for job solicitation. But the usual folks on the list seem relatively friendly for the most part so I expect if you asked nicely and took any negotiations off-line that you wouldn't receive any flak.
    Steve

  • Making an Arch Linux wiki-reader Android app - Looking for some advice

    Hey guys, hopefully this is an ok place to post this. I've just finished a beginning Java course and I'm starting on the next one. I'm learning Java with the intention of creating Android applications as a hobby. Since I've found myself accessing the wiki from my phone on many occasions, and this doesn't seem overly difficult, I think this is a good place to start.
    I've been playing with this idea for a couple of weeks and I'm trying to determine the best way to approach this. I'm looking for any pointers/advice from a development standpoint and any (potential) user feedback as well.
    So far, with the help of other Archers, I have come up with the following three options:
    1) Obvious choice- Connect to the actual wiki online
    Pros:
    +Always up to date
    +Small application size
    Cons:
    -More difficult to strip current style and "mobilize" layout (there is a lot of clutter and links to outside of the wiki)
    -More permissions that other choices
    -Requires internet connection
    2) Use the arch-wiki-docs package
    Pros:
    +Offline
    +Easier to add css styles
    +Hopefully would require zero permissions
    Cons:
    -Application would be large ~40MB (Maybe it could be reduced by removing non-english languages?)
    -Not up to date, but pretty close
    3) Use the arch-wiki-lite package
    Pros:
    +Offline
    +Small application size
    +Hopefully would require zero permission
    +More of a native android application feel instead of a dedicated webpage reader
    Cons:
    -No links to other pages
    -Would need to create style/layout from scratch
    -Not really sure how this would work (Searching, etc)
    -Not up to date, but pretty close
    Right now I'm leaning towards the second option, but only if I can figure out an automated way to strip down the html pages and remove the non-english pages. I'm thinking that I'll start with an English only version, then add international support (or a second version) later on if people want it. What are your thoughts?

    Thanks for the response!
    rickeyski wrote: 1. Any app you make will require you to generate your own layouts android uses xml layouts there are webviews, which provide some of this functionality if you need to use html, however this will require online access.
    The arch-wiki-docs package is in HTML and I'm using WebView to read it locally. The arch-wiki-lite package is a text file. Maybe I could import it into a database? Either way, using that package will require me to create the whole layout.
    rickeyski wrote:  2 you could use a wrapper like phonegap, but that would me writing everything in html, css, javascript and you will use virtually none of your java.
    I've used Titanium Studio before, which I think is pretty similar to Phonegap, but I do want to make this one with Java.
    rickeyski wrote: 3. 40 mb is a huge app, granted its before compression, but its also before all of your code and layouts to make it work.. You would be limiting yourself to only the newest androids, don't know which phone you have in mind, but might not be a problem for you.
    40MB is the compressed size. The html docs are over 100MB uncompressed. I think I could significantly reduce the size by removing the non-english pages, but I can't figure out a systematic way to find them. There are 3551 pages and they use names like 00000965.html, 00000967.html, 00000968.html, 00000974.html, etc. (Of those 967 isn't english, but the other three are.)
    rickeyski wrote: 4. the biggest plus is the android docs and examples apps are very good, start reading.
    Yup. I've been reading through those a lot. They are a big help.
    Last edited by ioos (2012-02-11 23:11:05)

  • More contracts (with different suppliers) for one item

    Dear MDM Experts,
    is it possible to make more contracts (with different suppliers) for one item?
    Thanks and regards,
    Ádá

    Hi,
    Thanks for your answer. If I set my shopping cart for a contract with a supplier A, and I select an item with a supplier B, then after pushing button Transport to SRM on the shopping cart webdynpro UI, I would get the an error message, and the item wouldn't come to the SRM.
    If the item doesn't have any supplier, and I make a contract with it, the supplier of the contract goes to the item, and after that I can't make a contract with an other supplier for this item, because of the uppers.
    The type of field Supplier in table Catalog Items is Lookup field, and it can't be modified.
    Could you please write to me which can I set our system to be able to make contracts with many suppliers?
    Thanks and regards,
    Ádám Horváth

  • Looking for ebook reader app with good annotation features

    I'm looking for an ebook reader app to use on my iPhone and iPad that will allow me to do this:
    1. In a book, Highlight a selection of text, and make that a note or annotation
    2. Be able to see all my annotations/notes for a book in one place
    3. And here's the one I can't seem to find: Be able to generate a file with JUST my annotations in it so that I can save it off or email it or dropbox it or something like that.
    Does anyone know of such an app?

    I HAVE THE PERFECT APP!!!
    I had been looking for an app that did the same things you requested. And somebody finally created it.
    Its called Readmill
    www.readmill.com
    You can export all of your notes/highlights as an email.
    It also syncs your ebook library with Dropbox
    Here is the interview that Robert Scoble did with the makers of the app.
    https://plus.google.com/111091089527727420853/posts/Tce1E52MPo2

Maybe you are looking for

  • Cannot install Windows 7 Pro; gets stuck on "Starting Windows" screen

    I have read dozens of posts on this topic but none has helped yet. My system has Windows 8 with UEFI. I want to install Windows 7 Pro on another partition. I have turned off Secure Boot in the UEFI/BIOS. When I try to install Windows 7 Pro from a DVD

  • SquirrellMail Language problem

    SquirrellMail  don`t switch to russian interface. With any another language there are no problem. What is the problem with switching to russian? RHEL 5 SquirrellMail 1.4.20

  • Does my board support dualchannel?

    Hi there, maybe a stupid question, but ... does my board MSI 6702 K8T Neo-FIS2R support dualchannel-ram? Or is this only possible with pentium-boards? How can I determine it, if my modules (both 512 mb mdt ram ddr 400) run in dualchannel? Bye, Marcel

  • Cost center description to AR01

    Is there a way to bring in the cost center description to the AR01 Asset balances report.

  • Why does rotating a layer cause image size to increase?

    I was working on the top layer of a PSD document and did a custom rotation of 45 degrees so I could get a better painting angle.  When I rotated the layer back I noticed my image size had increased from 10 x 8 inches to 18.3 x 18.3.  When I tried to