How to create a navigation bar with custom made buttons?
I'm used to work with a similar program as Muse. In there we can create a single button and link them together into a navigation bar. I have tried all sorts of tutorials but none of them is discussing this possibility.
To summorize. The idea is to create a button in photoshop and to use this as a theme to build a navigation bar. Possible or not and how? Thanks for assistance. Rgds Rufin
Hi Brad,
Thanks for your reply.
No, not really. I used to work with XARA up till now. And being an Adobe Cloud user I think it a bit silly using two different systems. In XARA I can create a custom button and turn them into a navbar. For your information I include a few links to sites I created with Xara and I would like to know if I can create the same type of navbars with Abobe Muse. I already found out that all the other functions are available and some work a lot better in Muse, but I’m stuck on the navbar issue. I know I can create a button in Adobe PS and use it in Muse. But I didn’t manage to figure out how to create a navbar in Muse on basis of a button created in PS.
www.restaurant-cedric.be or www.discoamigo.com or www.radioparadijs.be
Grtz,
Rufin
LOGO-RUFIN'S-REISBUREAU-outlook
Koningslaan 36 – b31
8300 Knokke – Heist
Tel: 050621052
Fax: 050621072
e-mail: <mailto:[email protected]> [email protected]
<http://www.rufins.be/> http://www.rufins.be
<http://www.travelcoop.be/> travelcoop_logo_2013[1] <http://ferventreisagent.be/rufins-reisbureau> klein logo
Van: Brad Lawryk
Verzonden: zondag 12 oktober 2014 19:40
Aan: RUFIN DUWEL
Onderwerp: How to create a navigation bar with custom made buttons?
How to create a navigation bar with custom made buttons?
created by Brad Lawryk <https://forums.adobe.com/people/Brad+Lawryk> in Help with using Adobe Muse CC - View the full discussion <https://forums.adobe.com/message/6817739#6817739>
Similar Messages
-
Is their any tutorials on how to make a navigation bar with drop downs in Dreamweaver CC now ?
Is their any tutorials on how to make a navigation bar with drop downs in Dreamweaver CC now that they do not have the spry option?
bbull2005 wrote:
Preran, why wouldn't Dreamweaver include it's own menu/navigation bar widget?
I can't answer on Preran's or Adobe's behalf, but I think you'll find at least part of the answer here: http://wiki.jqueryui.com/w/page/38666403/Menubar
Adobe decided to discontinue development of Spry in August last year, and Dreamweaver CC made the switch to using jQuery UI widgets and effects. One reason for dropping Spry was that it failed to work correctly in some browsers. Judging from the fact that the jQuery UI menubar is now "on ice", creating a flyout menu that works reliably across all devices is proving more difficult than originally envisaged.
Because all other widgets in Dreamweaver CC use jQuery UI, it's a reasonable assumption that Adobe hoped the jQuery UI menubar would be ready in time, but it wasn't. -
How to create a navigation bar that doesn't move
I'll keep it short:
How do I create a navigation bar like abduzeedo.com? It just stays on the screen.You can use a div with the CSS position: fixed; top: 0 set. This will allow the div to "stick" to the top of the page, regardless of where the document is scrolled.
-
How to create a navigation bar
I wanted to create a navigation bar exactly like the one seen
at the top of this website
http://stage6.divx.com/ whenever
i seem to insert a table and then insert my navigation buttons i
cant move it to the top of the page, i also wanted to know how to
centralise these buttons if you look on the example i posted
whenever you re-size your inet browser window the buttons go with
it. any help
Thanks in advance
Rph =DDo you specifically need to use the onclick event, or do you jts want to run Javascript from the navbar entry? If the latter then you can use the URL method and set the URL to:
javascript:myfunction()
If it must be an onclick event then I think you would need to attach it dynamically in Javascript (using jQuery if available) to locate the link somehow (it's not easy to give it a unique ID unfortunately).
Edited by: Tony Andrews on Oct 26, 2010 10:35 AM -
How to create a navigation bar entry with onclick event
I have requirement of creating navigation bar entry with a an "on click" event. When a user clicking time a location list should open. I didn't understand how to do it on NAVIGATIONBAR_ENTRY.
Also Navigation Bar Entry IMage is not displaying.
Regards
Edited by: satheeshkumars on Oct 25, 2010 7:52 PMDo you specifically need to use the onclick event, or do you jts want to run Javascript from the navbar entry? If the latter then you can use the URL method and set the URL to:
javascript:myfunction()
If it must be an onclick event then I think you would need to attach it dynamically in Javascript (using jQuery if available) to locate the link somehow (it's not easy to give it a unique ID unfortunately).
Edited by: Tony Andrews on Oct 26, 2010 10:35 AM -
How to create a workflow dealing with customizing program(Add-on program)
Dear ALL,
I am new to workflow and I was assigned to create a workflow related to an customizing program(Dynpro screen).
I know we can refer to some std. template for workflow developing.
However, I don't know how to create a brand new workflow to deal with the add-on program and table.
My major difficulty is how to create a new object:
--How to create the new event to track the operation of add-on program, for example, push 'submit' button.
--How to create method to update the add-on table.
I do hope someone could give me some guidance.
Thank,
GaryThis is a Function Module that triggers an event ob Business Object tht you will create by making a subtype of Business Object. Use Transaction Code SWO1 to do so.
FUNCTION zwf_process_trip.
""Local Interface:
*" IMPORTING
*" VALUE(I_EMP_NUMBER) TYPE PERNR_D
*" VALUE(I_EMP_TRIP) TYPE REINR
INCLUDE <cntn01> .
DATA:i_emp_details TYPE STANDARD TABLE OF p0001, "Employee Details
wa_request TYPE p0001, "Workarea for Employee details
v_country_grp TYPE molga, "Country SubGrouping
v_object_key TYPE sweinstcou-objkey. "Key for the buisness object ZWOBUSTRIP
CONSTANTS: c_bo_trip TYPE swo_objtyp VALUE 'ZWOBUSTRIP',
c_event_trip TYPE swo_event VALUE 'TripCreate',
c_infy_type_1 TYPE infty VALUE '0001'.
Event Container declaration
swc_container i_event_cont.
swc_create_container i_event_cont.
Reading the INFO TYPE 0001 to obtain the
Employee details
CALL FUNCTION 'HR_READ_INFOTYPE'
EXPORTING
pernr = i_emp_number
infty = c_infy_type_1
begda = sy-datum
endda = sy-datum
TABLES
infty_tab = i_emp_details
EXCEPTIONS
infty_not_found = 1
OTHERS = 2.
SY-SUBRC check is not required as the error
handelling will be done by WorkFlow rule
resolution.
CLEAR wa_request.
READ TABLE i_emp_details INTO wa_request INDEX 1.
IF sy-subrc = 0.
Retrieving the Country SubGrouping for the employee
SELECT SINGLE molga
FROM t001p
INTO v_country_grp
WHERE werks = wa_request-werks
AND btrtl = wa_request-persk.
ENDIF.
Sending the relevant data to event container
swc_set_element i_event_cont 'EmpId' i_emp_number.
IF sy-subrc <> 0.
No Processing needed.
ENDIF.
swc_set_element i_event_cont 'PersonnelArea' wa_request-werks.
IF sy-subrc <> 0.
No Processing needed.
ENDIF.
swc_set_element i_event_cont 'CountryGrouping' v_country_grp.
IF sy-subrc <> 0.
No Processing needed.
ENDIF.
swc_set_element i_event_cont 'EmpSubGrp' wa_request-persk.
IF sy-subrc <> 0.
No Processing needed.
ENDIF.
swc_set_element i_event_cont 'EmpTripId' i_emp_trip.
IF sy-subrc <> 0.
No Processing needed.
ENDIF.
Raising the event to trigger the workflow
v_object_key = i_emp_number.
CALL FUNCTION 'SWE_EVENT_CREATE'
EXPORTING
objtype = c_bo_trip
objkey = v_object_key
event = c_event_trip
TABLES
event_container = i_event_cont
EXCEPTIONS
objtype_not_found = 1
OTHERS = 2.
IF sy-subrc <> 0.
No Processing needed.
ENDIF.
COMMIT WORK.
ENDFUNCTION.
SWEL Transaction Code is used to track event linkage.
SWUS is used to test Workflow manually with single test.
<b>Please reward points if useful</b>
Thanks
Arghadip -
How to create a ActiveX Object with custom classes
Hi
I am trying to create a Active X object for some of the work I have done in Java to be used with VB, but I cannot get the Active X object to generate and it always come up with the following error:
Exception occurred during event dispatching:
java.lang.NoClassDefFoundError: uk/co/agena/minerva/model/Model
at java.lang.Class.getMethods0(Native Method)
at java.lang.Class.getDeclaredMethods(Unknown Source)
at java.beans.Introspector$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.beans.Introspector.getPublicDeclaredMethods(Unknown Source)
at java.beans.Introspector.getTargetEventInfo(Unknown Source)
at java.beans.Introspector.getBeanInfo(Unknown Source)
at java.beans.Introspector.getBeanInfo(Unknown Source)
at sun.beanbox.JarInfo.<init>(Unknown Source)
at sun.beanbox.JarLoader.createJarInfo(Unknown Source)
at sun.beanbox.JarLoader.loadJar(Unknown Source)
at sun.beans.ole.Packager.loadBean(Unknown Source)
at sun.beans.ole.Packager.generate(Unknown Source)
at sun.beans.ole.Packager.actionPerformed(Unknown Source)
at java.awt.Button.processActionEvent(Unknown Source)
at java.awt.Button.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForComponent(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForComponent(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
This appears to be beacuse the class uk/co/agena/minerva/model/Model is a custom class which is based on the software I am using. Does anyone know how I can get around this issue. I have tried incluijng those class files for the custom classes within the jar file, but I continue to get the same issue?
Any help would be gratefully received.
Thanks
AngieThis error is no longer coming up, it is now saying that it has an unsupported class version error. I believe this may be because the class file and library files have been complied under different versions, is there a method to check this?
-
How to make a navigation bar with buttons that stay highlighted
I have Dreamweaver MX 2004. I know how to make a simple nav
bar, but how do you make it so it's like the Apple website, with
buttons that stay highlighted on the appropriate page?"[email protected]" <[email protected]>
wrote in message
news:gd04sb$5mc$[email protected]..
>I have Dreamweaver MX 2004. I know how to make a simple
nav bar, but how
>do you make it so it's like the Apple website, with
buttons that stay
>highlighted on the appropriate page?
http://divahtml.com/products/divaGPS/current_menu_location.php
Thierry
http://www.TJKDesign.com/go/?0
| Articles and Tutorials
http://divahtml.com/products/scripts_dreamweaver_extensions.php
| Extensions
that keep your markup clean
http://www.fourlevel.com/ |
CSS Menus, Gallery, Tab Panels, etc -
How to create attribute & set types with customer namespace COMM_ATTRSET?
Hi CRM Gurus,
I want to create some attributes and set types on CRM system with
`/FITGL/` namespace but system is not allowed to create objects
according. After debugging derives that SAP standart coding given below
on LCOM_ATTRIBUTE_NEWF19 include.
IF ( lv_systemname <> gc_sap_system ) AND
( iv_object_name(1) <> 'Y' AND iv_object_name(1) <> 'Z' ).
Should we make an enhancement on this include? Is there any side
efffects of this enhancement creating attribute & set types on CRM
system during the packaging in terms of related with other attribute & set types objects?
Kind Regards,
FahrettinHi CRM Gurus,
I want to create some attributes and set types on CRM system with
`/FITGL/` namespace but system is not allowed to create objects
according. After debugging derives that SAP standart coding given below
on LCOM_ATTRIBUTE_NEWF19 include.
IF ( lv_systemname <> gc_sap_system ) AND
( iv_object_name(1) <> 'Y' AND iv_object_name(1) <> 'Z' ).
Should we make an enhancement on this include? Is there any side
efffects of this enhancement creating attribute & set types on CRM
system during the packaging in terms of related with other attribute & set types objects?
Kind Regards,
Fahrettin -
How can I save a pdf with custom made joboption?
Hi, I'm new here and my english is not perfect so please, don't make me regret I joined this forum
The thing is that I have to print pdfs to pdfs with certain .joboptions and I really have no idea how to that.
I tried to make it by distiller, it printed the error about the 'CheckCompliance out of range' error so I deleted the file and I set all of the options by myself just to realize that distiller won't work with .pdf files. I couldn't find all of the options I need in the Acrobat save menu.
So... is there any solution to print/save pdf to pdf with joboptions I need?
I hope the post is understandable
Thanks in advance.Try tapping the share arrow and then tapping Open in iBooks.
More info and options here -> iBooks: Viewing, syncing, saving, and printing PDFs on iPhone, iPad, and iPod touch -
How to create a Navigation with submenu ? { Mega Navigation Menu} ?
Please iam playing around with Flach Catalyst, but i cant find how to create a navigation menu with submenus
i've created the design in photoshop but i dont know how to do the rest in Catalyst.
the Navigation menu that i want is should be more or less like this
Home Contact Gallery Team { Now when i mouse over inTeam it shows a block with text and links that i
can be able to click them.}
-------------------------------------------------------^---------------------------------- ---------------
|---------------^-------------------------------------------------|
Race Team | Swim Team
.....................................| .............................
Football Team | NR Team
.....................................|..............................
Sprint Team | Basketball Team
......................................|..............................
Jump Team | Water Team
|.....................................................................|
Please help me i've search on google but didnt found anything.
Thank YouHi,
This file may help. DropDownMenu.fxp (Right-click > Download Linked File to download this Fc CS5.5 file).
It illustrates a simple drop-down menu. Note that only the File menu has button items in it.
Best,
Tanya -
How to make a scroll Bar with buttons
Hi all,
I am using Flash cs6 on an iMAC running 10.7.2
I would like to know if anyone could please point me to a tutorial, showing "how to create a scroll bar with buttons". I am having a heck of a time finding a tutorial.
Many thanks in advance.
regards,
DHhttp://learnola.com/2008/10/27/flash-tutorial-create-a-custom-scrollbar-with-actionscript/
-
How to align navigation bar with banner?
Hi i need to align my navigation bar with my banner how can i do this?
i have attached a picture of how it looks in chrome 1280x1024
I used Anthony Marchese's guide to do it (http://www.youtube.com/watch?v=l-wuwsZQTl0) but it will not align ive tried everything!!
also how can i resize a div??
please help??
Thanks,
Gershy14THIS IS MY MAIN CODE.
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>MusicAtTheD's - the home</title>
6 <link href="css/styles.css"rel="stylesheet"type="text/css">
7 <style>
8
9
10 #body {background-image:url(images/washedddd.jpg);background-repeat:no-repeat;background-positi on:center center;
11 background-attachment:scroll;
12 }
13
14 #navbarOFF li {
15 font:17px Arial;
16 display:inline;
17 list-style-type:none;
18
19 }
20 #navbarOFF a {
21 background-color:#09F;
22 color:#fff;
23 text-decoration:none;
24 padding-top:15px;
25 padding-right:28px;
26 padding-bottom:15px;
27 padding-left:28px;
28
29 }
30 #navbarOFF a:hover {
31 background-color:#F90;
32 color:#666;
33
34 }
35 body {
36 background-image:url(images/washedddd.jpg);
37 background-repeat:no-repeat;
38 }
39 </style>
40 </head>
41
42 <body bgcolor="#999999"leftmargin="70"
43 " topmargin="50">
44 <div id="header"> <img src="images/websitefinalll.jpg" alt="banner" width="752" height="161"></div>
45 <nav>
46 <div id="navbarOFF">
47 <div align="center">
48 <ul>
49 <li><a href="#">the home</a></li>
50 <li><a href="#">the boys</a></li>
51 <li><a href="#">the gang</a></li>
52 <li><a href="#">the studio</a></li>
53 <li><a href="#">the band</a></li>
54 <li><a href="#">the music</a></li>
55 </ul>
56 </div>
57 </div>
58 </nav>
59
60 </body>
61 </html>
62
CSS SHEET
1 #body {
2 background-image:url(images/washedddd.jpg);
3 background-repeat:no-repeat;
4 background-position:center center;
5 background-attachment:scroll;
6 }
7 #header {
8 height:160px;
9 width:800px;
10 margin-left:auto;
11 margin-right:auto;
12
13 } -
How to create a Nav Bar?
How can you create a navigation bar in DreamWeaver CS4?
How can I create one from scratch?
With HTML and CSS. See Nancy's links. Or -
Check the uberlink and MacFly tutorials at PVII - http://www.projectseven.com/
and the Navbar tutorial/articles at Thierry's place
http://tjkdesign.com/articles/dropdown/
Or this one (more recent article):
http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
Or to get it done fast, go here -
http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm -
One Page Scrolling Site with anchors and a navigation bar with submenus
Hi,
I create a one page scrolling site with some anchors.
Now I want to have a navigation bar with submenus, i.g. one navigation leads to "projects", but within projects I need 6 submenus for every project.
How can I realize this in muse?
Thanks,
MichaelCreate a Manual menu and link to the anchors.
Widgets Library/Menus/Horizontal
In the Options pull out screen: Menu Type: Manual
Mark each menu box you create and link to the specific anchor.
Refer to this section of a site I created that mimics what you want done:
PS-AD-15
Maybe you are looking for
-
Dual keyboards with Snow Leopard
This may seem unconventional, but I prefer to use two keyboards with my computers, one for each hand. It's a far more versatile solution then traditional ergonomic keyboards, and allows me to use the Apple keyboards, which I've found to be very good
-
when I'm trying to restore my iPhone 3g, it says "The iPhone cannot be restored. An unknown error occurred (10150)"
-
I would like to play my movies off a USB pen drive to a car T.V. which gives a resolution of 1440x234 I've coppied the specs Portable DVD-player Phantom NextBase SDV185-SDF Portable DVD-player Phantom NextBase SDV185-SDF Built-in LCD Monitor 8,5", 16
-
ADS Configuaration prerequisites
Hi, I would like to work implement Adobe forms using webDynpro-Java. To work with Adobe, what all the things require to configure.... Do we need to purchase any Adobe reader for this? How we will getting credential file? Kindly guide me on this.... T
-
Split midi notenumbers to several tracks
First of all I'am new to Logic... I record the MIDI from our drummers Roland TD-12 to a MIDI track in Logic. Problem with this is that the complete kit is on 1 track... what I would like is to split the incoming MIDI info to diffetent tracks. So that