Parsing PHP Vars in AS3

I'm pulling in vars from a PHP file into AS3, which im very new at, and having a few general and what i assume easy questions:
first of all, my php looks like this:
<?php
$first="VARDATA";
echo "v1=$first";
?>
my question is, why can't i:  echo"$first"  
i have to: echo "v1=$first"
here's the actionscript pulling in the data, I assume there's a parsing issue perhaps??
var myLoader:URLLoader = new URLLoader();
myLoader.dataFormat = URLLoaderDataFormat.TEXT;
var myRequest:URLRequest=new URLRequest("thefile.php");
    myLoader.load(myRequest);
    myLoader.addEventListener(Event.COMPLETE,onCompleteHandler);
    var newValue: String;
    function onCompleteHandler(e:Event):void{
    var newvariable: URLVariables = new URLVariables(e.target.data);
    newValue = newvariable.values;

YOu can echo whatever you like, but chances are you don't want to quote the $first variable like you are doing.
The URLVariables class reads the data in name/value pairs (name=value), which is why you want to send v1=VARDATA

Similar Messages

  • Global vars in as3

    Hi all,
    I'm sure this is easy, but I can't seem to find out how to do this. I need to create a global var in AS3 so that I can create the var on the main timeline and change it within another movie clip. Thanks for the help in advance.

    If you design your program correctly there is rarely a need for global variables. That said, the easiest thing is to just make the variable a public member of the document class. Then any objects in the program can access this variable using "parent.myVar", etc. I generally like to pass the main DisplayObject in as a parameter of any instantiated class. That way I don't have to use "parent.parent" or any confusing syntax. You could also use "this.root" but I try to avoid that at all costs.

  • Processing a PHP variable in AS3

    I have looked in every book that I have on AS3 and cannot
    come up with a solution to this, I hope that someone can help me.
    I am receiveing a data string from a PHP --- mySQL connection
    on my web server. The string is arriving in flash as I can trace it
    and see the variables. If I do a trace on event.target.data I see
    the following.
    &numResult1=4&numResult2=14&numResult3=37&numResult4=70&numResult5=5&numResult6=3&doneLoad ing=true
    This is exactly what I should be seeing based on my PHP code.
    I am trying to assign the numResult numbers to a dynamic text
    box, for instance numResult1 = 4, I would like to assign that 4 to
    a dynamic text field on the Flash Stage. I have not figured out a
    way to get the variable out of the string.
    I keep getting undefined or a variety or other errors with
    the different methods I try.
    I have tried numerous ways using the URLVariables class but I
    have had no luck. Use to be very simple in AS2, I could assign the
    variable right to the dynamic text field in the properties panel,
    not anymore.
    Does anyone know how I can do this. People are doing it all
    the time, it can't be that hard, is it?????
    Just a good example as to how to break the variables out
    would be really helpful. I have tried the FlashGods site and could
    not figure there examples out, in fact the two I tried did not work
    at all.
    I would appreciate any help.... Thank you.
    Mike

    I have been trying to work this through for over a week, here
    is the ActionScript Code;
    AS
    function getData(event:Event):void {
    var myURLLoader:URLLoader = new URLLoader();
    var myURLRequest:URLRequest = new URLRequest("polls2.php");
    // Actually goes to a web site.
    myURLLoader.dataFormat=URLLoaderDataFormat.TEXT;
    myURLLoader.load(myURLRequest);
    myURLLoader.addEventListener(Event.COMPLETE,
    completeHandler);
    function completeHandler(event:Event):void {
    trace(myURLLoader.data);
    var myURLVariables:URLVariables = new
    URLVariables(myURLLoader.data);
    gotoAndStop(2);
    Here is what I get with the Trace Statement:
    &numResult1=6&numResult2=6&numResult3=5&numResult4=9&numResult5=7&numResult6=1&doneLoading =true
    Here is what I get when I try to set the URL variables.
    Error: Error #2101: The String passed to
    URLVariables.decode() must be a URL-encoded query string containing
    name/value pairs.
    at Error$/throwError()
    at flash.net::URLVariables/decode()
    at flash.net::URLVariables()
    at MethodInfo-2()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    Now it sure looks to me that the string being passed is
    name/value pairs.
    I have tried every way that I can think of to capture this
    data. I must be missing something simple.
    Any ideas would be greatly appreciated.
    Thanks for your help.
    Mike

  • How to use a div id as a php var

    Hello,
      I have a form that is generated from a database with unique links that users can click and edit details about various vehicles.
    Now these links are each in their own div that has an id that i would like to use for insertion back into the database. (the users click the vehicles, then edit details, then it is submitted)
    The link is clicked for the vehicle, some details are changed via js windows etc, then the user click a finalize upload button to submit form
    For some reason i cant figure out how to use the div id to pass via php back to the database.
    what is the correct way to do this? not very experienced with ajax, and dont want to use.... but maybe hidden fields? confused.... the clicking of the unique divs does not submit the form, so not sure how to store the data effectively.... page cant be refreshed.
    [CODE]
    <div id="vehicle57">
    <a href="javascript:showSlider(57, 2001, 'Audi', 'A6' , 57, false);">
    <span class="videoStatHeading">VEHICLE: </span>
    2001 Audi A6</a>
    </div>
    <div id="vehicle54">
    <a href="javascript:showSlider(54, 1999, 'Dodge', 'Caravan' , 3, false);"><span class="videoStatHeading">VEHICLE: </span>
    1999 Dodge Caravan</a>
    </div>
    [/CODE]
    thanks a lot

    hello Shocker,
    here is the showSlider function, sorry didnt include it earlier
    function showSlider(vID,year,make,model,setupId,clickPOS){
              //remove default style
              //$("#uploadOptions").removeAttr("style");
              //window.alert("ID: " + vID);
              addMask();
        var pos;
        if(!clickPOS){
                  //make sure radio button 1 is showing
                  $("#firstRadio").show();
                  pos = calcPos(vID);//pos contains the position of the link clicks.
        }else{
                  //this means were clicked (change vehicle setup), hide
                  $("#firstRadio").hide();
                  pos = $("#bottomFieldset").offset();
                  pos.top           = pos.top-40;
                  pos.left           = pos.left-40;
        //reset error container
        $("#errorContainer").html("");
              //set width and height to zero before animation
              $("#uploadOptions").attr("style","height:0;width:0;opacity:0;filter:alpha(opacity=0)");
              //set position attributes rel to document
              $("#uploadOptions").offset(pos);
              /** AJAX request */
              if(!clickPOS){ //only reset
                        $.get("../ajaxResponders/getSetups.php",
                                  {vId: vID},
                                  function(data){
                                            $("#setup_span").html(data);//to strip the html headers from data
                        /** end AJAX request */
                        /** AJAX request */
                        $.get("../ajaxResponders/getSetupPic.php",
                                  {vId: vID},
                                  function(data){
                                            $("#setupThumb").html(data);//to strip the html headers from data
                         //reset error container
        $("#setupThumb").html(" ");
                        /** end AJAX request */
              //set element values of box
              $("#setupTextBoxWrapper").hide();//hide textbox
              $("#setupTextBox").html("").val("");//reset the textbox
              //set actionButton button text/script
              $("#actionButton").html("Confirm");
              $("#actionButton").attr("href","javascript:confirm();")
              $("#setupRadioOptions").attr("style",'');
              //$("#setupType").attr("checked",'false');//uncheck prev selected
              $("input[name='setupType']:checked").attr("checked",false);
              $("#vYear").html(year);
              $("#vModel").html(model);
              $("#vMake").html(make);
              $("#vID").attr('value',vID);
              $("#setupId").attr('value',setupId);//add setupId for case 1 & 2
              //animate box to open
              //$("#uploadOptions").hide().slideDown("slow");
              $("#setup_span").hide();
              //calculate height of setupbox
              var outerHeight = $("#setup_span").outerHeight(true);
              var fH = 280 +outerHeight;
              $("#uploadOptions").hide().css("z-index",9999);
              $("#uploadOptions").hide().animate({
                        "width": "500px",
                        "height": fH,
                        "opacity" : "1"
              },600,"swing",function(){
                        //adjust height to fit
                        $("#uploadOptions").css("height","");
                        //if no setups found in the db
                        if(!clickPOS){
                                  $("#setupLabel").html("Is this the setup for the media displayed?");
                                  var setSpanHTML = $("#setup_span").html();
                                  if($.trim(setSpanHTML)== "" && !clickPOS){
                                            //hide setup
                                            $("input[name='setupType']:checked").attr("checked",false);//uncheck selected box
                                            $("#setupType1").attr("disabled","disabled");
                                            $("#setupType3").attr("disabled","disabled");
                                            $("#setupType2").attr("checked",true);
                                            //no setup from db
                                            $("#setup_span").html('<span style="color:red">No setups found for this vehicle</span>');
                                            //flash setup span
                                            $("#setup_span").show().animate({
                                            "opacity":"0"
                                            },300,"swing",function(){
                                                                $("#setup_span").animate({
                                                                          "opacity":"1"
                                                                },300);
                                                      });//end function
                                            //flash confirm button
                                  }else{
                                            $("#setup_span").hide().slideDown("slow");
                        }else{
                                  $("#setupLabel").html("Change Setup");
              });//end function
    }//end function

  • Parsing php variable to jnlp

    Im having trouble using $_GET[id]
    my script opens an iframe at <iframe src=\"http://****.com.au/uploader/fileuploader/fileuploader_jnlp.php?id=".$_SESSION[user_id]."\" width=0 height=0 name=\"internal\"></iframe>";
    my jnlp file looks like:
    <?php header('Content-type: application/x-java-jnlp-file'); ?>
    <jnlp spec="1.0+" codebase="http://www.****.com.au/uploader/fileuploader" href="fileuploader_jnlp.php">
    <information>
    <title>Uploader</title>
    <vendor>Me</vendor>
    <homepage href="index.html" />
    <description></description>
    </information>
    <resources>
    <j2se version="1.4"/>
    <jar href="fileuploader.jar" main="true" />
    <jar href="JimiProClasses.jar" />
    </resources>
    <application-desc main-class="fileuploader.FileUploader">
    <argument>http://www.****.com.au/uploader/fileuploader/upload.php</argument>
    <argument><?php echo $_GET[id]; ?>/</argument>
    <!-- <argument>100000</argument> -->
    <!-- <argument>thomas:test</argument> -->
    </application>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    but its not parsing the variable
    I have tested for the variable using
    <?php
    echo $_GET[id];
    ?> on a standard php script and all works fine
    I can even hard code the variable and it works
    <?php header('Content-type: application/x-java-jnlp-file'); ?>
    <?php $bob =367; ?>
    <jnlp spec="1.0+" codebase="http://www.****.com.au/uploader/fileuploader" href="fileuploader_jnlp.php">
    <information>
    <title>Uploader</title>
    <vendor>Me</vendor>
    <homepage href="index.html" />
    <description></description>
    </information>
    <resources>
    <j2se version="1.4"/>
    <jar href="fileuploader.jar" main="true" />
    <jar href="JimiProClasses.jar" />
    </resources>
    <application-desc main-class="fileuploader.FileUploader">
    <argument>http://www.****.com.au/uploader/fileuploader/upload.php</argument>
    <argument><?php echo $bob; ?>/</argument>
    <!-- <argument>100000</argument> -->
    <!-- <argument>thomas:test</argument> -->
    </application>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    Can someone please tell me where I am going wrong

    hi,
    I'm gonna have to do exactly the same thing as you...
    I haven't look at it yet, but I'd apreciate if you publish the working PHP script you fixed (if you managed that is ;-)).
    thanx a lot.
    Patrice.

  • Global vars in as3 and code run order

    two questions:
    1)how can i declare a global variable in as3, like in as2 i
    could write for example :
    _global.variableName = "variableValue"
    and then access the var from anywhere.
    2)how can i tell a part of the code from the root to run only
    after the code ran in all the other movieclips when the swf loads?
    thx

    As far as the first irem goes... AS3 does not support the
    _global reference. Just Google "AS3 _global" and you can probably
    find a few options. Here's one result:
    http://www.websitemediaplayers.com/blog/global-variables-as3/

  • Php return of AS3 variables

    I am using a php script to search a database and return
    variables to my AS3 script. In php, I am using the script
    exit(urlencode("?myvar=" . $myvariable. "?"));
    to return to Flash via a URLoader.load() call. Upon return, I
    get the full html text of the php page with myvar buried in it . I
    can extract myvar with string functions, but I should be able to
    get myvar by a simple ....data.myvar call. At least, this is how it
    worked in AS2 and the AS3 documentation implies how it should work.
    Any thoughts are appreciated.

    I thought I'd rekindle this one as I'm struggling with a
    similar issue, We've recently switched to AS3 and are trying to
    replicate a few of the things previously done in AS2. We previously
    connected to a cfc using a WSDL service and then bound the data to
    datagrids etc. It seems thats all gone in AS3 so I'm trying to
    maintain the previous methodology (query from MySQL database -
    returntype being 'query') and pass the data back to flash. The
    loader.data remains as a string or rendered CF page (tags only).
    Code at bottom of message:
    Our AS2 effort seemed to be able to interpret the query as an
    object/array and bind it to a datagrid quite easily - are there any
    explanations out there that would help us do the same in AS3
    Many thanks
    MikeB

  • Php vars to flash

    I'm useing the following scripts to pass a variable from php
    to a flash combo box....problem is I get undefined in the combo box
    when i test my movie using cntrl + enter and if i try to view the
    swf on the webserver.
    Will somebody please tell me what i'm doing wrong?

    Just a couple of notes.
    1) don't use a '$' in front of the variables you are sending
    to Flash.
    "$comboData1" should be "comboData1"
    2) Not sure about using multipl "echo" statements. I never
    have but that doesn't mean you can't.
    3) Try something straightforward first, like:
    echo 'comboData1=this is data 1';
    If that works then move up to trying the variables.
    4) The last thing to note is that your PHP variables are
    surrounded by quotes.
    "$dataForCombobox_1" should be $dataForCombobox_1
    Hope these help.
    Tim

  • Is there a way to parse php from a java program(a webserver for example)

    Hellow folks,
    I've recieved an assignement for school to develop a java webserver. The http and https webserver that I have written so far works as it should. Now to make it a little bit more impressive, I would have liked that my server is able to interpret php scripts or any other server-side language. I have know idea on how to accomplish this, I both understand java and php but I haven't got a clue on how to integrate the two. I do know that it is possible to run php as a cgi-php-interpreter, in that way I should make a batch, run it and recieve its output. Thats another problem since I have got no idea on how to recieve the outputted data from the batch.
    If anyone could tell me how to start at one of the two different approaches I would be gratefull to you.
    Thanks in advance
    Benjamin Smekens

    Thanks,
    Tought about the invokation Runtime.exec(), I know how this works, allready used it, but have no idea on how to return values from a program that you bassicly run on your operating system instead of your own java application. Altough I guess I could use the Runtime.exec() to produce a html file and read that in from my webserver. Then again I didn't find any document which states that its even possible to generate the html, another thing are the passing variables e.g example.php?sfzefszf&&sfefsef. I know you can send those trough the command line php CLI, but the CLI cant generate any html if I'm right.
    Anyway any more tips would be greatly appreciated, since I'm kind of stuck on this for one month and a half and read about every document that I could find. There is to read about the subject.

  • Could Send Email also parse PHP files

    Hi,
    looking to set up a email newsletter system....can "send email to recipients from recordset" be used to send a php page? or only html/htm files?

    Hi,
    Email clients can read in HTML but I don't know any that can read php pages. You are able to make an HTML page that can have values carried over from your forms and placed into the final HTML page, giving you dynamic values within your email.

  • Returning php vars to flash AS

    Hi,
    I am not able to get a variable value from PHP back into
    flash after sendAndLoad. I can only get the actual value returned
    by php. here is the detail.
    Initially from flash
    dataOut.sendAndLoad("phptest.php", dataIn, "POST");
    and the return from phptest.php
    dataIn.onLoad = function() {
    msg.text = ' returned from php is '+this.value1 + this.value2
    the code in phptest.php
    <?php
    $a = "&value1=foo&";
    $b = "&value2=";
    $c = "bar&";
    echo $a.$b.$c;
    ?>
    in response
    the msg.text reads like this
    returned from php is foo";
    It only returns the actual value of value1 and not the passed
    value of value2, but one doublequote.
    and this is what is displayed in the browser from the
    phptest.php .
    &value1=foo&&value2=bar&
    any sugggestions. ?
    Thanks for any help

    thanks kglad
    but how do you pass a variable value. For example, if you
    don't want to send 'bar 'directly as the value for value2, but want
    to use the value of a variable say $c which will have a value of
    'bar', how do you pass that back to flash. In my example it won't
    pass the value of $c as 'bar', unless I actually assign 'bar' to
    value2. I need to be able to pass the value of $c rather than send
    the assigned value. I looked at the various examples including
    those from login examples, but they didn't work. has the same
    problem. somehow AS does not seem to accept the values passed via
    variable. Any other way to do it?
    thanks

  • Passing variables from AS3 to PHP

    Hi there
    I am having some trouble in passing variables from AS3 to PHP. I am using flash and php both in the same file [try.php].
    I've stuck with this for two days.. Here's what I have done. Please help!!!
    header.fla [Actionscript in the timeline]
    stop();
    import flash.events.Event;
    import flash.display.Sprite;
    import flash.net.*;
    var url:String = "http://localhost/0000/try.php";
    var req:URLRequest = new URLRequest(url);
    var loader:URLLoader = new URLLoader();
    var variables:URLVariables = new URLVariables();
    send_btn.addEventListener(MouseEvent.CLICK, sendForm);
    function sendForm(evt:MouseEvent):void
        // add the variables to our URLVariables
        variables.asd = "value";
        // send data via post
        req.method = URLRequestMethod.POST;
        req.data = variables;
        loader.dataFormat = URLLoaderDataFormat.TEXT;
        // add listener
        loader.addEventListener(Event.COMPLETE, onLoaded);
        loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
        //send data
        loader.load(req);
    function onLoaded(evt:Event):void
        var result_data:String = String(loader.data);
        if (result_data)
            trace(result_data);
        else if (!result_data)
            trace("error");
    function ioErrorHandler(event:IOErrorEvent):void
        trace("ioErrorHandler: " + event);
    try.php
    <body>
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="563" height="280">
      <param name="movie" value="header.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="6.0.65.0" />
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="../Scripts/expressInstall.swf" />
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="header.swf" width="563" height="280">
        <!--<![endif]-->
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="swfversion" value="6.0.65.0" />
        <param name="expressinstall" value="../Scripts/expressInstall.swf" />
        <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
        <div>
          <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
          <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
        </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
    <?php
    if($_POST['asd'])
    echo "value of var1 is <b>".$_POST['asd']."</b>";
    else
    echo "bad luck";
    ?>
    </body>
    BIG THANKS!!

    the problem is nothing your showed.   did you see a security warning that you ignored?
    to test, if that's the problem go here and adjust your security settings:  http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.ht ml
    if that fails, upload your files to a server and confirm everything works.  then start working on your local configuration.

  • AS3 to PHP

    Hey,
    Just wondering how do i integrate a php file with flash to get and recieve variables through the php file from as3?
    I would like to start off by putting as3 variables into php database.
    Then i would like to connect with an as3 variable from php to change the variable to something from the database.
    I know PHP so that isn't a problem
    Thanks.

    In that case, what you are asking for is beyond the level of effort you should expect in a forum.  What you are asking for requires a tutorial level of response.  "Hard" is a relative term, and you can only judge that relative to yourself. 
    As for your appraisal of tutorials, I disagree.  I would say most show the code needed to support the lesson -- the problem for you might just be that the lesson is not what you really want to take the time to learn.  That the code might seem advanced to you should be a clue that what you are trying to learn about is advanced.
    If you come to a forum with something to show in the way of effort, and have relevant code to show that is not working for you, then you can often get detailed help.  But if you come with a general "how do I" request, you should expect to be handed directions of where to go to find a lesson. If that happens enough you might eventually learn that you don't need to ask and can find informaton on your own.  I have found that the Flash help documentation, Google, and trial and error can help me solve just about anything.

  • AS3 & PHP

    I am trying to retrieve name and value pairs from a php
    script with AS3. Flash keeps giving me the error.
    Error #2101: The String passed to URLVariables.decode() must
    be a URL-encoded query string containing name/value pairs.
    Here is an extract of my php.
    while ($row = mysql_fetch_assoc ($qr)) {
    while (list ($key, $val) = each ($row)) {
    $r_string .= '&' . $key . $i . '=' .$val;
    $i++;
    // add extra & to prevent returning extra chars at the
    end
    $r_string .='&';
    echo $r_string;
    If i change the echo to something like echo "name&value"
    it works, its as if it does not like the $r_string. I have tried
    using urlencode($r_string) and string($r_string) but it fails. The
    php used to work in AS2 with sendAndLoad fine.

    Thanks for your reply, however php does not seem to have a
    URLEncode function, it has a urlencode function which I tried, I
    pointed that out at the bottom of my original post.
    Like I said previously, if i echo "name&value" (which is
    not urlencoded) it works fine.

  • Password authentification for as3 php upload

    Hi
    I'm making an Air file that uploads and overwrites an XML file.
    So far, the php is very simple:
    $everything = $_POST['saveThisXML'];
      $everything = stripslashes($everything);
       $toSave = $everything; 
       $fp = fopen("settings.xml", "w");
       if(fwrite($fp, $toSave)) echo "writing=Ok";
       else echo "writing=Error";
       fclose($fp);
    I'd like to set up a user name and passowrd that the user enters in the Air app.  Is it then just a matter of sending POST data to the php file, and have it check the user and pass variables?  Is that a reasonably safe way to do it?  If not, can someone please point me in th edirection of a good tutorial that they're used on this topic?
    Thanks again guys.
    Shaun

    OK
    So somewhere along the line, the user is going to have to set up a database.  I can use PHP to do that though, right?  And they'd just have to run the php page once to set it up.
    Thanks kglad.
    Also, I can successfully upload data from a string (myString) in Flash using PHP:
    var myData:URLRequest = new URLRequest("http://www.blah.com/saver.php");
            myData.method = URLRequestMethod.POST;
            var variables:URLVariables = new URLVariables();
            var origEverything:String = myString;
            variables.saveThisXML = origEverything;       
            myData.data = variables;
            var loadData:URLLoader = new URLLoader();
            loadData.dataFormat = URLLoaderDataFormat.VARIABLES;
            loadData.addEventListener(Event.COMPLETE, doneBaby);
            loadData.addEventListener(IOErrorEvent.IO_ERROR, dataLoadError);
            loadData.load(myData);  
    However, when I try to add two variables to send to php, I get a named pairs error.  Here's what I tried adding (in bold):
    var myData:URLRequest = new URLRequest("http://www.blah.com/saver.php");
             myData.method = URLRequestMethod.POST;
             var variables:URLVariables = new URLVariables();
             var origEverything:String = myString;
              var passTest:String = 'testPW';
             variables.saveThisXML = origEverything;     
         variables.saveThisPass = passTest;     
            myData.data = variables;
             var loadData:URLLoader = new URLLoader();
             loadData.dataFormat = URLLoaderDataFormat.VARIABLES;
             loadData.addEventListener(Event.COMPLETE, doneBaby);
             loadData.addEventListener(IOErrorEvent.IO_ERROR, dataLoadError);
             loadData.load(myData);  
    Why would that generate an error?
    Cheers kglad
    Shaun

Maybe you are looking for

  • How do I use iTunes Match to restore my iTunes library?

    I tried to move my entire iTunes library to an external hard drive in order to free up space on my laptop's hard drive. I followed a step-by-step guide on doing this. The process didn't go to plan though and now I'm in a situation where a good two th

  • Issue with selection paramter

    Hi all, I am developing a simple report. For selection screen, i have defined as follows. selection-screen: begin of block block1 with frame title text-001. select-options: s_date for i_table-zdate obligatory. parameters: p_projid like ztab1-projid o

  • How to run JSP pages in weblogic 8.1 sp2

    hi frnzs, plese give me some idea about how to run JSP pages in weblogic server.

  • IPhone 4 messages gone, and I can't send new ones

    Just a few minutes ago, I switched to my messages (and I had gone through them only a minute previously) and all of my stored messages are gone. I can still see their contents in the search bar, but whenever I try to access it through there, my messa

  • Can't Open Any Office Programs

    I just upgraded to snow leopard and now, none of my office programs will open. I am running office 2008 for mac on os x 10.6.1. When I click on any office program, I just get a never ending beach ball of death and I have to force quit out of it. Does