Spry.Utils.loadURL  userData

is it possible (and how) to get the userData property back to
my success-script?
Spry.Utils.loadURL("GET",
"/updater.cfm?"+formfield+"="+encodeURIComponent(fieldcontent),
false, checkstatus, {userData: "4711"});
function checkstatus(request) {
var fieldcontent = request.xhRequest.responseText;
var userdata = ?????
herbert

Hi Kate,
I'm guessing this is related to your validation function
post, so I'm going to give an example with that assumption:
function MyValidationFunction(value, options)
// Call loadURL() to validate the username synchronously.
Notice
// that I passed a false for the 3rd arg to force the
request to be
// processed synchronously.
var request = Spry.Utils.loadURL("POST",
"userExists.cfm?name=" + encodeURIComponent(value), false);
// The assumption here is that the server is going to reply
// with the word "true" (Content-Type: text/plain) if the
name
// already exists, or "false" if it doesn't already exist.
If
// you want to get fancy and return a response wrapped in
XML,
// or some other format, you'll have to parse it out
yourself.
// Since this validation function needs to return "true" if
the
// name doesn't exist, we need to make sure we don't get a
"true" value back!
return request.xhRequest.responseText != "true";
--== Kin ==--

Similar Messages

  • Spry.Utils.loadURL problem

    I'm having trouble with the last parameter of
    Spry.Utils.loadURL.
    I know I need more info in the last argument but I cannot
    find good documentation on this. I can work out how to do it with
    form data, but not with data passed as a simple variable parameter.
    ANY help appreciated!
    In the code snippet below I am trying to pass a value to
    Spry.Utils.loadURL that will them be passed to resfunc as request.
    But I cannot work out how to do this.
    The function that calls Spry.Utils.loadURL works ok., I test
    that it is receiving the correct value by using alert(value). But
    how do I get this value into the argument list of
    Spry.Utils.loadURL so I can display it?
    function doFormPost(url,photoId,resfunc) {
    formData = encodeURI(photoId);
    Spry.Utils.loadURL('POST', url, true, resfunc,
    {"Content-Type": "application/x-www-form-urlencoded;
    charset=UTF-8"});
    function resFunc(request) {
    var mydiv = document.getElementById("foo");
    var result = request.xhRequest.responseText;
    $("result").innerHTML = "Result was: " + result ;
    mydiv.innerHTML = result;
    function HandleThumbnailClick(id, photoId)
    StopSlideShow();
    doFormPost('moon.cfm', photoId,resFunc);
    dsPhotos.setCurrentRow(id);
    ShowCurrentImage();

    Hi Kate,
    I think what you are trying to do is this:
    function doFormPost(url,photoId,resfunc) {
    // URL encode the photoId value.
    formData = encodeURI(photoId);
    // Build the headers object *outside* of the loadURL call to
    reduce *visual* confusion.
    // All we want to do here is to make sure that when we make
    the request, that the browser also
    // tell the server that the data we are sending in postData
    is url encoded.
    headers = {};
    headers['Content-Type'] = "application/x-www-form-urlencoded;
    charset=UTF-8";
    // Send the post request, making sure to pass the content
    type header and formData in the options object.
    Spry.Utils.loadURL('POST', url, true, resfunc, { headers :
    headers, postData: formData });
    The 5th argument loadURL is an options object. You can
    specify the named properties on this object that you want, for
    example "headers" and "postData". The names of the option
    properties you can specify are:
    username - String that specifies the username on the server
    to use when making the request.
    password - String that specifies the password to use when
    making the request.
    postData - URL encoded string of name value pairs. Used when
    the request is made with "POST".
    errorCallback - Function to call if an error comes back from
    the server after the request is made.
    headers - Object that allows the caller to send additional
    HTTP headers with the request. The properties on this object are
    the named after the HTTP property. The value for the property is
    the value to send. For example if you wanted to send this HTTP
    property as part of the request header:
    Content-Type: application/x-www-form-urlencoded;
    charset=UTF-8
    You would add this to your options object:
    headers: { "Content-Type":
    "application/x-www-form-urlencoded; charset=UTF-8 }
    userData - This is anything you want to pass into loadURL. It
    will be stored on the request object so that when your
    successCallback/errorCallback is triggered, you can access it. For
    example:
    var myString = "This is a test!";
    function myCallback(request)
    alert(request.userData); // Alerts with the string "This is
    a test!"
    Spry.Utils.loadURL("POST", url, true, myCallback, { headers:
    headers, postData: formData, userData: myString });
    I realize this is annoying that it isn't documented
    extensively. We are working on it.
    --== Kin ==--

  • Spry.Utils.loadURL - IE7

    I built a pre-loader that uses loadURL to complete 35 tasks.
    After a task completes it updates the screen asynchronously with
    the % completed. It works in Firefox every time, but always fails
    in IE7 at 84%. In other words, after a specific amount of time IE7
    seems to bail. When IE7 bails all unfinished tasks trigger the
    error callback, but req.xhRequest.statusText is empty.
    For the sake of debugging all tasks are the same. If I reduce
    the number of tasks it will complete in IE7.
    So it seems quite clear there are no specific code issues.
    The debugger shows no errors. Basically, in IE7 after a certain
    amount of time the connections are just lost.
    I have such a huge time investment in this software that this
    is a huge nightmare. I didn't notice the problem until after
    everything was done.
    Does any know if there is a client side timeout in IE7? Its
    seems that is what is happening. I would appreciate to hear anyones
    ideas.

    This is what my test case looks like:
    <!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>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>LoadURL Test 01</title>
    <link href="../samples.css" rel="stylesheet"
    type="text/css" /><br />
    <script type="text/javascript"
    src="../../Spry/includes/xpath.js"></script>
    <script type="text/javascript"
    src="../../Spry/includes/SpryData.js"></script>
    <script type="text/javascript">
    var dsStates = new
    Spry.Data.XMLDataSet("../../Spry/data/states/states.xml",
    "/states/state");
    function DoTest()
    var context = new Object;
    context.data = dsStates.getData();
    context.index = -1;
    LoadNextURL(context);
    var gLock = 0;
    function LoadNextURL(context)
    var rowIndex = ++context.index;
    var count = context.data.length;
    var row = context.data[ rowIndex ];
    if (rowIndex >= count)
    Spry.$("status").innerHTML = "Done";
    return;
    var url = "../../Spry/data/states/" + row.url;
    Spry.$("status").innerHTML = "Loading (" + (rowIndex + 1) +
    " of " + count +") " + url + " ...";
    if (gLock)
    Spry.Debug.trace("WARNING: Re-entering lock! " + gLock);
    ++gLock;
    if (Spry.$("forceAsync").checked)
    setTimeout(function() { Spry.Utils.loadURL("GET", url, true,
    LoadCallback, { userData: context, errorCallback: LoadErrorCallback
    }); }, 0);
    else
    Spry.Utils.loadURL("GET", url, true, LoadCallback, {
    userData: context, errorCallback: LoadErrorCallback });
    --gLock;
    function UpdateProgressBar(percent)
    var ele = Spry.$("progressBar");
    var width = ele.offsetWidth * percent;
    ele.getElementsByTagName("*")[ 0 ].style.width = percent +
    function LoadCallback(req)
    var context = req.userData;
    var currentIndex = context.index;
    var count = context.data.length;
    UpdateProgressBar(((currentIndex+1) / count) * 100);
    LoadNextURL(context);
    function LoadErrorCallback(req)
    var context = req.userData;
    Spry.$("errors").innerHTML += "Failed to load " +
    context.data[ context.index ].url + "<br />";
    LoadNextURL(context);
    </script>
    <style type="text/css">
    .ProgressBar {
    width: 200px;
    height: 16px;
    border: solid 1px black;
    padding: 0px;
    position: relative;
    margin: 4px;
    overflow: hidden;
    .ProgressBarStatus {
    position: absolute;
    height: 16px;
    width: 0px;
    background-color: #3399FF;
    </style>
    </head>
    <body>
    <div spry:region="dsStates">
    <p spry:state="loading">Loading states.xml file
    ...</p>
    <div spry:state="ready">
    <p>Total of {ds_RowCount} rows loaded. <input
    type="button" value="Start Test" onclick="DoTest();" />
    <label>Force Async Requests: <input type="checkbox"
    id="forceAsync" /></label></p>
    <div id="progressBar" class="ProgressBar"><div
    class="ProgressBarStatus"></div></div>
    <div id="status"></div>
    </div>
    <div>
    <p id="errors"></p>
    </div>
    </div>
    </body>
    </html>
    --== Kin ==--

  • Spry.Utils.loadURL headers problem

    I am posting a request with the loadURL function.
    I am getting two values from a form :
    - a WYSIWYG texarea editor which id is 'elm1'
    - an input text field 'contentfilename'
    In my textarea, I wrote a phone number that have the
    following cars : +33
    My PHP script that receive the posted data ($_POST variables)
    don't receive the '+' cars.
    Why is that ??
    Here is my save function :
    function saveEditorContent() {
    var dataString = "elm1="+
    tinyMCE.getInstanceById('elm1').getHTML()
    + "&contentfilename=" +
    document.getElementById('contentfilename').value
    var options = {
    postData: dataString,
    headers: {"Content-Type":
    "application/x-www-form-urlencoded; charset=ISO-8859-1" },
    errorCallback: saveEditorError
    var url = "editorAction.php?action=savecontenteditor";
    var req = Spry.Utils.loadURL( "POST", url, true,
    saveEditorSucess,options );
    removeMCE('elm1');
    spEditor.showPanel( 2 ) ;
    function saveEditorSucess(req) {
    Spry.Utils.setInnerHTML('statusMessageBox',
    'SUCCESS<br/>'+req.xhRequest.responseText );
    Thank you
    Corentin

    Hello,
    You miss a step in this code. You'll have to URI encode every
    value you will send to the browser. In your situation the + in the
    phone has a special meaning in the URI encoding and will be treated
    as a blank space.
    Please modify the following line:
    var dataString = "elm1="+
    tinyMCE.getInstanceById('elm1').getHTML()
    + "&contentfilename=" +
    document.getElementById('contentfilename').value
    with this one:
    var dataString = "elm1="+
    encodeURIComponent(tinyMCE.getInstanceById('elm1').getHTML())
    + "&contentfilename=" +
    encodeURIComponent(document.getElementById('contentfilename').value);
    Regards,
    Cristian

  • Spry.Utils.loadURL problem with IE7

    Hello there. First of all sorry for my english.
    I have a problem with Spry.Utils.loadURL function in Internet
    Explorer 7 only. In firefox works fine.
    So i have an asp file that returns a string with some stuff.
    I load this asp file with Spry.Utils.loadURL like this.
    function ReLoadExtras() {
    var req = Spry.Utils.loadURL("GET",
    "ControlExtras.asp?type=get&id=50", true, MySuccessCallback);
    function MySuccessCallback(req) {
    Spry.Utils.setInnerHTML('Extralist',
    req.xhRequest.responseText);
    In interner explorer works fine only at the first page load.
    I have a button that fires the ReLoadExtras() function. But if i
    hit it again to reload the div's content return nothing or returns
    the same string. The string that ASP file returns is a value from
    database but if i change this value on the database and hit the
    button again i get the previus value. I think that something is
    going wrong with the internet explorer's cache. I'm going crazy
    because in firefox works without any problem.
    Anynone who can help :-)

    Finally i fixed this problem. The problem was Internet
    Explorer's cache. Every time that i call the asp file i have to
    make the url unique. So i create a function that creates a unique
    url.
    function ReLoadExtras() {
    var url =
    "ControlExtras.asp?ControlExtras.asp?type=get&id=50";
    var req = Spry.Utils.loadURL("GET", MakeUniqueQuery(url),
    true, MySuccessCallback);
    function MySuccessCallback(req) {
    Spry.Utils.setInnerHTML('Extralist',
    req.xhRequest.responseText);
    function MakeUniqueQuery(x) {
    var temp = Math.random() * 3;
    var tempurl = x + "&sid=" + temp;
    return tempurl;
    }

  • Spry.Utils.LoadURL Help

    I've set up a form:
    <form>
    <input id="question" type="hidden">
    <input id="answer" type="text" onblur="checkAnswer();">
    <span id="response"></span>
    <input id="submit" type="button" value="submit">
    </form>
    using spry.utils.loadurl successfully pass the question and
    answer to a php page that verifies that the question and the answer
    are found in the database... it then returns a "Valid answer" or
    "invalid answer" to the span below the form.
    it is successfully returning the correct response...but it
    doesn't prevent the user from submitting the form...any
    ideas?

    I've set up a form:
    <form>
    <input id="question" type="hidden">
    <input id="answer" type="text" onblur="checkAnswer();">
    <span id="response"></span>
    <input id="submit" type="button" value="submit">
    </form>
    using spry.utils.loadurl successfully pass the question and
    answer to a php page that verifies that the question and the answer
    are found in the database... it then returns a "Valid answer" or
    "invalid answer" to the span below the form.
    it is successfully returning the correct response...but it
    doesn't prevent the user from submitting the form...any
    ideas?

  • Canceling  Spry.Utils.loadURL request

    Hi, i have posted a thread a few days ago concerning variables and Spry.Utils.loadURL and i wish to thank V1 i for the solution.
    Now i wish to ask is it possible to cancel (or ignore) Spry.Utils.loadURL request while it is running.
    By canceling i mean not the server side code, but the Spry.Utils.loadURL request.
    Here is example of the problem:
    I have some button that sens requests to the server. It is up to the complexity of every request how long it will take to responde (sometimes a minute).
    So it is sometimes the case when a user sends some request and without waiting for the result sends another one.
    Now i have multiple requests running in paralell and due to their asynchronous behaviour i do not know which one will display first (they use asame update panel).
    So it will be good if i can tell the Spry.Utils.loadURL to cancel the "thread" he is running and only after that to start the new one.
    Parallel possible solutions are disabling the button until the request responds, which is my very last undesired solution since i do not want to tye the users hand ....
    Best regards:
    Venelin

    Spry.Utils.loadURL returns Spry's request object, so you could use that to cancel the running XHR request.
    example;
    var request = Spry.Utils.loadURL('GET','url.php',callback,true);
    // abort the request:
    request.xhRequest.abort();

  • Spry.Utils.loadURL Check Inet Connection

    We have a customer that uses a flakie internet connection
    (GPRS Connection). I'm trying to use spry to see if the connection
    has dropped, then display a DIV tag in their current webpage. I
    think you can do it with the "errorCallback" but I can't seem to
    get it to work.
    Any suggestions, or should I use a different function?
    quote:
    ---- PseudoCode ----
    <!-- Loop the below code every 30 seconds to check for a
    connection -->
    function MySuccessCallback(req)
    item.style.display = "none";
    function MyErrorCallback(req)
    // Display error message on screen.
    item.style.display = " ";
    var req = Spry.Utils.loadURL("GET", "
    http://myserver/mypage.cfm",
    true, MySuccessCallback, { errorCallback: MyErrorCallback });

    This worked for me in IE, but throws an error in Firefox when
    the internet connection fails.
    Firefox Error:
    quote:
    [Exception... "Component returned failure code: 0x80040111
    (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.status]" nsresult:
    "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame ::
    http://myserver/myfolder/1.3/includes/SpryData.js
    :: anonymous :: line 123" data: no]
    http://myserver/myfolder/1.3/includes/SpryData.js
    Line 123
    Code works in IE:
    quote:
    function doLoad(){
    setTimeout( "autorefresh()",
    <cfoutput>#session.metarefresh#</cfoutput>*1000 );
    function autorefresh(){
    var ts = new Date();
    var pageLoad = 'menu.cfm?' + ts;
    var req = Spry.Utils.loadURL("GET", pageLoad, true,
    MySuccessCallback, { errorCallback: MyErrorCallback });
    doLoad();
    function MySuccessCallback(req){
    ID = document.getElementById('iConnection');
    ID.style.display = "none";
    function MyErrorCallback(req){
    ID = document.getElementById('iConnection');
    ID.style.display = "";
    <span id="iConnection" style="display:none;">Internet
    Connection Down</span>

  • Spry.Utils.loadURL(... failure

    This code works properly in local:
    var request_URL
    ="/petitions/client/remote/authenticate.cfm?username="+uName+"&password="+uPass;
    Spry.Utils.loadURL("GET", request_URL, false, authBack);
    Once I upload, I add "
    http://wconti.com... :
    var request_URL ="
    http://wconti.com/petitions/client/remote/authenticate.cfm?username="+uName+"&password="+u Pass;
    Spry.Utils.loadURL("GET", request_URL, false, authBack);
    I get the following error:
    Exception caught while loading
    http://wconti.com/petitions/client/remote/authenticate.cfm?username=contiw&password=italia :
    The download of the specified resource has failed.
    Just starting with Spry, please bear with me.
    Thank You

    This code works properly in local:
    var request_URL
    ="/petitions/client/remote/authenticate.cfm?username="+uName+"&password="+uPass;
    Spry.Utils.loadURL("GET", request_URL, false, authBack);
    Once I upload, I add "
    http://wconti.com... :
    var request_URL ="
    http://wconti.com/petitions/client/remote/authenticate.cfm?username="+uName+"&password="+u Pass;
    Spry.Utils.loadURL("GET", request_URL, false, authBack);
    I get the following error:
    Exception caught while loading
    http://wconti.com/petitions/client/remote/authenticate.cfm?username=contiw&password=italia :
    The download of the specified resource has failed.
    Just starting with Spry, please bear with me.
    Thank You

  • Spry.Utils.loadURL and https

    Hi,
    I'm using Spry's loadURL to send and recieve a response from
    a PHP script. using a "relative" url path.
    when the page is loaded in https Spry give me a
    quote:
    Error: uncaught exception: Security Error: Content at
    https:// may not load data from '
    http://'
    if the page was loaded via https why does Spry loadURL from
    http when the url path is set to relative?

    the php script simply "prints $response;" if ajax requests
    were in https is it safe to assume that the print response would be
    https as well?

  • Spry.Utils.stringToXMLDoc or a Substitute

    I am looking for a detailed guide for using the
    Spry.Utils.stringToXMLDoc function. I am not having the best of
    luck on finding detailed information on the function and would like
    to learn more about. I would appreciate it if you could please post
    some resources on this function or if there are other ways to get a
    xml string into a XMLDataSet.
    Cheers

    We only have this:
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/utils.html#stringtoxmldoc
    and this:
    http://labs.adobe.com/technologies/spry/samples/data_region/XMLStringSample.html
    --== Kin ==--

  • Spry.Utils.getNodeText

    Hi all,
    I am having trouble figuring out why Spry.Utils.getNodeText
    doesn't work. It should be pretty simple from the example. When I
    do something simple as the following though, I get errors:
    var one = Spry.Utils.getNodeText("toggleFakeTrigger");
    toggleFakeTrigger is the id of a row such as:
    <tr id="fakeRow" class="subTableHeader">
    <td id="toggleFakeTrigger" class="rowHeader
    expandButton">Fake</td>
    <td><span
    class="bold">$1,329.14</span></td>
    <td><span
    class="bold">$3,289.81</span></td>
    </tr>
    I am using Firebug and the message it gives me is:
    Spry.Utils.getNodeText is not a function. I am referencing both
    SpryData.js and SpryDOMUtils.js. It should be cut and dry. Why
    isn't this working? WHy isn't it returning the text? It doesn't pop
    up the alert, by the way. Thanks!

    I shouldn't have been so hasty with my previous answer. I
    just remembered that innerText is IE only. You'll want to do
    something like this:
    function getTextContent(ele)
    ele = Spry.$(ele);
    return ele.textContent ? ele.textContent : (ele.innerText ?
    ele.innerText : "");
    var one = getTextContent("toggleFakeTrigger");
    --== Kin ==--

  • Spry.Utils.setOptions

    I'm creating an object with spry as a property...i want to
    trigger the loading of the spry myself so i rely on setting up the
    spry data set manually and triggering the loadData
    can you use setOptions to
    quote:
    Spry.Utils.setOptions({subPaths: 'parm/value'})
    and other variables as necessary?

    Spry.Utils.setOptions() is defined in SpryData.js ...
    including that file should get rid of the error.
    --== Kin ==--

  • Append swf file - Spry.Utils.updateContent - not work

    I don't understand this
    When I try to add swf file to Spry Tabbed Panels content -
    everything is OK. Now - in tabbed panels content I want to insert
    data from external html files. In this external file I have swf
    file and text, and images. When I preview this html external file
    in browser - all data are displayed correctly. When I try append
    this file into tabbed panels content :
    <a href="#" onclick="Spry.Utils.updateContent('apDiv1',
    'products/products1.htm'); return false;">Append file</a>
    only swf file in a new window are display.
    If I delete swf content from external html file - everything
    is ok. But if in external append file is a swf content - IE display
    only swf file.
    Is there posible to append html file with swf file in this
    method in any way?

    Hi Elaine,
    The implementation of AC_FL_RunContent() suggests that it was
    only meant to be run *BEFORE* the page finishes loading. Because
    Spry data sets and regions load and redraw asynchronously, usually
    *after* the page finishes loading, they are not compatible. As
    we've mentioned above, if Spry triggers the call to
    AC_FL_RunContent(), it will most likely be *after* the onload event
    has fired, and since AC_FL_RunContent() uses document.write() it
    will result in the entire page being overwritten by the
    <object>/<embed> tag that it writes out.
    That all said, libraries like SWFObject were designed to be
    called even after the onload event fires, at least from what I can
    tell from their samples. If you need to extract data from a data
    set to create your SWFObject, you can simply attach an observer to
    your data set that will tell the swfobject to do what it is you
    want it to do. For example:
    <script type="text/javascript">
    var dsProducts = new Spry.Data.XMLDataSet("products.xml",
    "/products/product");
    // Register an observer on dsProducts so that any time it
    changes data or the current
    // row changes, it tells the swfobject what to do:
    dsProducts.addObserver(function(notificationType, notifier,
    data)
    if (notificationType != "onDataChanged" || notificationType
    != "onCurrentRowChanged")
    return;
    // Do something with the swfobject here:
    var curRow = dsProducts.getCurrentRow();
    // The following embedSWF call is only an example of how to
    get the "productURL" column
    // value for the current row and pass it to the swfobject.
    The rest of the args, are left as names to
    // show you what you should be passing.
    swfobject.embedSWF(curRow.productURL, replaceElemIdStr,
    widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj,
    parObj, attObj);
    </script>
    --== Kin ==--

  • Cache of Spry.Utils.updateContent data?

    So I have a need for a Tab system that pulls data from other
    files to load into the tabs. Any links in those files will trigger
    the file to load into the tab (think like an iframe, but no
    iframes). If the link is to an external site it will work as
    normal. The links in my outside files don't need any js, id or
    class in them. Just normal html. With some help from the yahoo
    event and dom library I was able to detect clicks and redirect
    everything very nicely. Did I need to use YUI to do the event
    listener? Not sure, it made it pretty easy and I am no JS expert. I
    didn't see anything within spry to help in that regard.
    Example Here:
    http://dev.besavvy.com/Spry_P1_4_1214/samples/tabbedpanels/tabbed_panel_sample.htm
    My trouble comes with caching of the files. It seems FF
    caches my .html files but not .cfm ones. IE caches both. I can use
    the cfheader tags to prevent the cache I am sure, but that doesn't
    fix .html files. I know I can work around it but I wanted to check
    here as I am not clear if there is an optional attribute or another
    direction I should take. It would be very handy to have a :cache
    true :cache false type of solution.

    Try:
    Spry.Utils.updateContent('apDiv1',elTarget,null,{method:'POST'});
    which I believe will cause it to use the browsers post
    mechanism which never caches.
    Or:
    var ts = new Date();
    Spry.Utils.updateContent('apDiv1',elTarget+'&TS='+ts.toString());
    which will add a unique date string to the end of the url
    being requested making the browser believe it is a new page
    Oh if the page doesn't already have a query string change +
    '&TS=' to + '?TS='
    Regards,
    Chris Phillips
    Senior Application Developer
    www.dealerpeak.com

Maybe you are looking for

  • Cannot get free Skype on my new Sony Bravia

    When I access Skype on my Sony Bravia all I get are the features which use credit.  Am I doing something wrong or is it not possible to Skype from tv to a computer.  Please help. mobee1957

  • Which Chipset on my Satellite 1800/400?

    Hi I'm trying to connect my notebook to a tv, but i dont know the chipset. Does anyone know it or know how i can find it? Thanks in advance

  • Generic Icons on server, others not having problems

    At work we have 3 Macs that are all hooked up to the same server. All the Macs are similar, 2-G4 Dual 1.25 GHz and 1 Imac Intel. Out of the 3, only 1, a G4, gets generic icons for Quark, fonts, Illustrator, and photoshop files. Both of the G4s were s

  • Why do Add-on Mng, Close Confirm, Download, Awesomebar help all fail together?

    Several features of Firefox fail after I allow Firefox nightlies to update Firefox. Because the behavior is so broad, I don't know how to enter it into bugzilla. The features that break are: * Add-ons Manager doesn't show my add-ons or the Get New Ad

  • Approval Process for document?

    hello sap experts, I had one scenario in which clients Document from lower office is sent to higher office for approval. at each stage of approval it is signed by officer on the basis of allocation of power to sign the document. How to map this scena