Most useful aditional Behaviors?

Which behaviors from Dreamweaver Exchange do you find the most useful? Are there some must-have DW Behaviors that aren't included it the program, but are widely used by websites developers?
I know that depend on your developer's need, but I want to know which ones you think are a must have.

I don't use Behaviors much.  As you say, they are pretty basic.
I use Tools, Widgets and Extensions from the following:
Floatbox
HighSlide Js
Project VII
KaosWeaver
Community MX
DMX Zone
Cartweaver
Massimo Corner
4 Level
In addition, I often use Plug-ins for the major open source JavaScript / Ajax Libraries -
http://plugins.jquery.com/
http://mootools.net/core
http://developer.yahoo.com/yui/
When you want to know how something is done on a web site, View source in your browser to see the code.  Often this will give many clues as to which plug-ins and script libraries they use.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • How can I move most used mail accounts to appear at the top of the list when I open my mail app?

    I have updated iPhone4 to IOS7 and now my mail accounts are in new order.   I have several accounts but a few that need to be the most visible.  Not sure how iPhone mail app is sorting them but it sorting it but definitely not alphabetically or by most used.  Anyway, I finally figured out how to reorder them to suit me and, since help wasn't found on forum, thought I'd share:
    Open Mail App, then use "Edit" from top right.  You'll see a 3-bar icon to the right of each mail account.  Use it to slide accounts up/down to where you want them.  Works also for any Gmail accounts you might have.
    Sometimes it's the simple things

    cor-el, thanks for the tip. While I certainly scoured Adobe's preference settings to look for something relating to that exact thing, I never went to their help site until I got your post. I found out that the floating toolbar appears because the PDF opens in'' Read Mode'', which you can turn off for all future documents by doing this:
    * Quit your internet browser
    * Launch Acrobat (or Reader)
    * Choose Edit>Preferences
    * Click on the Internet category on the left
    * Deselect “Display in Read Mode by default”
    * Click the OK button.
    * Relaunch Acrobat
    Something important to note, if you have both Adobe Acrobat and Adobe Reader, you need to do the above in both programs (same steps).

  • How do I get my 8 most-used bookmarks to show on the bookmark toolbar in version 29?

    I was automatically upgraded to Version 29. I have always used the bookmark toolbar to keep my 8 most-used bookmarks one click away. I can't figure out how to do that any more.
    There are other changes that I dislike, and the classic theme restorer add-on was able to take care of the. But this one item is a deal breaker for me. Fortunately, I found and downloaded version 28 today. If I can't get this issue resolved, I will step back for now.
    Not all of us have Windows 8 and touch screens!!!!!!!!!!!!

    What is the problem, exactly? Is the Bookmarks Toolbar not displayed? Simply right-click an empty area of the tab bar and make sure "Bookmarks Toolbar" is checked.
    * [[Customize Firefox controls, buttons and toolbars]]
    Firefox 28 isn't safe to use. It contains security vulnerabilities.
    * https://www.mozilla.org/security/known-vulnerabilities/firefox.html

  • Shopping cart creation category dropdown selecting the most used category

    Hi SRM gurus,
    While creating a shopping cart one of our most used category gets selected by default before we start doing anything.
    Everytime we have to change the category.
    Is there a way that will become blank and we can select from the dropdown or the find list.
    Kindly suggest.
    We are using SRM component version 4.0, SRM server 5.0, our patch level 0008.
    Thx. & reg.,
    Sridhar.

    Hi
    <b>Yes.. This was happening with us when we used SRM 4.0 version.
    We have used an  BADI Implementation to resolve this issue.</b>
    <u>The BADI name is <b> BBP_F4_READ_ON_EXIT </b></u>
    For Product category -> Product category (attr. WGR, PRCAT)  GET_CATEGORY Method, you need to go ahead.
    <u>Read the documenation of this BADI and you will get the problem resolved after implementing the same.</u>
    Here is the documentation
    BBP_F4_READ_ON_EXIT
    Short Text
    Restrict the Display in Input Helps and Search Helps
    You can use the Business Add-In (BAdI) BBP_F4_READ_ON_EXIT to restrict (or augment) the list of values and favorites that are output in the input and search helps. You can only process data elements for which input helps exist on HTML templates. The following three BAdIs are also available:
    BBP_F4_READ_ON_ENTRY
    Use this BAdI if you do not just want to restrict the favorites and values list but also want to select this yourself.
    BBP_F4_MEM_UPDATE
    BBP_F4_SAVE_DB
    The following three modules are used to process the values per data element:
    BBP_GET_<data element>_F4
    Supplies a list of all values and user-specific favorites. You can influence how this module works using BAdI BBP_F4_READ_ON_ENTRY and BBP_F4_READ_ON_EXIT.
    BBP_UPD_<data element>_FAV
    Updates the favorites in internal function group storage. You can influence how this module works using BAdI BBP_F4_MEM_UPDATE.
    BBP_SET_<data element>_FAV
    Writes the current favorites to the database. You can influence how this module behaves using BAdI BBP_F4_SAV_DB.
    Use
    Only implement this BAdI and only program the appropriate method if you want to restrict or augment the value set of standard selection.
    If you determine favorites using a BAdI, the standard modules do not process the favorites further. Warning: If, deviating from standard selection, you determine the list of favorites yourself using a BAdI, you have to temporarily store the favorites in the methods of the BAdIs and carry out final saving to the database yourself.
    Standard settings
    If data is added via the methods, no check of this data occurs. The check has to occur in the methods themselves.
    The interfaces of the methods of the BAdI are (almost) always the same:
    IV_LANGUAGE
    Language for determination of the texts
    IV_USER
    User for which the values are requested
    ET_<data element>_LIST
    The list of valid values changed by you
    EV_X_FAV_PROCESSED
    Use "X" to stipulate that you have filled the favorites list. Only present if favorites table exists for relevant data element.
    ET_<data element>_FAVOURITES
    Changed favorites list for user IV_USER. Only exists if favorites table exists for relevant data element.
    The methods have to fill the structures of the transfer tables completely. Incompletely filled structures can cause followup errors and unforseen consequences.
    Activities
    Reading of value lists and favorites using function module BBP_GET_<data element>_F4 occurs as follows:
    1. First the BAdI BBP_F4_READ_ON_ENTRY is called. It is possible to fill the input list (and favorites) with default values.
    a) In the case of default values, exactly these values are returned to the initiator. No further processing or check occurs and the module is exited.
    b) If no default values exist, the standard selection is carried out.
    2. Before the values are transferred externally you can restrict or augment the number of hits using the BAdI BBP_F4_READ_ON_EXIT. You can therefore delete entries from or add entries to the input list or favorites list.
    3. BAdI BBP_F4_READ_ON_EXIT provides an individual method for each data element for which an input help and/or favorites table exists. These are listed below.
    If you use this method, you need to indicate processing using the parameter EV_X_LIST_PROCESSED or EV_X_FAV_PROCESSED. Otherwise the selection is lost.
    List of available methods per data element in BBP_F4_READ_ON_EXIT:
    Field/Data element  Method
    Currency    GET_CURRENCY
    Region    GET_REGION
    Country    GET_COUNTRY
    Language    GET_LANGUAGE
    Industry     GET_INDUSTRY
    Academic title    GET_ACADEMIC
    Time zones    GET_TIMEZONE
    Procurement cards   GET_PCARD
    Legal forms     GET_LEGAL
    Format for name format    GET_NAMEFORM
    Quality management systems    GET_QMSYSTEM
    Fixed values    GET_DOMVALUE
    Form of address texts    GET_TITLEKEY
    Units of measure   GET_UNIT
    Bank data    GET_BANKINFO
    Tax number types   GET_TAXNUMT
    Tax numbers per country    GET_TAXTYPE
    Tax groups per tax type    GET_TAXGROUP
    Terms of payment    GET_PAYMTERM
    RFC destinations   GET_RFC_LOGS
    Logical systems   GET_LOGSYS
    Tax codes     GET_TAXCODE
    Catalogs (attribute CAT)   GET_CATALOG
    Roles (attribute ROLE)   GET_ROLE
    Account assignment categories (attribute KNT) GET_KNT_ATTR
    Purchasing organizations (from PdOrg)  GET_PURCHORG
    Purchasing organizations (per company)   GET_PORGCOMP
    Purchasing group (from PdOrg)  GET_PURCHGRP
    Purchasing group (per company)  GET_PGRPCOMP
    Product category (attr. WGR, PRCAT)  GET_CATEGORY
    Products    GET_PRODUCT
    Goods recipient plant (attr. REQUESTER)  GET_GRCPLANT
    Goods recipient user (attr. REQUESTER)  GET_GRCUSER
    Requester (attribute REQUESTER)  GET_BOBUSER
    Cost centers (attribute CNT)   GET_COSTCENT
    Asset classes (attribute ANK)   GET_ASSETCL
    Assets (attribute AN1)   GET_ASSETNO
    Asset subnumbers (attribute AN2)  ET_ASSETSUB
    Network (attribute NET)   GET_NETWORK
    WBS element (attribute PRO)  GET_WBSELEM
    Order (attribute ANR)   GET_ORDERNO
    Customer order (attribute AUN)  GET_SDDOC
    Customer order item (attribute APO)  GET_SDDOCPOS
    Document type (attribute BSA)  GET_DOCTYPE
    Transaction type (attribute TEND_TYPE)  GET_TENDTYPE
    <i>Incase you face any problems, do let me know.</i>
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • How do I get back the tab feature that has my most used webpages because when I open a new tab now, the page is blank. thanks. Annette craker

    After an update a few weeks ago, the tab feature that used to come up with boxes with my most used pages e.g. Facebook, Ebay, and many others just isn't there anymore. I can't find how to get this feature back. Please help.

    Do you have the Test Pilot Addon? Test pilot was expirimenting with new tab pages recently, to determine which new tab page should make it into a later version of firefox (probably 9 or 10). I believe the study is over now, so they have removed the new tab page.
    To get a similar feature search http://addons.mozilla.org for '''new tab page''' or '''Speed dial''' extensions.

  • Most use ful t code for Material Master changing

    Dear All,
    Can any one give me most useful T-codes for create, change and display material master.
    I have one T-code which is very useful for material master it is "MM50". With help of this tcode you can see material extend detail and also you can delete mass material with help of this tcode.
    So please use it and also give me other this type of tcodes.
    Regards,
    Mahesh Wagh

    Hi,
    MM17, LSMW, MM50 --- These are the 3 main transactions which is used frequently to Mass change the  Material master.
    There is one more option is there using BDC Upload.
    Batch Data Communication or BDC is a batch interfacing technique that SAP developed. It is mainly used for uploading data into the SAP R/3 system. BDC works by simulating the user input from transactional screen via an ABAP program.
    The data input data file will come in the form of a flat file which the user save as file type txt file or prn file from the Microsoft Excel program. An Abaper will create a program to read the text file and upload into the SAP system.
    Transaction -- SHDB will be used to record the change material master. After, the simulation, the Abaper can generate a sample program and modify from there. It makes the programming easier and faster.
    For a BDC upload you need to write a program which created BDC sessions.
    hope you got it. Take a help of  ABAPer for this BDC Upload.
    rgds
    Chidanand

  • What are the most useful/your favorite Ipod touch apps?

    I am currently in the market for an ipod and I'm just not sure if I need a touch or not. I would love a 16gig but they don't exist which means I have to spend a lot of money on 32 gig. Anyways, I am just curious if the investment will be worth it in the long run because of the app's. Yes, I realize that a useful app to you might not be to me and vice versa so I was just hoping you guys could list off some of the most useful ones for you guys personally so I can know what to expect. Thanks!
    Message was edited by: DreamAgainXI

    1. Apple's "Remote". I love the ability to control my computer (playing my iTunes library into my stereo) from anywhere in my house via wi-fi.
    2. "Units" (and others like it). Very handy tool to convert sq. feet to acres, meters per second to mph, N-m to ft-lb, etc.
    3. "Loan Shark" (and others like it). Very handy to figure out monthly payments on a loan given the interest rate/ term, calculating how much principle you will have paid after X months, etc.
    4. "Sports Tap". ¡Órale! Mexico just beat France 2-0!
    I have many others, but these I use a lot and find the most useful.

  • Contact order: I sort first names/Last: I enter phone numbers by priority, Most used (home or mobile), then work, then fax, and save.  The next time I use the phone, the order has been changed to work fax, home, mobile.  Using hands free in auto is a trip

    This is a pain when the phone re-sorts the order, when I need the most used number to be first using hands free in my car.   Who can get this corrected in the iphone software to leave the order in which I imput numbers alone.

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • I restored my most used sites page through troubleshooting but then downloaded stylish and the alt. browser came back when i open a new tab. Help?

    I downloaded some dodgy software and having cleared it up it seems to have installed an alternative browser (delta?) and toolbar to my firefox. I've uninstalled the toolbar, but when i open a new tab, instead of my most used pages, it came up with the delta browser. So I followed the instructions on here and troubleshooted and restored the default settings of firefox. This worked until I re-installed the add on Stylish to customise webpages, and now it seems to have come back. Having uninstalled stylish it hasn't changed. Can i not use stylish now, or is there a way of my completely getting rid of this delta, enabling me to use the add on as before?

    See:
    *http://info.delta-search.com/uninstall/firefox.html
    *http://deletemalware.blogspot.com/2013/07/remove-delta-homescom-removal.html
    * [[/questions/949921]]
    * [[/questions/943111]]
    Note that your System Details List shows multiple Flash plugins.
    # Shockwave Flash 11.8 r800
    # Shockwave Flash 11.7 r700
    You can check the Flash player installation folder for multiple Flash player plugins and remove older version(s) of the plugin (NPSWF32).
    *(32 bit Windows) C:\Windows\System32\Macromed\Flash\
    *(64 bit Windows) C:\Windows\SysWOW64\Macromed\Flash\
    You can find the installation path of all plugins on the <b>about:plugins</b> page.<br />
    There is no need to toggle the plugin.expose_full_path pref to true in Firefox 22 and later, so leave this pref set to false.
    *http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins
    *http://kb.mozillazine.org/about:plugins
    *http://kb.mozillazine.org/about:config

  • How can I get firefox to remember my most used websites when I change tabs?

    Have downloaded a new firefox and whilst the history is remembered I can't get my most used websites to comeup and when I move away from home page I get trovi which I have never used and don't want to use - just want things as they were

    Hi, I'm afraid Trovi is a browser hijacker, which will mess around with Firefox. Please work through [http://malwaretips.com/blogs/trovi-com-removal/ this article] and [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-caused-malware this article.] Hopefully one or more of the malware removers will fix it.
    ''If you receive a satisfactory answer, please help others having a similar problem, by marking it as 'Solved.'''

  • Motion 4 training series' book : "Using simulation behaviors"

    Motion 4 training series' book : page 198, "Using simulation behaviors", it is NOT working like it says in the book. After making the photos group a 3D object, I CANNOT select the rectangle tool. On which layer am I supposed to create a rectangle shape??? HELP!!

    Ben - thanks for trying to help out on this. The World Cup games are over and I can't think of any more reasons to procrastinate. This has been giving me a fair amount of grief.
    I'm very leery about doing the "Option+drag into Cog3" because of the difficulty in trying to "un-do". Un-do works sometimes but then sometimes it doesn't seem to work. Also, when it does un-do, sometimes it doesn't un-do it correctly. Can't figure out when it works and when it doesn't so Im very, very careful both going forward and with using the un-do option.
    Anyway, another reason why I'm leery about going to the next step with Cog3 is because Cog1 and Cog2 don't work together yet. "1" works by itself and "2" works by itself (with the opposite one just staying still in each case). It seems logical that the two SHOULD work together before moving onto Cog3; am I correct on this?
    When I went back in this time it was noticed that the "Link 1" is not there anymore. Maybe because when I exited I didn't do a Save? Here is what it looks like now with Link 1 gone:
    In order to tell Cog2 to work with Cog1, I dragged the Cog1 layer (as per Step 7) into the Add Parameter Behavior so that Cog2 will be linked with Cog1:
    For info #1: I *think* that when Cog1 was dragged and got to the box it looked like the little curved shortcut arrow but changed when it got there. I know it did it at least once - just don't remember for sure.
    For info #2: I didn't "click" (and let go) on the Cog1 layer; I just dragged it into the Source Object box of the HUD.
    The window shot appears to look exactly like it should (except for the shortcut arrow) but the ... dang ... gears .... still don't rotate together!!!  Arrrrgh! (sorry, this is just getting to me).
    Maybe it should it have been "Option-dragged"?
    Like I said, I'm afraid to move on to the Cog3 step if this hasn't been sorted out because I don't want to make a real mess of things.

  • What are the 5 Most Useful Shareware programs you've come across?

    I wanted to lighten the mood on the forum with all of the complaints about the MBP with something potentially useful to current users as well as potential users like myself. I was just wondering what were the 5 most useful shareware programs people have come across for their MBP? It can range from security add ons, or networking tricks, really anything that saves you a few minutes of your day that you think sets your MBP apart from other MBPs and other portables in general.
    Oh, and please try not to include the macsaber....yes it was funny...the first 10 threads....

    1. Radio widget from WU: http://radiotuner.wuersch.net/
    you can just add any radion stream (url), they also have a list on their website (needs real player)
    2. Transmit (very user friendly FTP)
    3. Macjanitor (keeps the system tidy)
    4. VLC player (plays most media extensions)
    5. Skype (Phone any lan or mobile in the world from you mac/pc for a fraction of the cost, as well as normal chat)
    Actually i think most of that lot is freeware apart from Transmit; bargain!
    honorable mention for Appzapper, SuperDuper, google earth and firefox.
    hehe, mactheripper made me giggle - great name..

  • Which type of Unix platform is most used by Company?

    Hi, there,
    I'm working on the Win2k using Ora.9.2,but in fact,
    I want to learn Unix ,because most of companies are running Oracle on Unix, however, as I know, there are
    many kind of unix, so my question is which unix is
    the most used by the business company(such as banks)? do all of unix have any in common? do they have common command available to all unix?? pls give me guides,thanks a lot!!!
    NewUnixer.

    Yes all Unix have a common base. Most commands are the same.
    The difference is in the Unix Kernel; how dynamic the kernel is, how the memory works, ...
    I think the more used is IBM AIX for the application server and Linux for "little" server (mail server, firewalls, ...). But i think Linux will be more and more used in the future cause it seems that some company will probably switch to Linux (we heard about HP switching to Linux for few years now and some rumors about IBM too...).
    Sun already sell some Sun Box with Linux on... and the reference OS of Oracle is Linux now...
    Fred

  • Can breadcrumb navigation be built in DW using the Behaviors panel?

    I don't know enough javascript to code breadcrumb navigation, and I'm hoping that there is way
    to create breadcumb navigation using the behaviors panel, or some other feature in DW.
    Thanks!

    Hi,
    there are some possibilities to insert breadcrumbs, one of them is a download extension from
    http://www.adobe.com/cfusion/exchange/index.cfm?searchfield=breadcrumbs&search_exchange=3& search_category=-1&search_license=&search_rating=&search_platform=0&search_pubdate=&Submit =Submit&num=10&startnum=1&event=search&sort=0&dummy_tmpfield=
    or
    http://www.kaosweaver.com/extensions/details.php?id=6
    or if you need only some informations you could look here:
    Breadcrumb
    http://irt.stanford.edu/webauthor/training/dreamweaver/breadcrumbs.html
    http://www.devarticles.com/c/a/Web-Services/How-to-Build-a-Dynamic-Breadcrumbs-Extension-f or-Macromedia-Dreamwever-MX/1/
    http://www.webstool.de/de/tipps_navig_breadbeisp.html (German language, but comprehensibly anyway I think)
    Hans-G.

  • The most useful GPOs in Windows Server 2012R2

    What are in your opinion the most useful GPOs in Server 2012 R2 that improving the work of the administrator and raising level of network security.
    Cloud you share your opinion. please?
    This topic first appeared in the Spiceworks Community

    Good Morning All,I'm currently trying to run a script to convert all xls files to xlsxI am using a script written here:
    https://gist.github.com/gabceb/954418The script as is:PowershellAdd-Type -AssemblyName Microsoft.Office.Interop.Excel$xlFixedFormat = [Microsoft.Office.Interop.Excel.XlFileFormat]::xlOpenXMLWorkbookwrite-host $xlFixedFormat$excel = New-Object -ComObject excel.application$excel.visible = $false$folderpath = "C:\temp\test\test_1"$filetype ="*xls"Get-ChildItem -Path $folderpath -Include $filetype -recurse | ForEach-Object `{ $path = ($_.fullname).substring(0, ($_.FullName).lastindexOf(".")) "Converting $path" $workbook = $excel.workbooks.open($_.fullname) $path += ".xlsx" $workbook.saveas($path, $xlFixedFormat) $workbook.close() ## Create old folder and move original files here $oldFolder = $path.substring(0, $path....

