DW equivalent to this GoLive action?

I have a site with some elements using Nate Baldwin's SetImageAndLink.action.
I'm trying to find the same behavior or extension for DW CS3/5 so that I don't have to re-install GL just to edit a few pages.
If it doesn't exist, I'll buy a beer for someone who would make it for us!
Much obliged!
-jon

Hmm... I'll have to fix the 2010 image, but the others years are available... .
Rolling over 1997 brings up the cover images for May 1997 & December 1997 -- a basic image swap; however, it also assigns a link to the particular backissues for that year, so that you can click through to them.
The same is true for the following years.
This was created with one of Nate Baldwin's actions for GoLive, & as I add new links here, I'd like to be able to re-code it in DW. If that behavior is available, I may just not know what it's called, or perhaps there is an extension out there that can be installed.
Thanks.
-jon

Similar Messages

  • GoLive Actions to Dreamweaver Behaviors

    GoLive Actions developed by actionscafé are now being
    ported over to Dreamweaver Behaviors.
    If you're an ex GoLive user and are holding back switching
    some of your site(s) over to DW because you can't find replacement
    Behaviors for actionscafé software, contact
    [email protected] Priority in porting Actions over will be
    given to user's needs.
    Several of the most popular Actions have already been
    converted. Check
    http://www.actionscafe.com/info-Behaviors.html
    to see what's available now.

    I think (I haven't read his PDF) that what he is talking
    about is a library,
    much like Prototype or J-Query where you insert a link to the
    .js file in
    your document and the use the functions that are in the
    script to set
    certain behaviors on your page. Dreamweaver will have
    something similar in
    CS4. This type of functionality is good for people who don't
    know how to
    write advanced scripts but want to feel like they are ;-)
    Al Sparber - PVII
    http://www.projectseven.com
    Fully Automated Menu Systems | Galleries | Widgets
    http://www.projectseven.com/go/Elevators
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:g58nr5$71l$[email protected]..
    >I get that. I just don't get *it*! 8)
    >
    > --
    > 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
    > ==================
    >
    >
    > "Al Sparber - PVII" <[email protected]>
    wrote in message
    > news:g58nee$6ht$[email protected]..
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:g58im1$1ps$[email protected]..
    >>>I don't know - I still don't get it, honestly.
    >>
    >> Behaviors in DW are assigned to a tag. Commands are
    much more powerful.
    >> Actionguy can do exactly what he wants to do but
    must use a command. The
    >> Golive actions are archaic and no more modern than
    DW behaviors except
    >> for the built-in capability to create a script
    library. The rest is all
    >> 1999.
    >>
    >>
    >> --
    >> Al Sparber - PVII
    >>
    http://www.projectseven.com
    >> Fully Automated Menu Systems | Galleries | Widgets
    >>
    http://www.projectseven.com/go/Elevators
    >>
    >>
    >

  • What is the non-recursive stack based equivalent of this function?

    what is the non-recursive stack based equivalent of this function?
         static void _try (int n)
              int i; if (n==4) print(); else for (i=0; i<4; i++) if (is_free(i,n)) {
                   x[n] = i;
                   _try(n+1);
         }

    It goes infinite no output. Thanks though.
    public class CopyOfDamen { // x[i] = x coordinate of queen in row i.
         static int N = 4; static Stack stack = new Stack(); static int [] x = new int[8]; public static void main(String [] par) { _try(); }
         // prints field
         static void print ()
              int i,j;
              System.out.print ("+----------------+\n");
              for (i=0; i<8; i++) {
                   System.out.print ("|");
                   for (j=0; j<8; j++)
                        if (j==x) System.out.print ("<>"); else System.out.print (" ");
                   System.out.print ("|\n");
              System.out.print ("+----------------+\n\n");
         // tests, whether (ix, iy) is beaten by queens 0...(iy-1)
         static boolean is_free (int ix, int iy)
              int i;
              for (i=0; i<iy; i++)
                   if ((x[i]==ix) || (Math.abs(x[i]-ix)==Math.abs(i-iy))) return false;
              return true;
         // tries to place queen n on row n
         static void _try () {
              int i = 0, n = 0;
    call:
              for(;;) { // forever
                   if (n == N) {
                        print();
                   } else {
                        for (;i < N; i++) {
                             if (is_free(i,n)) {
                                  x[n] = i;
                                  System.out.print(x[n] + " ");
                                  n++;
                                  stack.push(i);
                                  i = 0;
                                  continue call; // call _try (but first save state and initiate new state)
                        } System.out.println();
                   // _try returns (check termination criterion and restore state)
                   n--;
                   if (n < 0) break; // terminate
                   i = stack.pop();
    } class Stack {
         int StackSize = 32, top = 0; int [] stack = new int[StackSize]; public Stack() {} void push(int x) { if (top < StackSize) stack[top++] = x; } int pop() { if (top >= 1) return stack[--top]; return -1; }

  • Why is this Automator action so slow?

    I created the following action to create a new folder on the Desktop after prompting the user for the name:
    -- Ask for Text
    -- Set Value of Variable (created one called FolderName)
    -- New Folder (I put FolderName in the Name: field)
    -- Rename Finder Items (adds Date to the beginning of the folder name)
    Every time I run this Automator action (as an application or as a Finder plugin), it takes ELEVEN seconds just to get to the Ask for Text prompt. The actual script runs fine after that.
    Is there something I could do to speed up this action? Doesn't Applescript do this much faster?

    I'm not sure - Automator applications need to load a bunch of stuff, but the following one only takes a few seconds on my machine:
    1) Get Value of Variable (Today's Date set in your custom format with a trailing space)
    2) Ask for Text (Ignore Input)
    3) Set Value of Variable (Name: Folder Name)
    4) New Folder (Name:Today's Date and Folder Name variables)

  • Equivalent for this code

    Hi, Could you please let me know what is the EQUIVALENT for this code. This code replace 2 number of  0s or 1s to Just one 0 or 1. The code is very very slow when the input string is very big. Is there any way to replace it with something faster.
    Thanks 
    Attachments:
    Untitled 1.vi ‏7 KB

    This code takes 1ms to run on a string of 60,000 characters (one continuous string of 0's and 1's).  Whereas using your code, it takes about 900ms for the same string.

  • HT4009 I get a letter in zynga poker, for iPhone, saying "please contact iTunes support to complete this trans action." So what should i do?

    I get a letter in zynga poker, for iPhone, saying "please contact iTunes support to complete this trans action." So what should i do?

    http://apple.com/support/itunes/contact/

  • GoLive Actions, CyberGallery in particular

    For those who are "married" to GoLive and just can't make the DW transition (me being one of them), I am always looking for useful GL Actions but have found the number of developers to have dwindled. GoLive CS2 is still a very vibrant and ultimately useable application, but Adobe has stopped making and selling it since the spring of 2008. While we can lament and protest all we want, GoLive isn't coming back, but fortunately all is not lost when it comes to Javascript Actions which plug in to GoLive's simple and useful interface.
    With my most recent project, I needed an Action for a photo gallery page and did not want to resort to using Flash because of its incompatibility with the iPad. Being a very frequent user of Actions, I came across an action called CyberGallery from ActionsCafe.com which does exactly what I was looking for. I can't say enough about how useful this Action is and what a breeze it is to use inside the GoLive framework. Walter Blady (Mr. ActionsCafe) has always produced (and continues to distribute) a wide selection of extremely useful GL Actions. Ww can, at least, rest easier in knowing that some developers are still out there with stuff for GoLive. Maybe they won't be making NEW things for GoLive, but the selection these guys offer is more than adequate.
    Yes, I am a daily GoLive user and rely on these actions for every site I design. While ActionsCafe has ported most of their GL Actions to Dreamweaver, they still continue to offer almost everything for GoLive as well. While Adobe has stopped posting Actions on this website, and most other Actions developers have long since stopped making or distributing their Actions, ActionsCafe is a really good source for GL Actions for GoLive diehards who still don't want to switch to Dreamweaver or to resort to using Flash for things like photo galleries and such.

    Hi there,
    Code snippets have changed for Edge Animate CC 2014: they are categorized by type, and allow you to choose which elements are being targeted. Please refer to the attached screenshot:
    hth,
    Joe

  • When user click on Submit in the salesquote then this submit action needs to be captured in the BeforeSave script file

    Hi Expert,
    Explanation:
    In the sales quote there is a Submit in the Action Menu, so when a user click on the submit button then sales quote approval process triggers and
    sales quote saved with Approval status as "In Approval" .
    Requirement: Each time user click on the submit of sales quote then we have to record this action and update our BO for further calculation.
    Issue: All BO elements in the ActionValidation-Submit script file are accessible but they are read only so can not be modified.
              So when you click on the Submit then immediately after submit action event beforesave gets trigger, so we build logic here but issue is that we           are not  able to segerate this save even, I mean which SAVE is coming from the EXPLICIT save button on the UI or which save being triggered           from Submit Action.
    Resolution tried: We found only one script for the submit action ActionValidation-Submit script file so we implemented this script but here all BO                          elements are read only, we can not modify those elements.
                             Even we are not able to return any variable on the validation submit script. so only we can return true/false that says validation is                          success or not.
    My Question : How to capture the information in the event before save when user click on the submit on the sales quote.
                             So other than valiation script file is there any other appraoch by which I can acheive this. even in the global variable "this"  I also dont                          find any varaible that is setting as true/false that refers to action triggers on the sales quote.
    Thanks
    Asaad

    Thanks Meghana.. Appreciate your input.
    We are doing this but the issue we are encountering is after the submit if other user changes sales quote and click on the SAVE button then we dont want this save from SAVE button on UI, so always whenever user click on the submit from action menu in the sale quote then we need to capture user information at the submit click.
    Thanks
    Asaad

  • Equivalent of this db2 syntax in oracle?

    Can somebody please tell me what is the equivalent of the following in oracle:
    SELECT X.*
    FROM XMLTABLE (xmlnamespaces (DEFAULT "http://posample.org"),
    'db2-fn:xmlcolumn("CUSTOMER.INFO")/customerinfo'
    COLUMNS "CUSTNAME" CHAR(30) PATH 'name',
    "PHONENUM" XML PATH 'phone')
    as X
    I took this from http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.apdv.embed.doc/doc/c0023903.htm.
    Thx!

    SELECT X.*
    FROM XMLTABLE
    xmlnamespaces (DEFAULT "http://posample.org"),
    '/customerinfo' passsing "CUSTOMER.INFO"
    COLUMNS
    "CUSTNAME" VARCHAR2(30) PATH 'name',
    "PHONENUM" XMLTYPE PATH 'phone'
    ) x

  • I'd like to convert this OB action to a Pekwm action

    I found a thread by pablokal which showed his Openbox shortcuts and noticed one that I've really wanted:
    Super Left - resizes window to half the screen then snaps it to the left [Obkey options Action: unmaximizefull, maximizevert, move resize to x=0,y=0, width:half horizontal monitor resolution 1920:2=960]
    However, I use pekwm and not openbox. Does anyone know the commands to recreate this action in Pekwm syntax? I have tried, but my solution was clumsy and required multiple keypresses.
    Thanks for anyone who can help!

    If you had an actual table with tabular input you'd get something with an export to Excel.
    If the PDF was a well-formed Tagged PDF the export of tabular data into the spreadsheet file format would be rather good.
    But, alas, what you've displayed is not "spreadsheet" material.
    Export of form fields and form field content takes one down a somewhat different path.
    Be well...

  • GoLive Action: Print Page

    The Print Page/Frame action worked perfectly 6 weeks ago; now it doesn't work at all. Instead, I get an error message from Internet Explorer: Please use your browser's print command to print this document. Can anyone tell me where/what I messed up? TIA

    Might have something to do with the browser detection in the script. Have you upgraded explorer recently?

  • How to create a COOL entrance page like this using action Script 3

    Hey dudes!
    so i have a project where i will be making a website.
    I will be using flash to make it interactive and visually appealing. I found a website with a really cool entrance page, please view it here:http://www.dvf.com/dvf/
    i don't really know much about the action script language so be as precise and clear please
    anyways whenever the mouse moves, the background looks like its moving.
    can someone please tell me how you could do this in flash???
    PLEEASSEEE i reallly reallly needd this. thanks so muchh

    Why don't you use several layers with appropriate alpha properties, and move these layers according to the mouse events?

  • Constant Kernel Panics? Black Screen? Video problems? You should know about this Class Action Suit against Apple for selling defective logic boards.

    CLASS ACTION FILED AGAINST APPLE FOR DEFECTIVE MACBOOK LOGIC BOARDS
    I was one of the many unfortunate individuals who ended up paying Apple the $310 repair fee (more than $400 total, diagnostics included) to fix what was a defective logic board causing constant kernel panics. I don't think the suit has come to a conclusion or a settlement has been reached, but after spending the last month or so on this board trying to diagnose my kernel panics, I figured many others with similar problems would be interested in knowing about this.
    If anyone has any more up-to-date information on the suit or on what individuals should do if they believe they fall into the Plaintiff Class, please share!

    CLASS ACTION FILED AGAINST APPLE FOR DEFECTIVE MACBOOK LOGIC BOARDS
    I was one of the many unfortunate individuals who ended up paying Apple the $310 repair fee (more than $400 total, diagnostics included) to fix what was a defective logic board causing constant kernel panics. I don't think the suit has come to a conclusion or a settlement has been reached, but after spending the last month or so on this board trying to diagnose my kernel panics, I figured many others with similar problems would be interested in knowing about this.
    If anyone has any more up-to-date information on the suit or on what individuals should do if they believe they fall into the Plaintiff Class, please share!

  • How to debug this Dynamic Action JS code?

    Hi guys!
    I have a dynamic action which fires on page load and checks if some field in tabular form has changed:
    $('#UZT01').find('input,select').not('[name=f01],[id=check-all-rows],[type=checkbox]').change( function(){
       $s('P5_IS_TABULAR_FORM_CHANGED','Y');
       $('[value="Dodaj"]').hide();
    });What is most annoying in this piece of code?
    It changes only the value of an item to 'Y' and does not hide the button and most of all it still reacts with "select row" checkbox column...
    If I comment the first line - script hides the button but still reacts with checkbox column...
    If I comment the second line - you already know...
    How to make it right? Please help and many thanks in advance for your time :)
    With regards,
    PsmakR

    Hi!
    Thanks for the reply :)
    No warning and errors using firebug ;/
    With regards,
    PsmakR

  • Is it possible to convert a DWF to PDF using a command line or batch  process. How can I see this in action?

    I need to convert DWF files to PDF. Is this possible?  Adobe able to batch them and can they be converted via a batch or scheduled process. 
    We have a team placing DWF files on a network drive.  Then we need to scoop them up and convert them. Using SSIS or a C# program we can move the converted files to an archive folder.  Is this possible to do using Adobe?

    Hi pnorm,
    Please check the 'Convert AutoCAD files in batches' section in the Doc : http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7f35.w .html
    Regards,
    Rave

Maybe you are looking for

  • Open web page from URL iview in maximized window

    Hi, I would like to open a web page in a <b>maximized</b> browser window, using an URL iView. I know how to open a window in a separate window, I just can't get it maximized. N.B. I do <b>NOT</b> want to open in <b>fullscreen</b> mode, i.e. I want a

  • Summarization at Profit Center Level

    Hi We have a requirement in which the client needs that the system should create a single line item for revenue account even if there are multiple line items in the Sales Order. However, as an standard SAP creates individual line item for every line

  • Can I Point A Second Domain

    I understand that I can use a domain name with my iWeb site on MobileMe, but is it possible for me to point a second domain name so that it works with the site also? If so how?

  • Facebook 2.0 Upgrade on Curve 8330 Problems.

    I've got a Blackberry Curve, 8330 (v4.5.0.191) (Platform 3.4.0.62), currently have Facebook 1.9.0.28 installed, running fine. I've gotten a notification saying Facebook 2.0 is available, but I cannot download it for some reason. I go to the "Options"

  • Is there a seamless way to transfer Time Machine backups to another external hard drive?

    I already have Time Machine backing up to a 500 gig WD external hard drive, but it has run out of room, so I bought a 3TB external hard drive which will do the job for quite awhile. I have not hooked up the new external hard drive to my iMac because