Please create a menu widget with accordion properties.

Hi. I love the menu widget, how it picks up all the pages and subpages, and how changes in the site plan are automatically reflected in the menu system. Awesome!
I would like to have a menu widget that allows me to create a menu in which clicking on a menu item causes all the other menu items to slide down and expose the next submenu. The same happens when clicking on a submenu item, for as many levels of menus as there are.
On your chat support, I was informed I would have to use an accordion widget, which would have been fine, EXCEPT.... every single change in the site structure--adding, subtracting, moving a page--has to be done manually. The accordion widget does not automatically propagate changes like the menu widget does. I would like it to!
Contact me if I'm not clear enough. [email protected] (Adobe staff only please.)
Thanks.
Kirk 

It would be great to have a blog/forum feature built into Muse that looks and works similar to this forum.  I would like a forum where people could reply to post.

Similar Messages

  • What is menu area? can we create a menu exit with tht?

    Hi experts,
    what is menu area? can we create a menu exit with tht? is areamenu(se43n) diff frm menu exit?

    Hi
    Menu Exits
        Menu exits add items to the pull down menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
          SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Menu exits allow you to add your own functionallity to menus. Menu exits are implemented by SAP, and are reserved menu entries in the GUI interface. The developer can add his/her own text and logic for the menu.
    Function codes for menu exits all start with "+"
    Example
    We want to create a new menu item in the Office menu. The text for the menu should be "Run ZTEST", and the menu will
    run report ZTEST.
    Goto transaction SE43 Area Menu Maintenance
    In Area Menu Paramenter type 'S000' (S triple Zero)
    Select Change and ignore all the warning screens
    Expand the office menu. In the buttom of the office tree you will find a menu named "Customer function"
    Double click on the text. In the pop-up screen change the text to "Run ZTEST". Note that the trsnaction code is +C01
    Goto transaction SE93 and create transaction +C01 that calls report ZTEST.
    Now you will se the menu displayed in the office tree. If you delete transaction +C01 again, the new menu will dissapear.
    There are 'only' 177 Menu exits in standard - I couldn't see the right one, too.
    But you could search the implemented exits, this should be only a small number. Go to transaction CMOD, enter * and F4, information system (F5), show all selections (Shift+F7) and then you can restrict to search only menu exits.
    Of course there is the possibility, that these are added in a different way...
    ... at least you can be sure, if it's a normal menu exit.
    Check this sap help..
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    http://www.sapbrainsonline.com/TUTORIALS/default.html
    You can achieve this functionality by configuring in IMG.
    Please find the info regarding User-Exit's in the following links:
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    Re: doubt on user exits
    user exits and Badis
    User exits is the enhancements provided by SAP
    You can use them in transactions. Each transaction will have user exits.
    If you want to use your own requirements by making your coding while the transaction is run you can use user exits.
    For example if you want to run the MRP in MD02 specific to MRP controller you can user exit.
    Please also refer the document below.
    USEREXIT
    Userxits allow us to add our own functionality to SAP standard program
    without modifying it . These are implemented in the form of subroutines and hence are also known as FORM EXITs. The userexits are generally collected in includes and attached to the standard program by the SAP.
    All Userexits start with the word USEREXIT_...
    FORM USEREXIT_..
    z..
    ENDFORM.
    The problem lies in finding the correct userexit and how to find it if one exists for the purpose. Once the correct userexit is found the necessary customer code is inserted in the customer include starting with the z.. in the form routine.
    e.g. USEREXIT_SAVE_DOCUMENT_PREPARE
    Certain application like SD still provide this form of enhancement using userexit but this practice is no longer being followed for newer extensions instead they are using EXITs which come bundeled in enhancement packages . Neverthiless existing USEREXITS will be supported by SAP an all the newer versions of SAP.
    HOW TO FIND USEREXITS
    Userexits can be found in number of ways:
    1) To find userexits in SD module , goto object navigator(SE80) and select
    development class from the list and enter VMOD in it. All of the userexits in SD are contained in the development class VMOD. Press enter and you will find all the includes which contain userexits in SD for different functions like PRICING, ORDER PROCESSING etc. Select the userexit according to the requirement and read the comment inserted in it and start coding .
    Some examples of userexits in SD(SALES & DISTRIBUTION ) are:
    1)ADDING OF NEW FIELDS IN PRICING
    In Pricing in SD the fields on the basis of which pricing is done are derived from the FIELD CATALOG which is a structure KOMG .This structure is used to transfer transaction data to the pricing procedure in SD and is also known as communication structure.This structure KOMG consists of two tables KOMK for Header related fields and KOMP for item related fields. The fields which are not in either of the two tables KOMK and KOMP cannot be used in pricing .Sometimes a need arises when the pricing is to be based on some other criteria which is not present in the form of fields in either of the two tables. This problem can be solved by using USEREXITS which are provided for pricing in SD. Pricing takes place both when the SALES ORDER ( Transaction VA01) is created as well as when INVOICING ( Transaction VF01) is done.Hence SAP provides 2 userexits ,one for sales order processing which is
    USEREXIT_PRICING_PREPARE_TKOMP or
    USEREXIT_PRICING_PREPARE_TKOMK
    Depending upon which table (KOMK or KOMP) the new fields were inserted we use either of the above two userexits.These userexits are found in include MV45AFZZ of the standard SAP sales order creation program SAPMV45A.
    In the case of userexit which will be called when invoicing is done ,these
    are provided in the include RY60AFZZ which is in the standard SAP program SAPMV45A. The name of the userexits are same. i.e
    USEREXIT_PRICING_PREPARE_TKOMP or
    USEREXIT_PRICING_PREPARE_TKOMK
    These userexits are used for passing the data from the communication structure to the pricing procedure, for this we have to fill the newely created field in the communication structure KOMG for this we fill the code in the above userexit using the MOVE statement after the data that has to be passed is taken from the database table by using the SELECT statement. The actual structure which is visible in these userexits and which is to be filled for that particular field is TKOMP or TKOMK.
    Before the coding for these userexits is done ,it is necessary to create a new field in either of the two tables KOMK or KOMP .For this purpose includes are provided in each of them .
    To create the field in header data(KOMK) the include provided is KOMKAZ
    and to create the field in item data(KOMP) the include provided is KOMPAZ.
    One possible example for the need of creating new fields can be e.g. Frieght to be based upon transportation zone ,for this no field is available in field catalog and hence it can be created in KOMK and then above userexits can be used to fill the transportation data to it.
    2)The other method of finding userexit is to find the word USEREXIT in the
    associated program of the transaction for which we want to determine userexit using SE38.
    3)The other method of finding userexits is to find the include in case of SD/MM applications where the userexits are located ,this can be found in the SAP reference IMG generally in the subfolder under SYSTEM MODIFICATION.
    Some other examples of userexits in SD are:
    USEREXIT_NUMBER_RANGE
    This userexit is used to assign a different internal document number to the
    sales order(VA01) when it is created depending on some criteria like a different SALES ORGANIZAION(VKORG) .
    USEREXIT_SAVE_DOCUMENT_PREPARE
    This userexit is used to insert the ABAP code which will be called when
    the document (sales order VA01) is just about to be saved.This userexit is used generally for custom checks on different fields , to display some information before the order will be saved or for making changes to certain fields before the sales order will be saved.
    Exits & Enhancements
    There are mainly six types of EXITs in sap which have been collected in the form of enhancement packages and attached to standard code in SAP.
    These are different from USEREXIT in the way that they are implemented
    in the form of FUNCTIONs while in USEREXITS we use form routines for their implementation. These are also sometimes known as function exits .
    These start from the word EXIT_ followed by the program name and then followed by a three digit number.
    e.g. EXIT_SAPMV45A_002
    This exit is found in SD in enhancement V45A0002.
    TYPES OF EXITS
    1)MENU EXITS
    2)FUNCTION EXITS
    3)TABLE EXITS
    4)SCREEN EXITS
    5)KEYWORD EXITS
    6)FIELD EXITS
    We use SAP transactions CMOD and SMOD to manage exits. Before implementing an exit , it is required to create the project by using CMOD
    selecting the enhancement e.g. V45A0002 and selecting the component
    (one which fulfills our need) i.e the exit which will be implemented in SMOD and after coding has been done the project has to be activated.
    An exit can be coded only once.
    FUNCTION EXITS
    These are used to add functionality through ABAP code . These start from the word EXIT_programname_NNN ending in a 3 digit number. No access code is required to implement any tupe of exit including function exits.
    The function exits are called from the standard SAP program in the form
    of ABAP statement
    CALL CUSTOMER-FUNCTION 'NNN'
    This is in contrast to USEREXITs where PERFORM statement is used to call
    the required userexit.
    To implement the FUNCTION EXITs first of all the project is created and a suitable enhancement package is selected and from its compnents the function exit to be implemented is selected and on double clicking it the exit code will appear in ABAP EDITOR(se38) where a Z include will be found and the customer code should be entered in this include.
    e.g.
    ADDING A DEFAULT SOLD-TO-PARTY in Sales Order Creation
    To show a default sold-to-party in this field when the user creates a sales order (VA01) we can use a function exit .This function exit is located in enhancement no V45A0002 . Before we can choose the exit we have to create a project in CMOD after that enter V45A0002 in the enhancement field and click on the components . In the components you will see the exit EXIT_SAPMV45A_002 . This exit is used for our purpose.
    Double clicking on this exit will takes us to function builder (SE37) . This
    function exit has one exporting parameters and two importing parameters, we are interested in exporting parameter which is E_KUNNR of type KNA1-KUNNR i.e if we move the desired customer name to this structure(E_KUNNR) it will be shown in the field as the default value when we create the sales order. This function also contains a customer include ZXVVA04 . This include will be used to write our custom code .
    Double clicking on this include and it will prompt us that this include does not exists do you want to create this object ,select yes and the include will be created .In this include we can write our own code that will fill the field E_KUNNR.
    e.g. E_KUNNR = 301.
    Activate the include and Activate the project. Now when ever the SALES ORDER will be created , sold-to-party field will come up with a predefined customer .
    FIELD EXITS
    The field exits are managed,created,activated through program RSMODPRF. The field exit is associated with a data element existing in ABAP dictionary and hence to the screen field using that data element.
    The format of field exit is :
    FIELD_EXIT_dataelement_A-Z or 0-9
    If a particular screen and program name is not specified than the field exit will effect all the screens containing that data element.
    The function module associated with field exit shows two parameters
    INPUT and OUTPUT. Input parameter contains the data passed to the field exit when the field exit was invoked by the R/3 , We can write our own code to change the output parameter depending upon our requirements.
    Before the field exit can have any effect the system profile parameter
    ABAP/FIELDEXIT in all the application servers should be set to YES
    ABAP/FIELDEXIT = YES.

  • How to create a text Component With Certain Properties

    I need to create a text component with the following properties:
    Has Capability to be italic, right/left aligned, have different background / foreground colors, and most importantly, the ability to have a fixed width and a height that is set by the amount of text in it (ie line wrapping expands the field vertically).
    It should be a simple exercise, but I cannot seem to figure out how to do it.

    Here is the correct syntax :
    private static JEditorPane constructPane(String text, int normWidth, int normHeight, boolean rightAlign, boolean italic,boolean isWhite) {
              JEditorPane pane = new JEditorPane();
              pane.setEditable(false);
              pane.setContentType("text/html");
              pane.setText(
                   "<html><head></head><body>"
                   + (italic?"<i>":"")
                   + "<table><COLGROUP><COL width=\""+normWidth+"\"><THREAD><tr><td valign=\"top\" align="+(rightAlign?"\"right\"":"\"left\"")+">"
                   + text+"</td></tr></table>"
                   + (italic?"</i>":"")
                   + "</body></html>");
              pane.setSize(normWidth,normHeight);
              if(isWhite)
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.WHITE),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.WHITE);
              else {
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.BLACK),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.BLACK);
              return pane;
         }

  • Help with manual mode of Menu Widget in Muse

    I'm building a family web page in Muse and I'd like to create a menu of my secondary webpages only. Since the Menu Widget's "menu type" options are Top Level pages, All Pages (neither option will work for me), and Manual- it seems like I should be able to use "Menu Type: Manual" and simply type in the menu items I would like- which I've done. What I can't figure out is how to link those menu items I manually created to the sub pages of my website.
    A bit of background on my website structure. My top Level sites are: Welcome, and then 3 separate pages for each family member- and each member page has a few secondary pages (about, photos, contact):
    Welcome
    Member 1
    about
    photos
    contact
    Member 2
    about
    photos
    contact
    Member 3
    about
    photos
    contact
    My main site navigation- i.e. the menu widget for top level pages- is above my header (Light Gray). Below my header, I would like a horizontal or bar menu for ONLY the sub pages of that member: ie. About Member 1, Member 1's Photos, Contact Member 1 (Dark Gray)
    I've created a menu widget in the Manual mode- I just can't seem to figure out how to link each menu option to the correct page. Currently in preview none of these manual menu items work.
    Thanks!
    LScarff

    Hi Scarff.
    When you opt to use manual mode for the Menus, you need to manually link the pages to menu items. To achieve this , you need to have the menu item selected and then using hyperlink option as shown in below screenshots link the corresponding page to it :
    I hope this helps.
    Regards
    Anshul

  • Need to create a menu with subitems similar to OTN main page bar menu

    Hi,
    Using Jdev 11.1.1.5
    I need to create a menu bar with simple sub-items (set of links to other sites or pages) similar to what OTN main page uses.
    The menuBar with subitems shown in the ADF demo site is close but doesn't look like as OTN i.e. set of tab/boxes.
    Link to the ADF demo with menuBar:
    http://jdevadf.oracle.com/adf-richclient-demo/faces/feature/index.jspx?_afrRedirect=3119879384215420#%2Fcomponents%2FmenuBar%2Felectronics.jspx%40%3FAdf-Window-Id%3Dw0
    Not sure which ADF component to use?
    Thanks

    Thanks Shay. I think skinning would be simpler and will make use of the provided components in ADF, but I haven't done any work with skinning but did use CSS so not sure how simple to figure this out.
    Most of the commercial web site uses tabs/boxes as I am trying to do. It will be nice to have ADF component or simple solution.
    Thanks

  • Webclip widgets with javascript disabled

    I want to create a webclip widget from a site that automatically redirects to another website unless I disable javascript (which I normally do for this site). It seems that javascript is always enabled for webclip widgets because the widget shows the marked area of the site after the redirect. Is there a way to create a webclip widget with disabled javascript?

    I was finally able to contact Adobe Security team and they escalated the issue.  Here is the reply I received back from Adobe.
    Hope this helps.
    -Darin
    Darin – thanks for pointing this issue out to us.  I have logged bug number 2582562 for this issue and I expect it to be fixed for the July patch for Reader 9.  If you have further questions, please do not hesitate to contact me directly.

  • Two questions about the menu widget

    Hello,
    I am making a horizontal menu with the menu widget.  I have 2 questions and a picture for you to refer to:
    A - When I create the menu widget, I want to add a dropdown sub menu and be able to link it to anything other than a page in the site.  How do I do that?
    B - There is a page in the menu widget but I don't want it to be in the menu widget because there will be another button on the site that I will use to link to that page.  How Do I keep that page from showing up in the menu widget?
    Thank you - deaf guy

    Michael--
    I don't know how to answer your first question, but for your second question, right-click the page when in Plan view, click Menu Options, then click Exclude from Page Menus.

  • Menu / List with images ?

    Hi webmates... I'd ike to create a menu/list with small icons
    inside , for example countries with small flags, etc etc. is that
    possible ? how ? thanks in advance !

    Not possible if you are using a list/menu.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Sw Jiten" <[email protected]> wrote in message
    news:gif8qn$68v$[email protected]..
    > Hi webmates... I'd ike to create a menu/list with small
    icons inside ,
    > for example countries with small flags, etc etc. is that
    possible ? how ?
    > thanks in advance !

  • I want to create an external video widget with iAd. I followed the steps and copied the Url and paste it in the Video pop-up menu in the Properties section of the inspector. When i select 'preview' the video doesn't play and the Url that i pasted is gone.

    i want to create an external video widget with iAd to use in an iBook. I followed the steps and copied the Url and paste it in the Video pop-up menu in the Properties section of the inspector. When i select 'preview' the video doesn't play and the Url that i pasted is gone.
    hope someone can help!

    May have something to do with whether or not the URL can be reached while building your widget.  I've got a video on the web. When I enter the URL into the field for the video object and click to another field,  the URL is replaced with some text indicating that it is accessing the video then updates itself to displaying just the name of the video file.
    It shows just fine in preview and I can see the full path to the video when I export the widget so it should work for you. 
    Is the video accessible from your Mac while you're laying out your widget?
    -Mark

  • Help with publishing website templates and creating a menu please?

    Hello, I’m new to this website and flash so please bear with me.
    I have purchased a website template from istockphoto (example…  http://www.istockphoto.com/file_closeup.php?id=631369 ), which is easy to upload pictures on to, but i have a few questions...
    I have now uploaded my images on to it, but please can you give me some advise on how to publish it on to the Internet?  I have bought my own domain name but I don’t have a clue how to link it to this web template, and I can’t seem to find any specific information.
    Also I want to create a menue with 8 different subject categories, each with a separate image gallery and I don’t know how to link them together and list them in a ‘home page’.
    If you could give me some tips or a link to some information that would be fantastic!
    Thankyou very much in advance! Any help would be very much appreciated as i have been searching for a few days now and i don't understand how it works.
    Donna

    First, after exporting your FLA to SWF, you have to embed it into an html page, then upload both html and swf to your host.

  • Accordion menu widget behavior and contents

    I'm working on an accordion menu that is then used in a DPS folio created in InDesign.
    The accordion menu resides on the Master Pages of the articles/documents, 6 articles total.
    When the label is tapped, the accordion menu expands open >
    The label is also a link that takes the reader to a page within the folio while expanding (using the navto://documentname#page formatting) >
    Inside the content area of each label are subtopics that also navigate to different pages within the folio (also using the navto://documentname#page formatting).
    My desire is that when a label is tapped and expands, the reader can then click on each subtopic and go to that page without the accordion menu collapsing as it goes to the page.
    I'm finding that 99.9% of the time, the menu is collapsing. Other times I get the exact performance I desire.
    I'm Ok with the menu collapsing as each label is tapped, but not the subtopics.
    I've played around with setting the accordion properties by unchecking "Collapse All" and unchecking "Edit Together", but can't seem to edit these sections or the text boxes individually. It either sets ALL items in the accordion menu to Collapse All or not. No mixing of the two settings.
    Is there a way to get the desired functionality, outlined above, with the accordion menu widget?
    TIA,
    Hunter

    You can either use separate accordions for sub topic or you would need to go with unchecked collapse all and then manually edit all contents.
    Thanks,
    Sanjit

  • Create hidden submenu from Manual Menu Widget.

    I am trying to create a hidden submenu that will pop up when a user rolls over one of my top-level menu items, and will go away when they roll out of the target box. I am using a Manual Menu Widget, and I'm having issues with this. I've tried using Composite widgets to achieve this, but I must be doing something wrong. I program the targets to what I think are the correct settings, basically trying to make it invisible on standalone, and then turn into a submenu when its trigger is rolled over.. Unfortunately, when rolling over the trigger nothing shows up, and only when I roll over the target box does anything happen. Can someone please tell me if there is an easier way to achieve these results, and if not, help me correct my process?

    I have a sample for you hope it helps http://www.mediafire.com/download/mbmrstiypphe8mc/menu_rollover.muse

  • Static/Standard links within Muse Accordion menu widget

    Hi,
    I'm a newcomer to Adobe Muse and so may have missed a menu or option somewhere along the line,
    I'm trying to make a simple alteration to the standard Muse 'accordion' menu widget.
    I'm re-creating a website I've already half built in Dreamweaver, it being a simple design I thought
    this would be a good site to try to build with Muse. As you'll see here: http://www.thisisneil.com/rg-e/
    the accordion on the left hand side has two static links sitting at the bottom of the menu linking to
    a 'Contacts' page and 'Blog' hosted on Tumblr.
    Within Muse, I can't embed these two standard links without the accordion function in the same field?!
    Muse automatically applies the on-click, drop down sub-menu. Is there anyway of disabling the function
    on selected menu items?
    I'd like the two static links to drop down, and pop back up with two two functioning accordion menu's
    sitting above as they do within my dreamweaver example, but can't seem to amend the Muse menu
    to behave in this way. A shame to fall at the first hurdle with such a simple menu amend!
    Any help or thoughts much appreciated.
    Thanks.

    Anybody?!

  • I look for integrated in the legend bloc of diaporama, a widget such as "Accordion" for, with a click, or passing with mouse, open a new legend for each photo. I tried with "Accordion" of Muse, it does not work. I tried copy/paste, mais no result. The wid

    Question.
    I look for integrated in the legend bloc of diaporama, a widget such as "Accordion" for, with a click, or passing with mouse, open a new legend for each photo. I tried with "Accordion" of Muse, it does not work. I tried copy/paste, mais no result. The widget disappear in bloc legend. disparaître. Have you one solution?
    Thank you,
    Loïc

    Accordion or Tabbed panel should to it, with click and open container.
    Please provide site url where this does not work, also if you can provide an example where we can see the exact action then it would help us.
    Thanks,
    Sanjit

  • Disable updating of the menu widget when working with Muse file?

    First of all thank you Adobe for creating Muse - I really like it a lot!
    My question:
    when I work on my website with 250+ pages, it strains the performance to make even the slightest changes to the page structure. I work with two Masters each with much the same horisontal menu widget.
    Adding, deleting and rearranging pages makes the PC (Windows 7 laptop of some but not awesome power) make a halt and take a deep breathe for some seconds. It really interupts the flow of working.
    A crude work around for this is to removing the menu widget in the two masters and put it into a new master page, containing only the copied menu from the two other masters and keeping the rest of the header in place on the original masters to use for aligning on the pages. This way, only one page has to update when working with adding, deleting and rearranging pages.
    I have tried to look for a preference to disable updating the Menu widget when working on the page structures and just enable it the update again when the work is done? does it exist? else I would recommend it strongly :-) Since my work around is a bit tricky/risky to use after publishing ;-)
    Again, thanks a lot for this nice program. Being a selftought CS (now CCC) user I like the ease of control of the webdesign you can get with Muse (at the dispence of other features of course - if you ever wanted to add some sort of database-lookup feature it would be MUCH appreciated. One workaround is to use iframe and an external search/lookup page, that returns results with links back to parent pages. A bit funny construction though :-) ).
    BR
    M. Hecquet

    Glad to know you are enjoying Muse.
    It can be very processor intensive if you have multiple Master pages with their own All Pages menu widget. Take a look at the following threads and refer to Zak's response.
    http://forums.adobe.com/thread/1423767
    http://forums.adobe.com/message/6166722
    See if you are able to use just one All Pages menu widget at your site while taking advantage of the hierarchical Master page feature.
    http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-hierarchical-master-pages/
    We are aware of the performance issues caused by the Menu widget (All pages type) and is something being looked upon by the engineering in one of the upcoming releases.
    Thanks,
    Vinayak

Maybe you are looking for

  • How to write the SQL codes  of the login system for a database system

    If I have a table stored with a Column staff_ID and Password. How can I make use of this 2 columns information to setup the login system?

  • How to email a flash animation

    I am trying to email a flash animation to our sales force. I cannot seem to make this work. The only way that works is making it an animated gif. However, when I do this, it looks more like an illustration and my text gets all outta whack. I have rea

  • Quick link for anonymous user

    People, Can somebody tell me how to use a quick link for anonymous user I'm able to access this http://<server>:<port>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.caritor.Student!2fcom.caritor.iviews!2fKMNavigationview but http://<serve

  • Download Linked File Save As interference with the Dock

    I have two LCD monitors running at 1440 x 900 (the OS recognizes these LG monitors and establishes the resolution). It seems when I switch to 800 dpi vertical the problem disappears. When I am on a web-site and Right-Click to save a file (Download Li

  • Co-mingling Flex and HTML

    I have a pretty robust Flex application that I am working on and I have some Help documentation that is static HTML. I am using the TabNavigator as my navigation and one of the tabs is this help documentation. I have a couple of questions now: 1. Can