Maybe you are looking for

  • Vi to serial port to hyperterminal

    Hi guys. I am using 2 RS-232 cables to connect 2 ports together. I use 1 of the ports for hyperterminal. When I run my VI I wish to see what is displayed at the hyperterminal. However, all that I get is gibberish. May I know what is the problem? Plea

  • How to change the SERVICE_NAME in PL/SQL

    The service_name in PL/SQL Developer is PLSExtProc,but my database's ture name is ORCL.How to change the service_name in PL/SQL Developer?

  • Env 3 not compatible?

    Hello, I have an env 3, and with my mac, it doesn't show up on the desktop when I connect it. I started using I sync, and it found my phone via bluetooth, but now says "Isync cannot sync with this device." Why? Is there a different way to do this? Pl

  • Almost too embarrassed to ask

    I just finished reading through the first 14 pages of postings here and I'm more frightened of doing the OS X thing than ever. What are you people talking about? Permissions? Keychains? :<) My work Mac is a blue G3 with OS 9.1, which seems to suit my

  • Progress bar in my JSP

    I HAVE A JSP THAT TAKE SOMETHING OF TIME IN RUN DATABASE QUERIES, I NEED TO SHOW A PROGRESS BAR WHILE ITS RUN . HOW I DO THIS ? IN JAVASWING OR JAVASCRIPT? I NEED IT URGENT. I NEED TO KNOW HOW DO MY PROGRESS BAR. THANKS