Access to Insert toolbar

Does anyone know a way to access the Insert toolbar when using file types that do not normally include html? For example JavaScript.
Once again the devs at Adobe are trying to tell me how to edit by disabling the Insert toolbar when editing a JavaScript document. I want to include some code I don't always keep at the top of my head as a sting for innerHTML, but when I went to click on the item in the toolbar it was grayed out. I click on a php file and the toolbar comes back.
So far I'm finding more and more that I might need to look for another editor. They take features away, or the enhance them to the point I can't use them.
Anyone remember the days of Homesite? BEFORE Macromedia bought it, then Adobe gets it buy buying Macromedia?
Anyway, if there is a way to tel DW to give me access to the Insert toolbar regardless of file type I am using, please let me know.
Thanks,
Cy

No, you're wrong, I DO need the toolbar. Otherwise what you are suggesting is that I write my code someplace else, then place it in the JavaScript. Easy enough, but still defeats the purpose of having an editor that meets the needs of the user doing the editing.
Simplicity and efficiency is the key, and disabling the toolbar, forcing me to edit other than where I need to, is far from efficient.
Thank you for the response. Don't take my reply the wrong way. I just have a difficult time with programs that are supposed to make my life easier doing the exact opposite.
I know the devs cannot think of every scenario, but if HTML can be written in JavaScript (which it can) then why disable the toolbar or other areas that can insert HTML? It's as if those things are more for the designers that don't code much. I'm a coder, but I certainly don't remember the code for every special character. I rely on DW to help me in that area. However with the toolbars and menus disabled I can't access that info. Instead I have to stop and get out the program, go on the web and find it, or open a book, or open a blank doc and use the toolbar that way. All for something that could have been just a click away, and I could go on being a happy coder.
Cy

