Making a Datagrid with clickable links

I'm trying to pull an XML list into a Flash file (got that
part) and make each item in the resulting datagrid list a link to
different PDF files (that's the part I DON'T have). I would think
you'd build the url right into the XML, but I can't figure out how
to use it to make the cells clickable. Any help would be much
appreciated.

Ok, I am about ready to pull my hair out on this (not a lot
to spare, either!). Without giving me the code (I do want to figure
this out for myself...mostly), can you answer the following:
I can obviously figure out how to tie a mouse click event to
the datagrid, but how do I tie the mouse click to a specific FIELD
in the datagrid and grab the data in that field? If I can do that,
I should able to then yank the data from that particular XML item
by comparing the "clicked" cell value to the values listed in the
XML file, and then throwing the url listed in that piece of XML to
a getURL in Flash. But I just cannot for the life of me figure out
how to tell which cell in the datagrid was clicked. Yikes!!
Ok, in continued research, I DID figure out how to tell which
cell is being clicked using ListEvent to tell me the rowIndex and
columnIndex. Now, how do I pull the VALUE of that cell out??

Similar Messages

  • Pdf-file with clickable links from iweb 09

    How can I create a pdf-file with clickable links from a website created in iweb 09?
    All iwork apps have an export button, which fulfills this task, but iweb does not.
    Any idea?

    I am running 10.5.6 on a MacBook Pro 2.53 GHz. I create my PDFs via the print dialogue. I tried to create a PDF from iweb with Hyperlinks activated and all links are dead. I tried to create the PDF from the Safari window, were all links are active, and – funny enough – sometimes all, sometimes half of my links are dead. But most of them do not work. As soon as I create PDFs from third party sites, everything works fine.

  • Scrolling news ticker embedded in a widget, with clickable links?

    Hi, a friend of mine has a widget and he wants to put a scrolling news ticker embedded in the widget, with clickable links, can it be done? He has it working
    in the web version. thanks.

    What you are trying to create is called a crawl, and you can create one by using the Roll/Crawl tool in the Titler workspace.
    To open the Titler, click the "T" on the lower right of the Monitor panel. The Roll/Crawl tool is located in the lower left of the Tasks panel in the Titler.
    You won't be able to create a huge, continuous crawl, but you can certainly use it to create the effect of a headline crawling right to left across the lower third of your screen.
    For more information on the basic tools in this program check out my free 8-part Basic Training tutorials on Premiere Elements support site Muvipix.com.
    http://forums.adobe.com/thread/537685?tstart=0
    And for step-by-step instructions for using the program and creating effects, like this scroll, you may want to pick up a copy of one of my books.

  • Can I create a pdf with clickable links which open new pdfs?

    Hi,
    My client now wants me to create pdf with links to open new pdfs (in an offline mode). He wants to put all the content onto memory sticks to hand out at a conference.
    I have suggested the alternative of links which redirect to other pages within the same pdf, but if I could create one which open whole new pages or documents this would be really smart.
    Many thanks,
    Sam

    When you create the links, use "Go to a page view" type, as opposed to "Open a file". This allows you to create links that will open another PDF to a particular page and view (zoom and position).

  • Documents with clickable links

    I am trying to prepare a document on my Windows7 PC that contains a ton of hyperlinks.
    I do not have Word on my iPad, and I can easily create output formats (like pdf) on my PC that I can read on the iPad, but have been unable to find a format where the links are live when I open the document on the iPad.
    I've tried pdf, which doesn't seem to work.
    So, complex question (output format from Word, app on iPad, etc).  Need expert help!
    [yes, I know I can create bookmarks on the PC in Firefox or in Safari and sync them to the iPad, but the links are organized and have embedded text/commentary that I need to be linked with groups of links or individual links]

    Try the free app Kingsoft Office. You can edit word, excel and powerpoint files. You can also access your Dropbox files directly from the app.

  • Random Image with Clickable Link

    Hey guys so far I found a code that lets me randomize an image and I found out a piece of code that makes the image clickable but I do not know how to add a specific link to each specific image.
    Here is the code:
    <head> <script language="JavaScript">
    var theImages = new Array()
    theImages[0] = 'Accounting Cartoon1.jpg'
    theImages[1] = 'Accounting Cartoon2.jpg'
    var j = 0
    var p = theImages.length;
    var preBuffer = new Array()
    for (i = 0; i < p; i++){
       preBuffer[i] = new Image()
       preBuffer[i].src = theImages[i]}
    var whichImage = Math.round(Math.random()*(p-1));
    function showImage(){
    document.write('<a href="link.html"><img src="'+theImages[whichImage]+'"></a>');}
    //-->
    </script>

    anyone have an idea?

  • Help needed making background image a clickable link

    Hi guys,
    I want to make the background of my site an advertising background where the background image is clickable.
    I've tried a few tutorials but none seem to be working
    What I've got is this as my CSS...
    #skin {position: absolute;
        width: 100%;
        height: 800px;
        margin-left: auto;
        margin-right: auto;
        top: 0px;
        left: 0px;
        z-index: -1;
        background-position: fixed;
    ...and this as my HTML...
    <div id="skin"><a href=""><img src="background.jpg" /></a></div>
    It kind of works but the link is only a thin strip either side of the screen for some reason and doesn't span the whole image background.
    Does anyone have any ideas as to where I'm going wrong?
    Thank you very much and hope to hear from you!
    SM

    Spindrift wrote:
    Basically, what I want to do is have an advertising skin as the background (can just be a dummy container div to act as the background) of my website, so that it fills the area outside my sites' container div and opens a link when clicked on.
    Does anyone know how I can do this?
    This can be done relatively easily but it's not very pretty. You will need to use a full-size image for the background, unless you plan to repeat it and set the clickable container to exactly that size. See code and screenshot below. Tested in FF, Chrome and IE9.
    <head>
    <style>
    body {
        width:100%;
        height:100%;
        margin:0;
    #background {
        background: #000 url(your-background-image.jpg) no-repeat 0 0;
        display: block;
        height: 1280px; /* change to your image height */
        position: fixed;
        width: 1920px; /* change to your image width */
    #wrapper {
        background-color: #FFFFFF;
        border: 1px solid #333333;
        left: 50%;
        margin-left: -480px; /* half the width */
        min-height: 500px;
        position: absolute;
        width: 960px; /* wrapper width - unclickable area */
    </style>
    </head>
    <body>
    <a href="" id="background"></a> <!-- This is your clickable background -->
        <div id="wrapper"> <!-- This is your non-clickable wrapper -->
            <header>
            </header>
            <main>
            </main>
            <footer>
            </footer>
        </div>
    </body>

  • How to create a PDF with clickable links for iPad?

    Hi,
    I need to create PDF files that contain hyperlinks which will work when opened on ipads.  I've tried several programs elsewhere but the hyperlinks do not work when clicked on ipad devices.  Does any of the Adobe software create hyperlinks that are clickable on ipads, please?

    I really am most grateful for the information.  I've been trying to resolve this issue for a few days.
    Just to be certain, will Adobe Acrobat create hyperlinks that will open in the default ipad PDF reader, or do users need to open the PDF in Acrobat Reader?

  • How do i insert my pdf (with clickable links) into the body of an email?

    I do not want to use mail chimp, copy & paste, or take a screenshot.  Since I have updated my programs I am no longer able to do this and that seems pretty backwards to me.

    What happens if your recipients' email clients do not display images by default? Will your message still get across?
    http://www.emaillabs.com/tools/email-marketing-statistics.html#blockedimages
    Hopefully, you have no more than 100 recipients to your email marketing as AOL imposes a limit.
    The comparison between messages you send and those you have received should be clearly made. Were those messages that you received sent from AOL? Were they sent with the same AOL mail client? Do they use images attached to the message or called from a web server?

  • Does Keynote allow you to create clickable links in pdf files yet?

    I searched the forum and found a similar question that was asked back in 2005, and with newer versions of Keynote now available I hope I'm not posting a duplicate question here.
    I would like to be able to use iWork's Keynote to make small, business-type cards for downloads as .pdf files and I'd like to include a clickable website url or email link, if possible.
    How about doing this in Pages? I haven't used pages yet but I presume you can save the files as pdf's?
    Any help would be greatly appreciated.
    An afterthough - if I need Acrobat to do this is there a large learning curve involved?
    I see many 'Viral eBooks' and brochures being created for and by PC users, and when I download them the links are clickable on the Mac. You see lots of programs for PC's being advertised that are supposed enable you to to this, but none for the Mac. I'm hesitant to invest in Acrobat as I only want to do one or two business card type pdfs with clickable links.

    Hi Annie,
    I ran a quick test and Keynote exported a slide with both a clickable link to an email address and a website. After printing to PDF (command-P/Save as PDF), there were no clickable links.
    As far as I know, you need at least Mac OS X 10.4.4 for this to work, and of course Keynote 3.
    If this information is useful to you, please mark it as "helpful" or "solved" using the little buttons in the titlebar of this message. Thank you.

  • [svn:fx-trunk] 8507: Making measureHeightOfItemsUptoMaxHeight consistent with the way we create rows in the datagrid .

    Revision: 8507
    Author:   [email protected]
    Date:     2009-07-10 10:13:11 -0700 (Fri, 10 Jul 2009)
    Log Message:
    Making measureHeightOfItemsUptoMaxHeight consistent with the way we create rows in the datagrid. MakeRow ensures reported row height is round to the nearest integer, measureHeightOfItemsUptoMaxHeight is now consistent.  Fixes a long standing PrintDataGrid issue.
    Bugs: SDK-20237.
    QE Notes: None
    Doc Notes: None
    Reviewer: Glenn/Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-20237
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as

    Well, you could do the following:
    1) Create a stored procedure that assembles the data into a rowset with rows and fields like the format you want.
    2) Create stored procedures that handle insert, update, and delete.
    3) Create an entity object definition with all transient attributes. Make the attributes match the elements of one row.
    4) Override doDML() in the entity object class to call your procedures (the doc explains how to do this). You might also need to do a bit of research and figure out if you need to override some other method so you can report rows with transient attribute changes only as needing posting. (getPostState(), maybe?)
    5) Create a view object definition with entity-derived attributes based on your EO attributes.
    6) Override the appropriate methods to call your data assembly procedure rather than execute a query (this is also in the doc).
    Still kind of kludgy, but it keeps your business components pretty clean, especially if you use framework classes to do most of the work for you. (I have a partial example of how to do that here.) Of course, it keeps your business components clean by moving the real work to the DB, but some people find that more maintainable that a kazillion business components.
    Hope this helps,
    Avrom

  • Hello, i use premiere pro cc and i would like to uplaod my sequence in speedgrade with direct link but it's not available. I can see the option but it's not clickable, somebody knows why ?

    Hello, i use premiere pro cc and i would like to upload my sequence in speedgrade with direct link but it's not available. I can see the option but it's not clickable, somebody knows why ?

    Oh i'm not sure they are on same, i downloaded speedgrade this morning and i didn't upgraded premiere so it's maybe this ! thanks i will try it and let you know

  • Making clickable links in GUI?

    Hi,
    Well, I'm making an GUI application and I wanted to have a clickable link to my website, I thought using HTML would be a good bet, but it doesn't work, I was thinking of using util but I'm not exactly sure..

    Swing related questions should be posted in the Swing forum.
    JEditorPane provide some basic support for loading HTML pages. Read the API for more info.
    You can invoke IE as follows:
    **  Here is a pure Windows solution
    **  Run the code and you will be taken to a tutorial that may provide
    **  a more generic solution
    public class WindowsFileProtocolHandler
         public static void main(String[] args)
              throws Exception
              String[] cmd = new String[4];
              cmd[0] = "cmd.exe";
              cmd[1] = "/C";
              cmd[2] = "start";
              cmd[3] = "http://www.javaworld.com/javaworld/javatips/jw-javatip66.html";
    //          cmd[3] = "will.xls";
    //          cmd[3] = "mailto:";
    //          cmd[3] = "a.html";
    //          cmd[3] = "file:/c:/java/temp/a.html";
              Process process = Runtime.getRuntime().exec( cmd );
    }

  • Making background image clickable link

    I have several div tags with background images in them.  I want to make the background images clickable links.  what is the easiest way to do this?

    Yes, the background image can be made clickable.
    Here is the link to get the info to one method: http://ran.ge/2009/11/11/css-trick-turning-a-background-image-into-a-clickable-link/
    Basically it is written like this:
    ==CSS==
    #bkgrdimage {
        background-image:url ('image.png');
        display:block;
        height:??px;       (image height)
        width:??px;        (image width)
        text-indent:-9999px;  
    ==HTML==
    <a href="http://????" title="Title of Link" id="bkgrdimage">Basic Text For this Link</a>
    The text indent places the "basic text for this link" outside the browser screen.

  • URxvt - Handle clickable links and irssi with screen over ssh ?

    Hi,
    I use URxvt as a replacement to gnome-terminal. But I can't manage to make three things working :
    - First, I followed the wiki to set clickable links. It worked but since a little time (I don't know really when it stopped working) URxvt only colors the links. When I click on them, it doesn't do anything.
    Here is my .Xresources :
    ! Taille par défaut
    URxvt*geometry: 100x30
    ! Police TTF
    URxvt*font: xft:Bitstream Vera Sans Mono:style=Regular:pixelsize=12:antialias=true
    ! Taille du buffer et barre de défilement
    URxvt*saveLines: 10000
    URxvt*scrollBar: true
    URxvt*scrollBar_right: true
    URxvt*scrollColor: #c2dd5a
    URxvt*scrollBar_floating: true
    URxvt*scrollstyle: plain
    ! Curseur et nom du terminal
    URxvt*cursorColor: white
    URxvt*termName:xterm
    ! Couleurs
    URxvt*foreground: #ffffff
    !URxvt*background: #000000
    ! Black
    URxvt*color0: #101010
    URxvt*color8: #2e3436
    ! Red
    URxvt*color1: #cc0000
    URxvt*color9: #ff361e
    ! Green
    URxvt*color2: #8ae234
    URxvt*color10: #93ff00
    ! Yellow
    URxvt*color3: #ffc005
    URxvt*color11: #ffd00a
    ! Blue
    URxvt*color4: #004f9e
    URxvt*color12: #0071ff
    ! Purple
    URxvt*color5: #e50060
    URxvt*color13: #eb0061
    ! Cyan
    URxvt*color6: #4bb8fd
    URxvt*color14: #34E2E2
    ! White
    URxvt*color7: #eeeeec
    URxvt*color15: #f2f2f2
    ! Utilisation de la vraie transparence
    URxvt*depth: 32
    URxvt*background: rgba:0000/0000/0000/cccc
    ! Onglets
    URxvt*.perl-ext: tabbed
    URxvt.tabbed.tabbar-fg: 2
    URxvt.tabbed.tabbar-bg: 0
    URxvt.tabbed.tab-fg: 3
    URxvt.tabbed.tab-bg: 0
    ! Liens
    URxvt.perl-ext-common: default,matcher,fullscreen
    URxvt.urlLauncher: /usr/bin/firefox
    URxvt.matcher.button: 1
    URxvt.colorUL: #4682B4
    ! Fullscreen
    URxvt*keysym.F11: perl:fullscreen:switch
    ! touches home et end
    URxvt*keysym.Home: \033[1~
    URxvt*keysym.End: \033[4~
    - I'd like to automatically launch an urxvt term at startup and connect to an irssi screen session on a remote server (via ssh).
    I tried : urxvt -e "ssh user@remote -t irc" where irc is an alias on the remote server that attach the irssi screen session. The problem is that with this command, urxvt opens and close immediately. I then tried to add the -hold option and various combination of "bash -c" I saw on the forum but nothing worked...
    - And finally, how can I use nautilus-open-terminal to open a urxvt term in a specific folder ? I set the correct entries in dconf-editor and followed the wiki page but it doesn't work...
    Thanks
    Last edited by doupod (2013-04-06 16:42:18)

    I had similar but different issues regarding this.  Now, i have 256 color support in whatever terminal/ssh/screen session I'm in.
    The relevant config lines:
    .Xdefaults:
    XTerm*termName: xterm-256color
    URxvt*termName: rxvt-256color
    .vimrc
    " 256 colors only if you can handle it
    if $TERM =~ "-256color"
    set t_Co=256
    colorscheme zenburn
    endif
    .screenrc
    # term
    term xterm-256color
    # main options
    altscreen on
    attrcolor b ".I"
    defbce "on"
    # some termcaps
    termcapinfo xterm-256color 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
    termcapinfo rxvt-256color 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
    note: this setup caused an issue where background colors in mutt/htop inside screen did not extend passed the line's text.  i had to solve that via this workaround.
    Last edited by brisbin33 (2009-07-31 21:28:55)

Maybe you are looking for

  • Update/Insall Query

    Hi guys, we have a copy of Adobe Acrobat Pro, version 9. After I have installed the product and input the serial number, I'm getting a window coming up saying that an upgrade is possible. I am then taken to a screen where I have to select the product

  • Idea for rotating (side mount) 20" clear case Cinema?

    I've got a 30" ACD as my main display, and an older 20" clear case Cinema that's on the sidelines now. Having both on my desk as-is seems a bit much. http://www.blakespot.com/images/g53020.jpg ...but if I could somehow side-mount / rotate the 20" to

  • Reverse engineer Toplink mapping to a ERM diagram

    Hi, We have a Toplink mapping for our application, the problem is that in the database no foreign keys relationship are defined, thus the relations are only in our Toplink model and not in our database. Id like to create a ERM model with for instance

  • Unable to print after software installation

    After installation of Adobe Photoshop CS2 and Bridge CS2, I could not print from Photoshop (cannot print file because there is not enough memory (ram)) and all other applications (error during printing). Reinstalling the programs and disinstalling th

  • My Safari (5.0.6) doesn't have a search bar. How do I fix this?

    My MacBook (Model 4,1) is currently running Safari 5.0.6. Its search bar is missing and so I cannot search/access other websites. What do I do so that the search bar will appear again? Regarding updating my MacBook OS or Safari, it doesn't have the M