Newbie on the extension of text question

Hello

I use Dreamweaver CS3 and I am trying to create a page of frequently asked Questions. I keep a list of questions that a visitor can click on, each expansion to reveal the answer (as many FAQ pages already do.)

What is the best way to achieve this? I tried a few samples of Spry, but they look like a terrible mess, and I know there must be a simpler way. Read around, people seem to be in contact with the concept of "to enlarge the text", but not really explain. I guess that's because it is so fundamental that I should already know how to do.

I'm self-taught (but willing to learn) - could someone ' a please point me in the right direction?

Thank you

Gayle

Go here - http://tjkdesign.com/articles/toggle_elements.aspand read about it.  It's pretty simple...

Tags: Dreamweaver

Similar Questions

  • How can I get the Extension toolbar icon to display the image without text (without affecting the other icons universally)? How can I change the text of the icons (except space)?

    «In the drop-down view menu, you can choose what to display toolbars: icons, text, or icons and text together.» By default, Firefox shows icons only. "Is it possible to choose a setting for a specific toolbar icon to be icon only (no text) without affecting all the other icons on the toolbars universally?

    Second, is there a way to edit the text on a toolbar button by another extension (because it takes up too much horizontal space in the toolbar because of the amount of text)? I do not know how to locate the xpi file and open it with Notepad, but then it is mainly (not English) code & FIND is not to search the text of the button (to change).

    These 2 questions should apply to the buttons of the Extension in general. However IF it makes a difference I'm talking for the toolbar button back to 7.0 top of the page that says 'Go to top/bottom '. I would like to at least change on "Go to", but my questions also apply to the other buttons Extension. I realize that it may be necessary to redo a fix/change whenever there is an update? Thank you.

    You should always see this icon that only the text of the label could be hidden.

    You can try this code in the file userChrome.css below default @namespace.

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    toolbar[mode="full"] #b2tTBUnicon { min-width:0px !important; }
    toolbar[mode="full"] #b2tTBUnicon .toolbarbutton-icon { margin-top:-20px !important; }
    toolbar[mode="full"] #b2tTBUnicon .toolbarbutton-text { display:none !important; }
    
  • CS6: create a simple extension: how to copy the selected text in the extension?

    Hello

    with this tutorial http://www.DWfaq.com/Tutorials/Extensions/simple_object.asp

    I created a very simple extensions in Dreamweaver CS6.

    But I can't find out how to get the code/selected text "in" this extension.

    I want to reformat the selection with the javascript code for the extension and replace the selected text.

    Thank you!

    mtemp

    Thank you very much for your answer!

    I didn't know the difference between these two methods - my google search for 'extension' led me directly to the old tutorial mentioned...

    And, Yes, I had to search long enough to find the 'object' extension on the fly on the menu...

    Now, I adapted the code referred to in the dreamweaver_cs5_extending.pdf for the creation of such an extension of command - and, wow, it works... with 'copy' the text selected in the extension form.

    So, thanks again! Now I'm on the right track

  • Mac question: where is stored the extensions

    I'll soon be upgrading to a new Intel iMac a G5 Mac desktop. I need to know where all the extensions are stored on the Mac, so I can make sure I don't lose them! (Still using Dreamweaver MX2004)

    Can someone let me know?

    Thank you
    Susie

    Thank you all. I can't believe that I didn't do a search for all .mxp files...

    :)

  • performance of the 10g search text fuzzy

    Hello to all members of this community,

    IM new to this and I have a question that belongs to the Oracle 10g text.

    My configuration:

    Oracle Database 10 g Enterprise Edition Release 10.2.0.4.0 - 64 bit

    8 cores with each 2,5 GHz

    64 GB OF RAM

    What I would do:

    I would like to compare a large amount of games of lines between them so that human caused errors (e.g. spelling, typos) will not be tolerated.

    My setup of CONTEXT of the TEXT is as follows:

    MULTI_COLUMN_DATASTORE with each column to compare.

    begin
      ctx_ddl.create_preference('my_datastore', 'MULTI_COLUMN_DATASTORE');
      ctx_ddl.set_attribute('my_datastore', 'columns', 'column1, ...'); 
    end;
    

    BASIC_LEXER - with the parameters of the GERMANS:

    begin
       ctx_ddl.create_preference('my_lexer', 'BASIC_LEXER');
       ctx_ddl.set_attribute('my_lexer', 'index_themes', 'NO');
       ctx_ddl.set_attribute('my_lexer', 'index_text', 'YES');
       ctx_ddl.set_attribute('my_lexer', 'alternate_spelling', 'GERMAN');
       ctx_ddl.set_attribute('my_lexer', 'composite', 'GERMAN');
       ctx_ddl.set_attribute('my_lexer', 'index_stems', 'GERMAN');
       ctx_ddl.set_attribute('my_lexer', 'new_german_spelling', 'YES');
    end;
    

    BASIC_WORDLIST - with the parameters of the GERMANS:

    begin
       ctx_ddl.create_preference('my_wordlist', 'BASIC_WORDLIST');
       ctx_ddl.set_attribute('my_wordlist','FUZZY_MATCH','GERMAN');
       ctx_ddl.set_attribute('my_wordlist','FUZZY_SCORE','60'); --defaults
       ctx_ddl.set_attribute('my_wordlist','FUZZY_NUMRESULTS','100'); --defaults
       --ctx_ddl.set_attribute('my_wordlist','SUBSTRING_INDEX','TRUE'); --uncommented due to long creation time of index
       ctx_ddl.set_attribute('my_wordlist','STEMMER','GERMAN');
    end;
    

    And a BASIC_SECTION_GROUP with a field_section for each column.

    begin
      ctx_ddl.create_section_group(
        group_name => 'my_section_group', 
        group_type => 'BASIC_SECTION_GROUP'
      );
      ctx_ddl.add_field_section(
        group_name   => 'my_section_group',
        section_name => 'column1',
        tag          => 'column1'
      );
    ...
    end;
    

    I create the index with

    create index idx_myfulltextindex on fulltexttest(column1)
    indextype is ctxsys.context
    parameters ('datastore my_datastore 
                 section group my_section_group 
                 lexer my_lexer
                 wordlist my_wordlist 
                 stoplist ctxsys.empty_stoplist')
    

    Everything works well functionally.

    In my test scenario, I had a table with lines about 100,000 that has a primary key that is not in the CONTEXT index.

    The problem:

    I do a query like:

    SELECT SCORE(1), a.* 
    FROM fulltexttest a 
    WHERE CONTAINS(a.column1, 'FUZZY(({TEST}),,,W) WITHIN COUMN1', 1) 
      AND a.primkey BETWEEN 1000 AND 4000
    

    This will do a full text search in a set of 3000 lines. Here, the response time is almost immediate. Maybe a second.

    If I do the same in a slider repeatedly (> 1000) with various search terms, we take one of course a lot of time. It does in the average 1 requests per second.

    I thought that this cannot be that slow and I tested the same with:

    SELECT SCORE(1), a.* 
    FROM fulltexttest a 
    WHERE CONTAINS(a.column1, '({TEST}) WITHIN COUMN1', 1) 
      AND a.primkey BETWEEN 1000 AND 4000
    

    NOTE there is no fuzzy search more...

    With that, it is up to 20 times faster.

    The cpu of the server about 15% charge when the fuzzy query processing.

    So:

    If I do a fuzzy search, it seems do not access the index. I thought I was saying to the index to calculate the results of 100 extensions in advance.

    I'm doing it wrong? Or is it not possible to build a particular Index to the fuzzy search?

    Are there suggestions to improve performance? Note that I have already read the guide (7 Tuning Oracle Text). None caused advice cure.

    I would be grateful if anyone can help me in this case... Or simply to give an indication.

    Thank you

    Dominik

    The attributes of a list of words can be used to specify how developed the stems and fuzzies create prefix and substring index.

    If you do a lot of research with generic characters from end, like partialword % then a prefix index can make these quick searches.  If you do the research with two wildcard characters, such as % partialword % then an index of the substring can make this faster research.  There is a trade-off between taking time and storage space to create and maintain the index with prefixes and/or substrings and time of the query.  You can specify the minimum length of a prefix.  The shorter length, prefixes no longer possible and the longer it takes to create the largest index.  So you need to use depends on what types of queries you expect most of the time.

    I don't know if you have tested from queries.  The attribute index_stems of the lexer and the attribute of forms derived from the word list generator are in conflict.  You must keep the generator attribute of forms derived from the list of words and do not use the attribute index_stems of the lexer.

  • How to control the duration of the animation of text?

    I found a question similar to this in a forum for another product, but the answering machine only knew the answer and simply recommended "autour experimentation until you understand", which perhaps is the useless answer never.  Laughing out loud.

    My question is: How can I do so a text animation brings the text and then allows the text to sit on the screen normally for awhile after that?  Currently, when I add a text animation, it insists on the extension of the duration of the clip as a whole, from beginning to end.  How can I limit the animation to, say, the first 2 seconds of text and then allow the text to sit normally for 8 seconds after that?

    You will need to create your own animation custom rather than using one of the presets.

    It's pretty simple, using animation keyframes for the motion effect. Just right click on the title on the timeline, select view properties, open the scenario of creating keyframes in the properties panel, and you can create an animation, you can dream!

    I explain how to do, step by step, in my books.

    http://Muvipix.com/PE9.php

    But you can get the basics of my free article "Keyfaming base" on the first Elements Muvipix.com support site.

    http://muvipix.com/products.php?searchphrase=basic+Keyframing&btn.x=0&btn.y=0

  • Mac adds the extension txt for dat files

    Hello

    I download the files with the extension dat but when are already downloaded I see another extension txt (F4409.dat.txt). I need to use dat files in another program and convert my file to text file prevents me to do. I would like to block the conversion of files without my approval on my mac. Remove the additional extension (.txt) does not help. I still can't use file in a program that I need for analysis of the data. Help, please.

    AS

    Download from which site?

    Download of what app (a browser)?

  • My Menu "Right click" on the links of text contains EACH Option of the Menu popup (or absent) and does not...

    When I right click on a text link (for example to "save the link under ' or 'Copy link location' etc.) the right click Menu that includes options for either:

    (a) EACH context menu (including images and videos and more... similar to this http://prntscr.com/z0k15 )
    (b) some of the relevant options, but not all (e.g. Save link as)

    ... in both cases, none of these options work, making it pretty useless right click Menu.

    This happens when a right click on the video or good Images. They work as usual. It is just text links.

    I tried:
    -Refreshing Firefox
    -Restart in Mode safe
    -Disabling the Extensions one by one

    None of this has worked.

    Any help would be massively apppreciated!

    Thanks in advance!

    Hi Toniy, please try to reinstall firefox with the full installer available through https://www.mozilla.org/firefox/all/

  • I want to uninstall the toolbar yahoo permanently, but the "Extensions" Manager is empty

    I read many forums to support for how to uninstall the yahoo toolbar. Some suggested it uncheck the menu 'options', who is hiding, but does not remove it permanently (which I did). Others have said that the only way to permanently delete is to go to "Add-ons Manager", click on "Extensions", find the yahoo toolbar and remove it. Everyone said that worked for them. However, when I do that, the "Extensions" menu is empty. I can't scroll down and find it because there is nothing there.
    So my question is twofold: why is my empty 'Extensions' when others have said that this work for them? And then how to uninstall that toolbar breath?

    Hello, this sounds like the files in your profile folder that store the information on your extensions has been corrupted. Please go to firefox > help > troubleshooting information > profile - display folder... then windows Explorer should open your profile folder. there looking for files named extensions.ini, extensions.sqlite, extensions.sqlite - journal (and in some cases also extensions.txt, extensions.rdf). delete or rename the files and quit firefox, they will be regenerated the next time you start firefox.

    See also the corrupt extension files

  • The extensions will not appear in the add-on Manager; Error of Java to start Firefox

    When I click on tools-> addons, modules Manager opens but no show extension in the "Extensions" tab.

    I think that the problem is related to a start-up error message I receive. Whenever I open Firefox, an error message titled '[JavaScript Application]' opens and displays the following text:

    aObj is undefined - chooseValue ((Sub 0),"name")@resource:///modules/XPIProvider.jsm:7032
    @resource:///modules/XPIProvider.jsm:7142)
    @resource://yoono/yoonoLog.js ([object Object]): 95
    @resource://yoono/yoonoLog.js ([object Object]): 49
    (@chrome://yoono/content/yoonoOverlay.js): 176
    (@chrome://yoono/content/yoonoOverlay.js): 88
    @resource://yoono/yoonoService.js ([object Array]): 949
    safeCall ((function (aAddonList) {try {for (var i = 0; I < aAddonList.length; i ++) {_self.addOns [aAddonList [i] user.user] = aAddonList [i]; if (YOONO_ID == aAddonList [i] user.user) {_self.setExtensionVersion (aAddonList [i] .version) catch ;}}}}}})) (e) {CONSOLESERVICE.logStringMessage (e) (;} aCallBack () ;}), [object Array]) @resource://gre/modules/AddonManager.jsm: 50}
    @resource://gre/modules/AddonManager.jsm ([object Object]): 964
    AOC_callNext() @resource://gre/modules/AddonManager.jsm: 120
    @resource://gre/modules/AddonManager.jsm ([object Array]): 959
    PL_getAddonsByTypes (null,(function (aProviderAddons) {'use strict'; addons = addons.concat (aProviderAddons); aCaller.callNext () ;})) @resource:///modules/PluginProvider.jsm:110}))
    callProvider ([object Object], "getAddonsByTypes", null, null,(function (aProviderAddons) {'use strict'; addons = addons.concat (aProviderAddons); aCaller.callNext () ;})) @resource://gre/modules/AddonManager.jsm: 78}))
    ([object Object], [object Object]) @resource://gre/modules/AddonManager.jsm: 957
    AOC_callNext() @resource://gre/modules/AddonManager.jsm: 126
    @resource://gre/modules/AddonManager.jsm ([object Array]): 959
    ([object Array])@resource:///modules/XPIProvider.jsm:3094
    completeAddon ([object Object])@resource:///modules/XPIProvider.jsm:3895
    getAddon ([object Object]) @resource://gre/modules/AddonRepository.jsm: 504
    ("[email protected]", completeAddon) @resource://gre/modules/AddonRepository.jsm: 536
    ([object Object])@resource:///modules/XPIProvider.jsm:3899
    ((function (aAddon) {use "strict";
    function completeAddon (aRepositoryAddon) {aAddon._repositoryAddon = aRepositoryAddon; self.addons.push (aAddon); if (self.complete & & self.addons.length == self.count) {self.callback (self.addons) ;}}}

    If ("getCachedAddonByID" in AddonRepository) {AddonRepository.getCachedAddonByID (aAddon.id, completeAddon) ;} else {completeAddon (null) ;}}), 0, [object Array])@resource:///modules/XPIProvider.jsm:4796}}
    (0)@resource:///modules/XPIProvider.jsm:4795

    Any help would be appreciated.

    -Jason

    I had the same problem.
    (1) to fix it, you can check what addon is responsible for this mistake by viewing the extensions.log file in you profile file (lines).
    (2) access to the extensions of subfolder in your profile folder and delete appropriate addon xpi file or folder addon if it is not packed in xpi file.

    But ideally Firefox should protect Manager addon is better error in Addons (same addon disabled may cause this error).

  • Since the upgrade to the latest version of firefox, I have only the icons in my firefox bookmarks; checking 'icons and text' in my 'Favorites to customize' does that not affect google toolbar Firefox, how do I get the icons and text in Firefox bookmarks?

    I've upgraded to firefox 8.0.1 and now my favorites have only the icons and no text. By clicking on "icons and text" in PREFERENCES, affects only the Google toolbar and not Firefox bookmarks.
    How to restore the icons and text to my "bookmarks toolbar"?

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • From Firefox 8, I can't see the extensions.rdf file. Is that what it was replaced/renamed/obsolete?

    After Firefox 8, I can't see the file extensios.rdf as before. Basically, I used to get the key firefox for example {ec8030f7-c20a-464f-9b0e-13a3a9e97384}, then get the FF version via em: minVersion / em: maxVersion.

    Extensions.SQLite has replaced the extensions.rdf file in Firefox 4.0 and later versions. It is not a simple ' text' file as was the RDF file format.

    Sorry, I don't understand what you mean by «get the key to firefox»

    If you are looking to change the extension maxVersion property, don't change in the file install.rdf for each particular extension.

  • in the browser, no text appears in the box under the pointer/finger

    In the browser window when I ordered the cursor/pointer finger to an item, the window/box/bubble will appear below, but it does contain no text containing information about the item. It works once outside the window open FF, ie toolbar, bookmarks, etc., but not in or on a Web site. I checked Flash State (OK) and tried to turn the blocker on and outside, without change.

    Try disabling the extension of the Google toolbar.

  • Write to the file of text formatting issues

    My apologies if I touch on a topic that is discussed elsewhere.  I have two questions, which seems to be related, I'll have to overcome the difficulties.  I date of blood collection, converting it to a temperature and then writes the timestamp, temperature, voltage, and original tension to the file.  Currently, when I write these values to the date and time of the file appear on a single line, temperature and tensions appear on the next line, and then there is a space before the pattern repeats.  In addition, before data are collected I write information in a header, and if you look at the .csv file attached, you will see that the data are that all offset a column to the left.  Any ideas how I can fix this problem?  My code is probably speaks for itself, but I really am a novice, so any general idea in the non-jargon terminology will humbly accept.  Cheers, Peter.

    GEO,

    Do not build your strings in an array of strings.  An array of strings are written a / line in the function "write text to a file.

    Use the function to concatenate strings and string together a tab character between the date/time and the first value.  The "write text to file function will add its own chain of end of LIFE at the end of writing.

  • Where to enter the extension assessment for MS2012 code?

    I use a trial version of measurement Studio for Visual Studio 2013 2012 until my company can obtain the complete license ordered.  My 7 day trial period is only exhausted and I need to extend it.

    I got an extension code successfully, but I can't find out where to go.  All help topics I've seen on the extension of the assessment periods said to launch the product and a dialog box appears asking me to extend my evaluation, but...  Measurement Studio is integrated into the Visual Studio environment.  It isn't sort of 'start', that I can tell and so no dialog very convenient.  I tried to enter the code as an activation code in the License Manager NOR, but he just said the code is not valid (I checked it several times without typos), so I think that is a correct either.

    ... Help?  Anyone know what I need to do here?  (Except, of course, get this full license as soon as POSSIBLE, which was always the plan anyway.)

    Oh Lord.  I apologize for wasting your time.  I was a dumb user.

    When you generate the evaluation code, I chose the wrong version of Measurement Studio - should have been 13.0, not 2102.  Without surprise, when I provide the correct information, the extension of the evaluation is successful.

    Sorry about that.  It was one of those mornings.  Successfully done, I'll just go over to gather information for the * other * question you helped me with...  Thanks a lot for you, assistance and patience.

Maybe you are looking for