Similar Messages

  • Access pre-insert data using ViewObjects

    Hi,
    I’m trying to access pre-insert data (before super.doCommit() execution) using viewobjects, but I only obtain committed data. Is it possible to obtain pre-insert data using viewobjects?
    Here the Java code:
    String amDef = "oracle.srdemo.model.AppModule";
    String config = "AppModuleLocal";
    ApplicationModule am =
    Configuration.createRootApplicationModule(amDef, config);
    ViewObject vo = am.findViewObject("DatetestView1");
    System.out.println("Query will return "+ vo.getEstimatedRowCount()+" rows...");
    vo.executeQuery();
    while (vo.hasNext()) {
    Row curPerson = vo.next();
    System.out.println(vo.getCurrentRowIndex()+". "+
    curPerson.getAttribute("Id")+" "+
    curPerson.getAttribute("Dataini"));
    Configuration.releaseRootApplicationModule(am, true);
    I'm using JDeveloper 11g, a Fusion Web Application and ADF Business Components
    Thanks in advance.

    Hi Timo,
    According to your instructions, I obtained current ApplicationModule and the issue was solved.
    Here the Java Code to get ApplicationModule from Iterator:
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding dciter = (DCIteratorBinding)bindings.get("DatetestView1Iterator");
    DCDataControl dc = dciter.getDataControl();
    ApplicationModule am = (ApplicationModule)dc.getDataProvider();
    AppModuleImpl am2 = (AppModuleImpl)am;
    ViewObject vo = (DatetestViewImpl)am2.findViewObject("DatetestView1");
    Thank you vey much,
    Olga

  • Shortcut to access the "bookmarks toolbar"

    It could be smart if you could access he "bookmarks toolbar" with at keyboard shorcut
    If we say the shortcut was "ALT + B"
    Now you are on the "bookmarks Toolbar
    Here you have some "often-used bookmarks" - lets say: "Google Maps", "Youtube","IMDb","Facebook","mozilla"
    Now imagine how easily you can get for instance Youtube:
    Just Tab "Alt+B" and then "Y" (for the Youtube-bookmark)

    hello T-buch, you can already do something similar without a shortcut to the bookmarks-toolbar. right-click a bookmark, go to properties and assign a keyword for it (maybe "Y" in your example for youtube). you can then jump into the addressbar (F6, Alt + D or Ctrl + L), type the keyword and hit enter to go to that site...

  • Dreamweaver Insert toolbar

    I cannot use the insert toolbar, it stays greyed out whatever
    I try to do!
    I also cannot do edit-redo to repeat my last action as it is
    also greyed out.
    Does anyone know how to 'unlock' the INSERT toolbar?
    I have tried it on template and non template pages - always
    the same.
    Thanks.

    What DW, what OS, and have you tried uninstalling and
    reinstalling?
    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
    ==================
    "ROGM" <[email protected]> wrote in message
    news:ejl48c$sut$[email protected]..
    >I cannot use the insert toolbar, it stays greyed out
    whatever I try to do!
    >
    > I also cannot do edit-redo to repeat my last action as
    it is also greyed
    > out.
    >
    > Does anyone know how to 'unlock' the INSERT toolbar?
    >
    > I have tried it on template and non template pages -
    always the same.
    >
    > Thanks.
    >

  • Under Bookmarks in the Menu Bar, I can access my Bookmarks Toolbar, but I can't get it to appear on screen as a toolbar.

    I think I've put the necessary details in my question. When I click on Bookmarks, I can access the ones under Bookmarks Toolbar, but I want to see them below the Menu and Navigation bars.

    This would show Bookmarks Toolbar checked, but the items were not appearing on the screen below the menu and navigation bars.

  • Date/Time Field in Access 2000 - INSERT INTO ... syntax error

    I am using Labview 6.1 Professional with the Database Connectivity Toolkit. When I execute this SQL Command "INSERT INTO PRODUCTION (Part, Passed, Date) VALUES ('Part#1', 2, '10/10/2003 10:10:10 AM')" I get a Run-Time Syntax Error. If I remove the Date Label and Date Value it works. What is the proper Format of the Date/Time Type Field in ACCESS 2000 for Labview 6.1 SQL? I have seen and tried all of the solutions already posted like MSG 1ZNAJHJ6.

    Well, if it's any consolation handling dates is a pain regardless of which database you use. In any case, I created a table with the following definition:
    CREATE TABLE testing
    (item1 INTEGER,
    item2 DATE)
    I them did the following insert:
    INSERT INTO testing
    VALUES (1, '18/11/1953 04:20:00');
    And everything worked fine. Note that in the date (my Bday, BTW) the format is DD/MM/YYYY followed by the time.
    What exactly is the error you're getting? Can you post the exact text of the error message. Also, I ran my test using the examples that come with LabSQL--not the toolkit.
    Mike...
    Oops, just noticed something. You have a column name that is probibly a reserved word "Date". Try your insert as:
    INSERT INTO PRODUCTION
    VALUES
    ('Part#1', 2, '10/10/2003 10:10:10 AM')
    If there is only those three columns and they the order the data appears is the same as the column order, you don't need the column list. If this works (and it should--I just tried it) I would only view it as a temporary patch. The column name should be changed.
    This is also a good reason to not use the Access GUI to create tables. If you tried creating a table like that in SQL you would have gotten an error message. Learning to build tables in SQL code isn't hard and it adds an extra layer of error checking that the GUI apparently doesn't think is important.
    If you're interested let me know and I can send you the info on a really good book on SQL...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • HOW DOES ONE ACCESS / OPEN INSERTED SD CARD CONTAINING MP3s WITH ITUNES?

    Hello,
    How does one access / open an inserted SD card containing MP3s with ITUNES?
    Thanks
    < Edited by Host >

    File > Add Folder {or File} to library.

  • I want to access my Bookmark Toolbar with the Apple Key

    Is there a way to have Firefox access the bookmarks in my bookmarks toolbar using the Apple Key + a number key?
    For example, hitting Apple+1 would go to the first bookmark on my toolbar, Apple+2 would go to the second, etc.
    Thanks

    Thank you. very helpful. I have not found all the JSON and other files, but I now think I now what to do, and will be able to get to where I want.
    Once again, thanks for efforts and reply

  • Why can't I access my att toolbar w/version 4.0?

    I made the mistake of downloading version 4.0, and, first, I don't like it, and my att toolbar has disappeared. Is this version made to be incompatible with add ons or what? It is most inconvenient as that toolbar has the ability to take me to my e-mail without actually opening it in the same tab, therefore leaving the ability to toggle between mail and home page. Is there a means of fixing this? Don't suppose there's a way to revert to the previous version of Firefox?

    hi dwhale2, unfortunately this is a regression with firefox 36. yahoo got contacted by mozilla about this issue - it would be up to them to provide an update to their addon to make it compatible with current versions of the browser again.
    this is tracked in [https://bugzilla.mozilla.org/show_bug.cgi?id=1131604 bug #1131604] (please don't post in bug reports)

  • Endnote is but endnote citation is not showing on the insert toolbar

    I downloded pages on my mac and endnote plug- in from http://support.apple.com/kb/DL1334.
    I see the insert> endnote however, I do NOT have endnote citation under insert option.
    Even pages> preferences does NOT have the endnote option. (Only, rulers and auto-correction are on pages preferences)
    Not sure, if I should be able to see endnote on my launchpad or not but i do not see it there either.

    elham1363,
    As this support document says, "If you downloaded Pages for Mac from the Mac App Store and want to insert citations from EndNote you will need to install the Pages EndNote Plug-in." You can download the plugin from that page.
    Unfortunately, even with the current version of the plugin installed, only some functionality is restored. You will be able to insert citations into the main body text of your document, but not into the footnotes. Also, you will only be able to use one of EndNote's default bibliography styles, even if you have customized which styles are your favourites in EndNote's Style Manager. These are both bugs, and hopefully Apple will fix them soon. To help encourage them to do so, file a bug report to complain at http://bugreport.apple.com.

  • My mouse is unable to access the top toolbar in websites and email with Firefox - this problem does not present in Windows XP or Internet Explorer

    My mouse is unable to connect with the top toolbar of my hotmail account and any other websites I visit using Mozilla as a browser. This problem does not occur when I use Internet Explorer

    The answer was perfect! I fixed the problem following the link. When I posted the question yesterday, I was not very optomistic that anyone would reply and/or help - but, I was wrong. The solution was quick and simple.
    Thanks very much!!

  • CS4 Mac Insert Toolbar

    This is truncated in CS4 so I can't see the tabs for my divaFAQ or YUI extensions. I'm in Classic workspace. Can I fix this graphical flaw?

    Am I really the only one affected by this bug?

  • Strange Access Connection​s toolbar icon

    Can anyone explain what the X means in this screenshot? I am online and able to surf, so not sure what it means. Thanks

    WiFi signal detected, but you're not connected.

  • How do I remove the cover to access the back of my 5c and insert the sim

    How do I remove the cover of my 5c in order to access the back of the phone to insert the sim?

    You DON'T remove the cover to access and insert the sim card in the the phone.
    The sim card tray on an iPhone is either at the top of the phone or on the side of the phone - just look at the top and then use the sim card tool that came with your phone and this will open the sim card tray.  You have no need to take the back off your phone whatsoever and has already been pointed out, if you do so, you warranty is voided, as the casing of iPhones are NOT designed to be removed.

  • When NOT using icons on the toolbar, side-bar drop-down for additional toolbar items has disappeared with Firefox 4 and accessing these items requires clicking 'Bookmarks', then 'Show all bookmarks' then 'Toolbar'--ugh, what a pain.

    On older versions of Firefox, Toolbar links ran across the top of my screen, with a drop-down to the far right which would show additional Toolbar items for which there was not room on the screen.
    With Firefox 4, if I'm not using icons (text only), the dedicated Toolbar drop-down is gone and I have to first click 'Bookmarks' to the right of the Toolbar ribbon, then 'Show All Bookmarks', then 'Toolbar' in order to access my additional Toolbar links. Could anyone have made it any harder?
    Why doesn't someone just restore the drop-down at the far right of the Toolbar so that all of my Toolbar items (which I prefer to keep separately from the regular Bookmark items, else I would have just plain bookmarked those items in the first place) are readily accessible?

    You see the orange (on Linux gray) Firefox button if the Menu Bar is hidden (View > Toolbars > Customize or right-click a toolbar).<br />
    If you need to access the hidden Menu bar then press F10 or hold down the Alt key to make the Menu Bar appear temporarily.<br />
    You only see the Bookmarks menu button if the Menu bar is hidden.

Maybe you are looking for

  • Can you get an Apple ID for corporate use to associate with more than 10 devices?

    Can you get an Apple ID for corporate use to associate with more than 10 devices?

  • Error while trying to start oc4j 11g in standalone mode

    I get this error while trying to start oc4j 11g (that comes with JDeveloper 11g Technical Preview 2 ) in standone mode. Any ideas ? Sep 17, 2007 6:29:21 PM com.sun.faces.spi.InjectionProviderFactory createInstance INFO: jsf.core.injection.provider_ge

  • Automatic creation of limit order

    Hi, We have a limit SC with an assigned source of supply (contract). But after approval this SC becomes a PR in ECC and not a PO directly. We are in classic scenario and all SC with source of supply should do that (including limit orders). What could

  • Sales Order data from CRM

    Hi all, I want to upload Sales Order data from CRM to BW with DataSource "0CRM_SALES_ORDER_I". The upload fails due to missing information that are needed in the first update rule of the Sales ODS "0CRM_SALO". In this update rule some formulars on da

  • I cann't download music from ovi center

    can anyone help me please how can i download music from ovi as it keep asking me for voucher no what is this number note i have nokia e7 mobile