Hyperlink inside a scrollpane?

Hey guys,.
               Ok Ive been looking into this for two days and really need the help! I need the button to link to an external website
I have my scrollpane on the stage, I have created the mc and exported it and linked it to the scrollpane, I have created a button on layer 1 inside the mc linked to the scrollpane and I have created a 2nd layer for as3. Below is the AS3 that I have used. When I export the mc to view the scrollpane everything works apart from the buttons itself. I can see everything but the buttons wont link to the webpage.
AS3
import flash.net.URLRequest;
btn1.addEventListener(MouseEvent.CLICK, goDesignSite);
function goDesignSite(Event:MouseEvent):void
var DesignURL:URLRequest = new URLRequest("http://www.krdesign.ie/html");
navigateToURL.(DesignSiteURL);
Any help would be greatly appreciated!!!
Gary

import flash.net.URLRequest;
btn1.addEventListener(MouseEvent.CLICK, goDesignSite);
function goDesignSite(Event:MouseEvent):void
var DesignURL:URLRequest = new URLRequest("http://www.krdesign.ie");
navigateToURL.(DesignURL);

Similar Messages

  • Editing swfobject.js code so hyperlinks inside the flash widget open in a new window

    0down votefavorite
    I have a flash calendar widget (code shown directly below) and I do not have access to anything other than the compiled .swf file (no access to .fla).
    The widget contains some hyperlinks to other websites, these links are dynamic and changes based on a number of things.
    There is also a corresponding swfobject.js file that is used to add functionality to the flash widget. The swfobject.js code is shown further down this post.
    Currently, the way the code is now, when I click any of the hyperlinks that are available to me in the widget, the destination website that hyperlink takes me to opens in THE SAME PAGE as the flash widget which is a big problem.
    I need to edit the code below so that any hyperlinks that are clicked inside of the flash widget open in a brand new browser window and do not take the user away from the original widget other than opening a new page with new content.
    Because the hyperlinks that are available are always changing, the swfobject code below uses some functions and parameters.
    I am hoping you can show me exactly what code I must insert, and exactly where I must insert it, in order to alter the behavior that happens so that when a user clicks one of the hyperlinks inside the flash widget, so that the content at the other end of the hyperlink opens in a new window, instead of opening in the same window.
    See code below.
    Thank you in advance for any help you can provide
    Flash Widget Code
    <!-- Embedded Calendar --> <div id="activecontent"> <script type="text/javascript" src="swfobject.js"></script> <div id="awccalendar"></div> <script type="text/javascript"> var so = new SWFObject("awc.swf", "awccalendar2", "700", "180", "8", "#ffffff"); so.addVariable('calendarid', '0'); so.addVariable('appurl', ''); // Flash Widget Initial Date should be ddmmyyyy so.addVariable('ldate', '20052014'); so.write('awccalendar'); </script> </div>  <!-- Embedded Calendar -->
    SWFOBJECT.JS CODE
    /** * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/ * * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * */ if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(

    In that case, I will have no choice but to decompile the .swf to get the .fla because the original .fla is un-obtainable. Unless there is a way to edit the contents of the .swf file without decompiling it.
    I can see the code inside via various decompile tools and it seems that I would need to add the equivalent of <src target=_blank> to some of the lines I have shown below.
    obj_xml.load(appurl + "loadconfig.aspx?calendarid=" + calendarid);  -- need to edit this so it opens in a new window using something similar to target = _blank
    dest_page = appurl + "default.aspx"; -- need to edit this so it opens in a new window using something similar to target = _blank
    I know a lot of decompile tools can get you the code and the .fla but once you edit and re-compile and attempt to replace the original with the new & updated file, the decompiler did not necessarily generate the properly formatted flash pro project file, so compiling it back into an operational .swf often ends in failure.
    Do you know or can you recommend a tool that has a very good track record of re-compiling the decompiled modified.fla into a workable and usable .swf?

  • Email Link inside a Scrollpane

    So i have a scrollpane with a movieclip in it. Inside the movieclip i put static text that says "Email Eric" and linked it with mailto:[email protected] but when i test the movie it won't work. So basically i need to know how to link an email to something inside a scrollpane. Any help would be much appreciated. Thanks for your time in advance. I know someone will come thru for me. They always do!

    ok....so i made a whole new flash document to make sure i wasnt doing anything wrong
    scrollpane instance name = ericScroll
    movie clip that scrolls thru scrollpane = content
    so i laid out all my stuff going to be a in the movieclip scroll and then put text and made it a movieclip and it's instance name is = email
    then i selected all my info including email link and other item to be content and made it all a movieclip(content)
    i have 2 layers
    site & actions
    first frame i made a button the goes to frame 17 where my scrollPane lies. on that frame in my actions i have this code
    scrollPane.setStyle("borderStyle","none");
    scrollPane.drawFocus = false;
    ericScroll.spContentHolder.email.onRelease = function() {
    trace("A");
    getURL("mailto:[email protected]");
    s then when i test movie i click the button that takes me to the scrollpane ....scroll down....press the button and nothing

  • Is it possible to have multiple hyperlinks inside an interactive button?

    For example I have 5 buttons on a page.
    Each button when clicked reveals a three column text chart.
    In each of the columns there is a different hyperlink.
    It appears that when I convert that chart to a button, so it can be hidden and revealed it loses the text hyperlinks inside the columns.
    Is there a way around this?
    Am I doing something incorrect?
    I'm currently using InDesign CC.
    Thanks.

    You can go to the InfoObject for which you want to create Hierarchy
    Infoobject Change
    Hierarchy Tab -
    Manage Hierarchy -
    Creater Hierarchy in the Popup Window
    You can follow the link which Noor has updated
    Thanks
    Hari

  • HELP : onPress event for a movieclip inside of ScrollPane

    I have a ScrollPane and this ScrollPane loads an item from
    the Library. And this library item contains moviecilp and I'm
    trying to add 'onPress' event to this movieclip by..
    MovieName.onPress = function()
    trace("Pressed");
    But, since this movie is inside of ScrollPane the onPress
    event never occurs.
    Please let me know how to an event to a movieclip that
    resides inside of ScrollPane.
    Thanks in advance.

    As Luigil said, there is a path problem.
    First you must find the right path.
    create in level0 the var test1:String;
    //Put this on Frame 1 of your loaded MC:
    _level0.test1 = this; //now you can see the right path
    cheers

  • Accessing Button inside Movieclip/ScrollPane

    Hello all,
    I'm trying to understand how to build a button inside a movieclip.  I have a template that has movieclips within movieclips, and when I create a button (all using AS2) the button will work if I test the scene, but in the whole flash movie it does not work.  I also have some buttons located inside a ScrollPane that also do not call correctly.
    For my button I am using this code:
    facebookbtn.on (release) {
    getURL("http://www.facebook.com/","_blank","GET");
    ^ This is placed on the button "facebookbtn". I also tried using: _root.bgPages.pg1.facebookbtn.on (release), to no avail.
    For the one inside a ScrollPane I am attempting to call a javascript function:
    on(release){
         import flash.external.ExternalInterface;
         ExternalInterface.call("GroupDelegate","dayone1");
    ^ This also does not work, with or without the button name before on(release).
    I'm putting the FLA file here so that if anyone has the time, could help me with this quick problem. Thanks!
    FLA: Download FLA

    Do not place code inside objects with code on(blah2x). It will lead to unpredictable behaviors and besides it is bad practice. Centralize all your code on one frame in the timeline. Use this format on the main timeline:
    import mx.utils.Delegate; //declare at top only ONCE
    YourButton.onRelease = Delegate.create(this, YourFunctionCall);
    or
    YourButton.onRelease = function()
       //do your stuff here
    Do the same thing with the ExternalInterface. You can put the import at the top along with Delegate.

  • Accessing MovieClip function of a MC inside a ScrollPane

    I have a MC that is too tall for my stage and want to place it inside a ScrollPane. The probelm is accessing functions inside the MC. I have tried scrollpane.content.mc.function but that doesn't work. How do you access a mc inside tghe scrollpane?

    >
    >
    No virus found in this incoming message.
    Checked by AVG - www.avg.com
    Version: 8.5.375 / Virus Database: 270.13.19/2245 - Release Date: 07/18/09 05:57:00
    >
    This code sits on the first frame of the swf being loaded into the
    ScrollPane:
    function setStepComplete(ss:Number,fs:Number):void{
        if(ss == fs){
            setCheckMark(ss);
        }else {
            for(var i=ss;i<=fs;i++){
                setCheckMark(i);
    function setCheckMark(chknum:Number):void{
        with (pdiform) {
            switch(chknum){
                case 0:
                    step0.gotoAndStop(2);
                    break;
                case 1:
                    step1.gotoAndStop(2);
                    break;
                case 2:
                    step2.gotoAndStop(2);
                    break;
    This is the code you suggested, sitting on the second frame; the
    ScrollPane is on the first frame (no stops()).
    MovieClip(sp_pdiform.content).setStepComplete(0,0);

  • Using hyperlinks in a scrollpane.

    Well, Ive finally been able to display the webpages in my scrollpane now. But when i move my mouse over the hyperlinks.....it doesn't change, and won't go to the located urls. What am I doing wrong please?
    Thanx

    You need to add hyperlink event listeners to your JEditorPane. This is because the editor pane only displays the document, it doesn't do anything about the hyperlinks itself.
    This is the usual way to do it...
        JEditorPane myEditorPane;
        myEditorPane.addHyperlinkListener(new MyHyperlinkListener());
        class MyHyperlinkListener implements HyperlinkListener {
            public void hyperlinkUpdate(HyperlinkEvent evt) {
                HyperlinkEvent.EventType type = evt.getEventType();
                if (type.equals(HyperlinkEvent.EventType.ACTIVATED)) {
                    // the hyperlink was clicked or activated by the keyboard or some other way, so change the editor to that URL.
                    myEditorPane.setPage(evt.getURL());
                // there is also ENTERED and EXITED, which roughly equate to HTML's mouseover, mouseout events.

  • How to create hyperlink inside Folio to Viewer library?

    Wanting to add a link inside my folio that when tapped, takes the user into the Apps Viewer Library.
    Example would be a subscription button on an article page inside the folio, when tapped opens up the Viewer library so that the users can see the subscription tile in the upper left-hand corner.
    Food Network magazine has this example - image one: user taps the "Subscribe Today" button. Image two: Users gets redirected back into Viewer library.
    How do I set this hyperlink up?
    Thanks in advance.
    Tom

    One way to do this is to create a button that points to the app's Optional URL Scheme. For example, the DPS Tips URL Scheme is "com.bringhurst.dpstips." When I create a button with a Go To URL action that specifies "com.bringhust.dpstips://" tapping the button opens the app's library. You can see an example of this in DPS Tips > Advanced Folios > Advanced Linking.

  • How do I open hyperlinks inside embedded pdf in a new window?

    I have a pdf that contains hyperlinks to other website. This pdf itself is available as a link on a website. When this pdf is loaded in IE window, and user clicks on any of the links inside this PDF, the link opens in the same window. I want all the links to open in a new window.

    I'm trying to accomplish this same thing and am having a hell of a time finding the right Class, right Methods, and/or right Properties for a solution.  Some classes seem to return obscure errors when I try to create them use the invoke node "launchURL" (the WMPLib.ICore for example).  If I use the Player base class (which MSDS says is the root class and the class that is used when you create an embedded player) I don't get anything.
    What I would like is to progmatically launch Windows Media Player to play a particular video clip in full screen on the secondary monitor.  It seems like this should work:
    But doesn't... any ideas for this?  The C# examples are difficult to understand for me.  Also, the WMP class library is a MESS! (IMHO).  Thanks for your input.

  • Highlight hyperlink inside JSTL?

    Hi,
    I am having problems highlighting a hyperlink (onclick) which is placed inside the JSTL tags.
    Could someone help me to achieve this inside the JSTL tags.
    here is my code:
    <c:choose>
             <c:when test="${!e.restricted}">
                   <a href="#" class="folderLink" onclick="this.parentNode.parentNode.style.color='blue'; viewDocument('<c:out value="${e.documentId}"/>'<c:out value="${e.documentType}"/></a>
             </c:when>
             <c:otherwise>
                  <c:out value="${e.documentType}"/>
             </c:otherwise>
      </c:choose>
    .css
    .folderLink:visited{color:blue;text-decoration:underline};
    {code}
    I need to highlight the link after clicking on the link.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Well, since it appears noone else has any ideas, here are some suggestions:
    I think the hyperlink tag needs to have either a name or id attribute so you can reference it in javascript.
    Example: id="myHyperLink"
    Assume the link is in a form tag named myFormTag.
    Then in your javascirpt, you reference the hyperlink via document.myFormTag.myHyperLink
    From there, you somehow change the color of it via style.
    If you still have problems, open the JSP page in a browser and click the menu item to view the source code.
    That way, you can see what code the JSTL generated on the client-side.

  • Accordion inside a scrollPane

    I need to put an accordion in a scrollPane. The only way I
    can figure out how to do it is to have an empty movieclip in the
    library, then set that as the contentPath of my scrollPane and
    creating an accordion inside.
    The problem is that if my accordion has 2 or more children or
    segments, there is a giant space after the accordion in the
    scrollPane that I can't get rid of.
    Here is my code:
    import mx.containers.Accordion;
    thisScroll.contentPath = "emptyMC";
    scrollContent = thisScroll.content;
    scrollContent.createClassObject(mx.containers.Accordion,
    "my_acc", scrollContent.getNextHighestDepth());
    thisAccordion = scrollContent.my_acc;
    thisAccordion.createChild("", "panel1", "first panel");
    thisAccordion.createChild("", "panel2", "second panel");
    Can any body help?

    I need to put an accordion in a scrollPane. The only way I
    can figure out how to do it is to have an empty movieclip in the
    library, then set that as the contentPath of my scrollPane and
    creating an accordion inside.
    The problem is that if my accordion has 2 or more children or
    segments, there is a giant space after the accordion in the
    scrollPane that I can't get rid of.
    Here is my code:
    import mx.containers.Accordion;
    thisScroll.contentPath = "emptyMC";
    scrollContent = thisScroll.content;
    scrollContent.createClassObject(mx.containers.Accordion,
    "my_acc", scrollContent.getNextHighestDepth());
    thisAccordion = scrollContent.my_acc;
    thisAccordion.createChild("", "panel1", "first panel");
    thisAccordion.createChild("", "panel2", "second panel");
    Can any body help?

  • Timeline Buttons Inside of ScrollPane

    Hey Adobe-ers.
    I created a scrollpane which contains several different buttons.  Each button does a simple timeline navigation, but won't function inside of the scrollpane.  I just need each button to 'gotoframeandstop'.  How can I make these buttons work in a scrollpane?
    Thanks!

    You can assign the code to the buttons from the main timeline so that targeting the main timeline for the gotoAndStop() commands is direct (sp is the scrollpane instance name in this example)....
    MovieClip(sp.content).wesley.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_93);
    function fl_ClickToGoToAndStopAtFrame_93(event:MouseEvent):void
         gotoAndStop(17);
    Or you could try targeting the main timeline from where the code is now...
    wesley.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_93);
    function fl_ClickToGoToAndStopAtFrame_93(event:MouseEvent):void
         MovieClip(root).gotoAndStop(17);

  • Placing a hyperlink inside a label

    What is the best method to place a hyperlink, such as an ADF GoLink, inside an HtmlOutputLabel?
    I have to be able to use the method .setValue() of the HtmlOutputLabel to do so as well because that label changes throughout the time on the page.

    You shouldn't try to put the JButton in the JTextField. A JTextField isn't meant to hold other components.
    Create a JPanel and add the JTextField and the JButton to it.

  • Force label width inside a scrollpane not working

    hello
    I have 7 buttons in a grid 7x1 one on top of another inside a scrolpane. i want to be able to scroll left/right 7200pixels but i can't get the scrollpane to be 7200 wide. if i make a component 7200 wide inside it, it does, but runs off the side. unless i put a 7200wide graphic as a label on that button, then i can traverse 7200 left and right with the jscrollbar. i am goign to want to select the number in the future though...have it be 1000 wide or 100000 wide on the fly....with a solid graphic that seems a kinda clunky way to do it. any ideas? i guess i need to find a way to force the scroll bar to always exist with X width.
    thanks in advance

    ignore me. i'm an idiot. the panel's preferred size was what was important, not the buttons inside it.

Maybe you are looking for

  • Error in starting nidevldu and nipxirmu services (windows event viewer)

    A computer running Windows XP SP1 and a Visual basic (V6.0) application that I've developped had crashed several times. I've seen lots of errors in the Windows event viewer saying that the nidevldu and nipxirmu services were trying to start (exact fr

  • Possible to update Flash without admin rights AND without internal server?

    We have numerous laptops and tablets that are rarely, if ever, connected to our internal network.  All of our users are standard users; our users are not allowed to be administrator users. Nonetheless, we'd like Flash Player to automatically update i

  • Missing invoice

    I am expecting an invoice from a seller through PayPal. They informed me they have sent it but I have not received an email or found anything in my account. Could you locate the missing invoice so I can pay for the goods I ordered. It was from Button

  • Best way to synch two iPhones with two different Outlooks on one computer?

    Both my wife and I have iPhones. Currently, only I synch the contacts and calendar with Outlook because I'm scared that my wife's iPhone will overwrite all my data. I haven't even set up her Outlook because I don't know the best way to do this in suc

  • Problem in using request parameters in jstl xml code

    hi, my need is to get a request parameter and use the variable in jstl(xml) select conditions. my code is , <%String txname=request.getParameter("tname");%> <x:forEach var="fe" select="$doc/transaction/tx[@tname=${txname}]/field">      <field>ss <x:o