Trying to learn Spry Framework Ajax

So I am trying to learn how to use Spry Framwork for Ajax;
which I downloaded from
http://labs.adobe.com/technologies/spry/
Does anyone know if this some how plugs into Dreamweaver 8 or
if I wish to use it, "the Photo Gallery to be specific", that I
have to manually manipulate the code to use my photos and then
implement their html into my template?

With DW8, you will have to use the Spry Framework manually.
It's built into
the new Dreamweaver CS3.
Nancy Gill
Adobe Community Expert
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
A Beginner''s
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
Web Development

Similar Messages

  • Spry Framework Ajax IE7 Bug

    Hi,
    I used Dreamweaver CS3 to load the photo/albums node of an
    XML file called photolist.xml - the end result after creating Spry
    Master and Detail areas is a page which lets you click on the text
    to change the image. Trouble is it works in all browsers except
    IE7. I get a massive red error message saying "Exception caught
    while loading photolist.xml: [object Error]." Help! How do I get
    working in IE7 too?
    Script below - Widget
    <html xmlns:spry="
    http://ns.adobe.com/spry">
    <title>My Spry Widgets Tutorial</title>
    <!-- -->
    <script src="SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var photoalbum = new Spry.Data.XMLDataSet("photolist.xml",
    "album/photo");
    //-->
    </script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css"
    rel="stylesheet" type="text/css">
    <head>
    <meta name="Description" content="">
    <meta name="keywords" content="">
    <meta name="DC.Creator" content="Petra Jones">
    <link rel="stylesheet" href="style.css"
    type="text/css">
    </head>
    <body>
    <div id="container">
    <div id="banner">
    Doctor Spry's
    </div>
    <div id="subhead">
    Nature Photography
    </div>
    <div id="subspacer">
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a class="MenuBarItemSubmenu"
    href="#">Wildlife</a>
    <ul>
    <li><a href="#">Forest
    Animals</a></li>
    <li><a href="#">Domestic
    Pets</a></li>
    <li><a href="#">Item 1.3</a></li>
    </ul>
    </li>
    <li><a href="#">Landscape</a></li>
    <li><a class="MenuBarItemSubmenu"
    href="#">Pets</a>
    <ul>
    <li><a class="MenuBarItemSubmenu" href="#">Item
    3.1</a>
    <ul>
    <li><a href="#">Item 3.1.1</a></li>
    <li><a href="#">Item 3.1.2</a></li>
    </ul>
    </li>
    <li><a href="#">Item 3.2</a></li>
    <li><a href="#">Item 3.3</a></li>
    </ul>
    </li>
    <li><a href="#">Portraits</a></li>
    <li><a href="#">Action</a></li>
    </ul>
    </div>
    <!-- Left Column Borders -->
    <div id="leftborder1"></div>
    <div id="leftborder2"></div>
    <div id="leftborder3"></div>
    <div id="leftborder4"></div>
    <div id="leftborder5"></div>
    <!-- Left Column Borders End -->
    <!-- Left Panels start -->
    <div id="left">
    </div>
    <div id="nav">
    <a href="gallery.html" class="nav">Gallery
    Shop</a><p/>
    <a href="comm.html"
    class="nav">Commissions</a><p/>
    <a href="buying.html" class="nav">Buying
    Art</a><p/>
    <a href="contct.html" class="nav">Contact
    Me</a><p/>
    <a href="about.html" class="nav">About
    Me</a><p/>
    <a href="index.html" class="nav"
    target="_top">Home</a><p/>
    </div>
    <!-- Left Panels end -->
    <!-- Center Panels start -->
    <div id="centre">
    </div>
    <div id="centrehead">
    </div>
    <div spry:region="photoalbum">
    <div id="centrecontent">
    <table>
    <tr>
    <th>Subject</th>
    <th>Album</th>
    <th>Date</th>
    <th>Type</th>
    </tr>
    <tr spry:repeat="photoalbum" spry:setrow="photoalbum">
    <td>{subject}</td>
    <td>{album}</td>
    <td>{date}</td>
    <td>{type}</td>
    </tr>
    </table>
    </div>
    </div>
    <div id="centremiddle">
    </div>
    <div id="centrelower">
    <div spry:detailregion="photoalbum">
    <div id="lowertext">
    <p><img src="{imageurl}" border="0" alt="image
    placeholder"> </p>
    <p> </p>
    </div>
    </div>
    </div>
    <div id="centrefoot">
    </div>
    <!-- Centre Panels end -->
    <div id="right">
    <div id="righttext">
    </div>
    </div>
    <!-- Right Column Borders -->
    <div id="rightborder1"></div>
    <div id="rightborder2"></div>
    <div id="rightborder3"></div>
    <div id="rightborder4"></div>
    <div id="rightborder5"></div>
    <!-- Right Column Borders End -->
    <!-- Footers start -->
    <div id="footspace">
    </div>
    <div id="footer">
    (c) Petra Jones (2007) Please note this is an entirely
    fictional photography business.<br>
    Any
    resemblence between me and a real talented photographer is
    very unlikely.
    </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1",
    {imgDown:"SpryAssets/SpryMenuBarDownHover.gif",
    imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

    Hi John,
    That error is thrown in 2 specific cases:
    1. A spry:region/spry:detailregion attribute has no data set
    specified.
    or
    2. A spry:region/spry:detailregion attribute lists the name
    of a data set, but that object does not exist.
    Are you delaying the creation of your data sets until some
    event has occured? It's hard to tell exactly what is going on
    without seeing the context.
    --== Kin ==--

  • Introduction to the Spry framework for Ajax

    Hi All
    I attended the breeze eSeminar:
    Introduction to the Spry framework for Ajax
    07/27/2006
    3:00 PM US/Eastern
    Anyone know the location for the recorded version?

    Well, that wasn't easy to find....
    http://www.adobe.com/cfusion/event/index.cfm?event=list&type=ondemand_seminar&loc=en_us
    Search for "spry". Lots of good stuff on this page.
    Thanks,
    Don

  • Welcome to the Spry framework for Ajax Forum

    Welcome to the Spry framework for Ajax forum! Please use this
    forum to discuss the Spry framework for Ajax and supporting content
    on Adobe Labs.

    Hi,
    Techy_one: the download page should be working:
    http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_spry
    anuj: SpryEffects is in 'demo/includes'. We will be including
    effects in our next Spry drop.
    Severe: We are working on more widgets. They will be released
    over time as we finish them. We are still looking into how we can
    make Spry support for DW available.
    Thanks,
    Don

  • Discontinue the Spry Framework

    In response to http://blogs.adobe.com/dreamweaver/2012/08/update-on-adobe-spry-framework-availability.htm l#comment-1826
    I must express my DEEPEST DISAPPOINTMENT with Adobe for such a dis heartening move to discontiue this framework.
    I have been using Adobe Spry Framework from inception and found the capabilities of at least the DataSet Object frameworks to be the most easiet, fast, effective implementation of frameworks when it comes to dealing with data/ external data display and manipulation EVER. It has been the goto framework for almost ALL of my data driven web applications and has proven to me to be BY FAR a superior advantage over using any MVC or another Ajax based framework that I have encountered.
    To learn of its discontinuation after years of hope and promise of futher development of the framework with such a huge potential is really heart wrenching. I do hope that someone else will take up the regins to which Adobe has so cowardly let go of and continue to progress this framework into a new aged design specimen that it should be.
    I personally though lacking in the extensive knowledge of the frameworks inner workings and expreience in javascript or framework development for that matter...will be one to TRY to develop it as much as I can. But will lend ANY SUPPORT that I can as limited only by my knowledge and experience to futher the success of this framework to any lengths to make it as great as it has always been and could be.
    Sincerest Ice.
    LONG LIVE SPRY FRAMEWORK

    Thank you, Ben. This was the information that I needed.
    Alas, I don't follow this forum specifically, although, I do lurk now and then to get answers to specific questions.
    Re the shake issue. Gosh, I guess I fixed it and never came back (my apologies) or the whole thing went a different direction. It's been so long.
    Thanks, again.
    J.

  • Spry framework interoperability with ATLAS

    Hi.
    I’m trying to use the spry framework with MS ASP.NET
    and the ATLAST AJAX framework. I’m trying to port the photo
    album demo pages. However when ever I add
    <atlas:ScriptManager ID="ScriptManager1" runat="server"
    /> tag into the code all the spry:region / spry:repeat tags
    doesn’t seem to work. Has anyone observed this behavior
    before. Any suggestions are much appreciated. Code sample is shown
    below
    Thanks
    Bhathiya
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title>Untitled Page</title>
    <script type="text/javascript"
    src="js/xpath.js"></script>
    <script type="text/javascript"
    src="js/SpryData.js"></script>
    <script type="text/javascript">
    var dsPhotos = new Spry.Data.XMLDataSet("….",
    </script>
    </head>
    <body>
    <form id="form1" runat="server">
    <atlas:ScriptManager ID="ScriptManager1" runat="server"
    />
    <asp:Panel ID="Panel4" runat="server">
    <div spry:region="dsPhotos">
    <table>
    <tr spry:repeat="dsPhotos">
    <td>{sitename}</td>
    </tr>
    </table>
    </div>
    </asp:Panel>
    </form>
    </body>
    </html>

    Hi Bhathiya,
    We haven't yet done the slightest testing with Spry and
    Atlas together.
    Seeing runat="server" on a client side library makes me
    wonder what the final output of the page is.
    I will log a bug on this and we can check it out.
    Thanks for the info.
    Donald Booth
    Adobe Spry Team

  • Is Spry Framework discontinued or not?

    Last Adobe's message is 30 April 2010, after… nothing to nothing
    I have understand ajax/html5 are enemies of the Flash technology but please send us a clear message… Spry is discontinued or not?

    Adobe always been a closed company when it comes to releases of products.
    The same practise is applied to the Adobe Spry Framework. They did release
    Spry 1.7 a while ago, but the developer adoption of this is rather slow. I have been
    using Spry 1.7 in production for a few months now. And created a few widgets for it
    . It works great, but Spry 1.6.1 is still the shipping version of Dreamweaver.
    The Spry team actually consists of Dreamweaver core developers, so there focus
    is not only Spry, but also Dreamweaver and the intergration of other libraries in to
    Dreamweaver.
    Idealy Spry should have been open sourced so developers can submit patches and
    speed up the development of framework. But because Spry is also a product of
    Dreamweaver this would mean that they are actually "selling" the code. I still have
    hopes of this happening in terms of CLA for contributors.
    Anyways, I doubt Spry is dead.. They are just having a radio silence

  • Integrating Spry Framework with SWFObject

    I'm trying to incorporate a SWFObject into my Spry
    Framework-HTML page. I want to update the
    flashvars when the user clicks on a given
    ds_RowNumber for the Product Catalog. However, I'm having
    trouble passing the
    flashvars:
    window.document.setVariable("flashVars","data/mp3/frw/2006/playlist.xml"
    so.write("flashcontent");
    Since this isn't having any effect on flashVars, I'm guessing
    I'm not implementing it correctly?
    Thanks,
    stephenwightman

    stephenwightman, are you testing this in IE? There is a
    bug/issue with Spry, FlashVars and IE, where FlashVars do not get
    passed when a SWF is inside a spry:region. This occurs whether
    using SWFObject or the default embeds for your SWF. I have not
    heard any thoughts from the Adobe Spry Team on how to get around
    this. See some of my previous posts on this:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1182433
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1171740

  • I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  Help!

    I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  I have deleted it from iTunes but cannot get it off the phone.  Help!

    The banner usually indicates that the memo is "Paused." If you go back into voice memos, touch the word "Done" beside the big red pause button, give it a name, then it will show in a list. Touch the memo in the list then touch the trash can icon that should appear.

  • I'm trying to learn and I think the knowledge is here!

    Hi! i'm always trying to learn and pass forward.  I'm not here to cause trouble. I have some things that I would like to have confirmed or denied. I do not own a HP computer at this time, but several of the residents in my village do. I have observed some great advice to community members from some smart people here on the forum. I have some things that I have learned from other forums and I want to share them. I would like to have comments from all the smart members here on the community forum. OK here we go!!
    Let's say we have a PC that won't boot into windows for some reason. Now IMHO, we have software or hardware problems.
    This is what I do. I down load a linux program. It's called Pupply Love.http://puppylinux.org/main/Overview%20and%20Getting%20Started.htm
    This is a ISO file that you burn to a CD. It is a live CD and you can boot with it. You do not need a HD.
    Even if your PC has no hard disk (ex, broken hard disk), you can still boot Puppy via CD or USB and continue working. Old PCs that no longer work with new systems will still work good-as-new with Puppy.
    Now IMHO, you have proved that your monitor,power supply, and CPU are working. So now the HD is left. There are many ways to test your HD. One that comes to my mind is seatools dos.http://www.seagate.com/support/downloads/item/seatools-dos-master/
    One way to test your memory is memtest86.http://www.memtest86.com/download.htm
    memtest and seatools dos are both live CD's and should boot even if you don't have a working OS.
    Another live CD is the system repair CD  and the system recovery discs that you should have created on day one.
    I realize that HP has some great tools and I'm hoping that a guru will reply to this thread and add their comments. This is the way I learn. Computers can be a pain in the neck, but us humans can hold our own if we are willing to learn and pass forward to others.
    Dokie!!
    PS I take criticisms pretty well! This thread can be deleted if it is out of line or does not meet the standards of the forum. Some times I get a little windy and carried away.

    Hi Leo! If you can stop these down load managers, you will be my hero.
    Dokie!!
    PS I have tried my best to warn members here on the forum, but I haven't got a lot of support so far.
    I have my figers crossed that the new team will get-er-done

  • I have had LR4 since last August.Have just decided to start using it.I have an IMAC 10.9.3 version. Am trying to learn with "Classroom in a Book. Ton of  problems.Adobe will not help because it is to old and they no longer support. Can anyone tell where I

    Did anyone see the post I made about LR 4?Just in case I will post again. I have LR4 I bought last August and just now I am trying to learn this >I have "Classroom in  a Book" for LR4 lots of problems . I have a IMAC version 10.9.3. I tried different Adobe sites. They will not give me the Time of day because they say they no longer support this program. Can anyone here tell me where I can get support for this LR$ that Adobe no longer recognizes. Thank you My name is Jerry S. MY e-mail is [email protected] and phone number is 563-344-7910.

    Okay I will try. First I have lost pictures in catalogs and could not find again.I have tried reinstalling LR4 and when I do and reopen LR4 the same catalog appears in the panel and filmstrip and I have no idea how to get rid of that catalog and start over at square one like it was the frist time it was opened. That would be a big help and I think I start over and avoid the same problems.

  • Help with Spry Framework positioning not appearing correctly on pc's

    I just created a gallery using the spry framework and finally got it working for me on all the browsers I have on my Mac.  The problem is that on my clien'ts pc the gallery div tags end up moving up to the upper left corner and I'm not sure why.  They are ap div tags that are supposed to be contained in my main content div and I'm at a lost as to why this is happening. I'm not the best at working directly with code or understanding it fully, usually do most everything with dreamweaver.  I appreciate any help that you can give me and thanks for your time.
    the site page is here: http://www.montanacraneservice.com/ppcanopylift/ppcanopylift.htm

    Do you know what browsers are failing?
    Seems to work on FF, IE6 and 8...

  • Hi, I've just started as a fresher in sap fico and I'm upto the LSMW part and I'm wondering why I keep getting an error in Run batch step when I do everything else correct could you help?  Please help I'm really trying to learn it as fast as possible

    Please help I'm really trying to learn it as fast as possible?  I've posted the file with all my screen shots going through the enitre process of me creating the LSMW file.

    First, I will try to address the iPod issue: If youve tried EVERYTHING on the website, your only other option is probably to contact Apple, I recommend by phone, and informing them of the problem. You are covered by warranty and therefore they are liable to assist you. Try that and come back with a status update
    Now I will address your attitude about it:Its absolutely understandable to be upset over something like this, especially with such an expensive product, but you are generalizing far to much. You may think Apple is being unproffesional by not warning potential buyers of the iPods common faults, but do you really think they would? they are out to sell these things, they arent going to point out the bad in their product. And not all iPods have problems, in fact only a fraction do. That gopes for the rest o Apples products as well. You are too hasty assuming all Apple products are junk, and one of many reasons as to why that is unfair of you is becuase you dont own any other Apple products.

  • Trying to learn about threads

    Hi guys,
    I'm trying to learn more about threads......i've written a small program for a better understand, but i don't understand the order of the output i'm getting:
    public class testme {
    public static void main(String[] args) {
    Theshape mover = new Theshape("go");
         mover.start();
    System.out.println ("checkpoint 1");
    System.out.println ("checkpoint 2");
         }//main
    }//class testme
    class Theshape extends Thread {
    public int count;
    public String thego;
    Theshape (String gg){
         thego= gg;
    count=0;
    }//constructor
    public void run(){
    try {
    do{
    System.out.println (thego);
    sleep(1000);
    System.out.println ("johnny");
    count=count+1;
    }while(count<8);
    } catch (InterruptedException e) {}
    }//run          
    }//class theshape
    ........the output i get is:
    checkpoint 1
    checkpoint 2
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    go
    johnny
    I would like to know why "checkpoint 1" and "checkpoint 2" is printed first, even though the call to the run method is made before the two statements. i would have thought that the two checkpoint statements would be printed last.
    Can anyone help?
    Thanks,
    Zaf

    After you've issued the 'mover.start()' call, a new thread pops into existence. The first thread (your main thread) continues to run while the second thread prepares itself to start up. On your machine, this startup takes a (little) while, so your main thread is able to print those two line just before the other thread is able to print something. That's all there is to it. If you put a 'Thread.sleep(1234)' between those two println statements in your main thread, the output would probably be a bit different. Give it a try.
    kind regards,
    Jos

  • Trying to learn zsh completion. Help me achieve it?

    Hi,
    I'm trying to learn to write completion functions for zsh, and started by writing one for unison, which looks in the profiles directory to tab-complete profiles. So far, I've got a _unison file containing the following:
    #compdef unison
    #typeset -A opt_args
    local profiles
    profiles=~/.unison
    _files -W ${profiles} -g '*.prf' && return 0
    return 1
    Which works relatively well:
    % unison <tab>
    default.prf documents.prf photographs.prf
    Just for the fun of it really, I'd like to remove the .prf bit and just have it complete the basename. Any idea how I can achieve this?
    Thanks :-)

    I don't think 'basename' is the right word.
    This works for bash:
    for i in *.txt; do echo ${i%%.*}; done
    Now you have to somehow add it to your workflow.

Maybe you are looking for

  • Memory module upgrade on Satellite Pro L450D -12X

    I want to up grade my Pro L450D -12x with a new memory. Could some one more knowledgable than myself confirm, or not that this is the correct module. Thanks ordep 2GB,200-pin SODIMM, DDR2 PC2-6400

  • PO Via EDI.

    Hi , The customer want to cancel this Purchase order, and the vendor accept it. But I can’t send the cancellation PO to vendor via EDI, Please let me know what are the possible to check and find out. kindly give me some solution , Best regards Ram.

  • What kind of credit card usage led to a credit limit increase for you?

     What type of spending behavior led to your credit limit increases?  (Ie zero balance, high usage with early payments, 9%, 30%, ect).   Were they notable increases?   What time frame did the increases occur in?

  • Transport ownership change

    Hello Gurus, Would you kindly let me know your practices on the transport. Does you team lead takes the ownership of the transports AND in fact the ownership of all the underlying tasks? My understanding is that this is not only incorrect because it

  • Illustrator cs5 problem while copying types

    Hi all, Since about a month, when I copy and paste types (block or paragraph doesn't matther) inside illustrator, the text doesn't retain it's properties. For example, I could have a 36pts arial sentence that I will copy and it will paste as 12 pts m