Problem passing variable from PHP to Flash

I'm moving a single variable from PHP to Flash. However, I can't quite make it work.

In a PHP file named data.php, I use:
"$query = SELECT SUM (Debt) As Total OF THE debtclock;
$result = mysql_query ($query);
$debt = mysql_result ($result, "Total");
Print "debttotal = $debt";

In Flash 8 Actionscript, I use:
loadVariables("data.php","0");

If I understand correctly, this should make the variable available in Flash debttotal.

Can someone tell me where I'm wrong?

Try this:
loadVariables ("data.php", _level0);
The 2nd parameter specifies the target that receives variables, '0' is not a valid value for this. With _level0, variables will be found in the root timeline, so you can access it with _root.debttotal (from _level0) or _level0.debttotal (on a different level than _level0).

Welcome,
blemmo

Tags: Adobe Animate

Similar Questions

  • Pass Variables from JavaScript CS3 ActionScript

    Hello

    I can't understand what I'm doing wrong and I need help . Who better to ask than legal experts?

    I have everything works fine so far except for this actionscript. I use CS3 Flash with ActionScript, CS3.

    I have 5 buttons in flash.
    I try to perform the following tasks
    1. ensure buttons with effects in flash - done
    2 put the button in the down position based on the Web page that the user is on.
    To perform this dynamic, I apparently have to use 3 different languages, PHP, JavaScript, ActionScript.

    I've been playing with this during a week and can not understand. I have the rest of the scripts tested and verified to work.

    Here is the link to my test page
    http://www.spectacularstuff.com/PHP-test/inProgress/php-URL-detection.php

    Here is my code for the test. (This does not include the buttons. It is simply to test to see if I'm passing variable.)

    PHP code to detect the file name.
    <? PHP
    function curPageName() {}
    Return substr ($_SERVER ["SCRIPT_NAME"], strrpos($_SERVER["SCRIPT_NAME"],"/") + 1);
    }
    ECHO "is the current name of the page detected by PHP". curPageName();
    ? >

    The JavaScript Code to pass variables to the Flash
    < script language = "javascript" src = "swfobject.js" >
    var so = new SWFObject ("php - url - detection.swf", "php-url-detection", "550", "400", "9", "#FFFFFF");
    so. AddVariable ("currentpage","<? php echo curPageName();? >" ")
    < /script >

    ActionScript Code to get the JavaScript Variables and display them in flash.
    Dynamically create text fields
    var tf:TextField = new TextField();
    tf.autoSize = TextFieldAutoSize.LEFT;
    TF. Border = false;
    addChild (tf);

    var tf2:TextField = new TextField();
    TF2. AutoSize = TextFieldAutoSize.LEFT;
    TF2. Border = false;
    addChild (tf2);

    Create the variable to write to the page
    var myStr2:String;

    first attempt to put the variable on the page.
    This LoaderInfo must be capitlized. An error occurs if not.
    var paramObj:Object is LoaderInfo (this.root.loaderInfo).parameters.currentpage;.

    second attempt to put the variable on the page
    var myStr:String = this.root.loaderInfo.parameters.currentpage;
    trace (paramObj);
    trace (myStr);

    If (myStr is nothing)
    {
    myStr = "Flash is not reading JavaScript variables.:(";).
    myStr2 = "";
    }
    on the other
    myStr2 = "" Flash read the JavaScript variables! :)) ' "

    TF. Text = myStr; Display the URL on the page
    TF2. Text = myStr2 //Display Flash is happy

    [- End of Code-]


    Help, please.

    Thank you in advance.

    Wayne

    I found an answer to this for someone looking for an answer. I wrote the answer in another forum:
    http://Board.flashkit.com/Board/ShowPost.php?p=3946455&postcount=31

  • Passing variables from flash to php script - does not!

    Hey everybody. I was wondering if someone could help me. I use as2 to pass a variable from flash to my php and nothing happened! Here's the action script code that I put on my button:

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = amount.text;

    form1.sendAndLoad ("http://mywebpage.com/test.php", rise, "POST" ');

    }

    The amount of '5' is now in a dynamic text field with the variable name and instance of amount (which, in the future, will be hidden). This works very well when the button is clicked. What I'm trying to do without success, is to get this value of '5' to my test.php and did echo and it happens simply not . It comes to my php script:

    <? PHP

    $form_inp = $_POST ["amount"];

    If ($form_inp == "'")

    {

    Print "nothing entered < br >".

    }

    on the other

    {

    Print "you entered: $form_inp";

    }

    ? >

    I'm getting "Nothing entered" every time.

    I've tried different ways for the amount.text such as:

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = this. Amount.Text;

    form1.sendAndLoad ("http://mywebpage.com/test.php", rise, "POST" ');

    }

    and

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = this ._parent. Amount.Text;

    form1.sendAndLoad ("http://mywebpage.com/test.php", rise, "POST" ');

    }

    etc...

    I also tried to change the variable name in the function sendAndLoad amount to form1 as follows:

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = amount.text;

    form1.sendAndLoad ("http://mywebpage.com/test.php",form1, "POST");

    }

    and still nothing.

    In my php file, I even tried the GET instead of the POST and it always turns out nothing.

    <? PHP

    $form_inp = $_GET['monto"];

    If ($form_inp == ")

    {

    Print "nothing entered < br >".

    }

    on the other

    {

    Print "you entered: $form_inp";

    }

    ? >

    Additional info:  I put the .swf file and at the same level-.php file in the same folder on my server just to be safe, and the dynamic amount.text text field and button are at the same level in the .swf file.

    Anyone can shed some light on my situation... pretty please? I'm out!

    Thank you very much.

    Ok. So, do not let this thread unanswered, after a looooooong of trial and error, I went to as3 and began to do some testing. It turned out that the register_globals was off on my site and that is why I did not receive the variable passed with the $_POST in my php. So what I finally proposed is the following:

    In my fla/swf doc:

    to import flash.net.URLVariables;

    import flash.net.URLRequest;

    import flash.net.sendToURL;

    var urlVariables:URLVariables = new URLVariables;

    urlVariables.amount = "5";

    var urlRequest:URLRequest = new URLRequest ("http://mirador.mx/oaxaca/disco/receive_test.php");

    urlRequest.data = urlVariables;

    sendToURL (urlRequest);

    In my php file:

    $amount = $_GET ["amount"];

    echo "' AMOUNT IS:". " $amount;

    Now for all of you who have been following this thread, or which can be read in the future, I know that we we started with AS2 and finishing here with AS3 but I didn't know why it worked until I I'm so fed up I've changed in AS3 to see if I could understand. I, like many others I guess, felt a bit intimidated with AS3 and was unwilling to give it a try, but I highly recommend that you dive into it because once get you a grip on it is much more functional.

    So I m going to mark this thread as a response and hope it saves someone else all the time and the frustration that he made me... Good programming!


  • How to pass Variables from the Source (SQL) to tab target (JavaBin Shell) in ODI knowledge Modules

    Hi all

    My name is Alessandro and I am new to the community.

    I have a problem with the KM stage custom when I try to pass the variable from the source to the target.

    The ODI version tha I use is the 11.1.1.5.0.

    I created a stage KM following the instructions of the metalink document (Doc ID 728636.1).

    But when I insert the value of the variable in a test table, the value in a table is the name of the variable.

    Where I'm wrong?

    I am doing thi.

    (1) create a step in my goal of shell sql source and javabin KM. In the source tab I get the value of a query, and the name "LAST_UPDATE" column.

    In the target tab, I attribute to the variabile jv_last_update the value of the variable #LAST_UPDATE, with the same name in the selection column.

    source_tab.jpgtarget_tab.jpg

    (2) I created a second stage where I insert into a table of the value of the variable jv_last_update (to debug the value of the variable):

    insert_step.jpg

    (3) when I try to see what I have in the table, the value of any line is the name of the variable "#LAST_UPDATE"; ".

    result_table.jpg

    Thanks in advance


    Alessandro

    Hi Alessandro,.

    Interesting... I have not read the Oracle document you sent yet, but one thing I can guarantee you, is that it doesn't. If Oracle says that it should work, maybe it's a bug, or maybe he has changed on new versions of ODI. I am also on ODI 11.1.1.5 and I tried many different ways to pass SQL results to variables of java with all sorts of different labels, but none of them worked for me as well. But I managed to use it in a different way, so please see below if it matches your needs:

    We are just one step. The second is just to show that it worked:

    In the first step, on the source tab, select Oracle and point to the logical schema that you want to run the query:

    On the target, note the following Java BeanShell code with the SQL that you want to run:

    Now your variable must have the correct value of your SQL. To test it, I just write a comment 'Raise' to Jython in the second step:

    The result is 'X' as expected:

    It will be useful.

    Thank you!

  • Reading Variable from php

    I know there is a way to read PHP variables, I've seen many tutorials. What I want to do is slightly different. I need to load the flash with a variable file.

    I want the user to have a url that contains a variable, PHP then get the displayed variable and load it into the flash on the page file. Is it possible to load the variable in the flash file?

    URL

    test.php? var = "List.Xml"

    PHP Inside

    validated variable

    load the flash file and load the var in the actionscript code

    Embeded Flash on the page or a redirect page

    ActionScript uses the variable that was embedded in the URL

    Any help on this would be greatly appreciated.

    Thank you

    Tony

    You can pass the variable most directly to flash using javascript to retrieve the url (including the query string) and use the externalinterface class in flash to interrogate this js function.

  • Passing parameters from HTML to Flash Object

    I know it must be very simple, but following the examples I can find on passing parameters from HTML to my Flash application, I have not been successful. I would like to find a relatively common using AS3, Flash CS4 example.

    If it helps, I need to pass the url of an XML file to the flash application so that it can get instructions on what it is supposed to play. We want to do in this way because we do not control the web site so that we can not just leave the XML file on the server and maintain as needed.

    I don't know if I'm just making typo or what. Share and other snippets of it would be greatly appreciated.

    Thanks for any help.

    Hey I think I know what you need to do, try this "" in the HTML code, and then create a Flash var like this:

    var xmlURL:String = this.loaderInfo.parameters.xmlURL;

    chance!, tell me if it works

  • How to pass variable from bean to resourceID for the document map?

    Hello experts, I have added WebCenter workflow Microsoft document explore task in my ADF which as a parameter called resourceId.   I want to pass variable bean to this setting, because the content ID (doc name or ID) are determined dynamically.

    When I provide ${"UCM57Server #dDocName:1379596941565_CONTACT_OPTREGI"} as a resource in the expression ID, it works very well.    But samething if I attribute to a bean bean variable and entitlement in the form ${sessionScope.MyBean.docName}, it evaluates the variable bean in the form ${"UCM57Server #dDocName:1379596941565_CONTACT_OPTREGI"} and then below throws the exception:

    [2013-10 - T 02, 14: 34:50.369 - 04:00] [DefaultServer] [WARNING] [WCS-07219] [oracle.webcenter.doclib.internal.view.backing.ContentProvider] [tid: [ASSETS].] [ExecuteThread: '10' for the queue: "(self-adjusting) weblogic.kernel.Default"] [username: anonymous] [ecid: d50192415c689920:-7d97126c:1417a5d6a49: - 8000 - 000000000000008 a, 0] [APP: CreateContactWSProxy] invalid parameter combination: the login name specified by resourceId = ${"UCM57Server #dDocName:1379596941565_CONTACT_OPTREGI"} is not specified in the parameter connectionName = UCM57Server.

    Variable bean is defined as:

    private String Nomdoc = "${" UCM57Server #dDocName:1379596941565_CONTACT_OPTREGI "} ;

    Please give me some advice on how to pass the value to resourceId dynamically via the variable of bean.

    Thank you.

    private String Nomdoc = "UCM57Server #dDocName:1379596941565_CONTACT_OPTREGI";

    Without $ {}

  • Pass Variables from Flash to PHP

    Good day nice webmates. I hace this situation:

    I created a couple of text fields in flash "check in" and "check out" to a small reservation system, where the user is supposed to enter data (two variables) and then those two dates should go to the next page of PHP (which is already done) and work with this date and other new variables... but I'm not who is the best way to "transfer" these variables of the flash in the php file...

    I would appreciate your answer, this is a very urgent question... Thanks in advance!

    Citations are missing inside of $_POST. It should be $_POST ["checkin"]

  • pass variables from flash to authorware

    Hello

    If I have a button in flash and want to send a string of varibales to authorware:
    -example code-
    Flash code.
    {We (Release)}
    fscommand ("variable", "var1, var2, var3, var4")
    }
    Authorware code.
    EvalAssign (EventLastMatched [#command] ^ ": = EventLastMatched [#args]")
    Trace (EventLastMatched [#args])
    ActionFuntion (EventLastMatched [#args])
    Quit()

    In the authorware file, I would like to highlight this string and breakit in authorware and apply it to the ActionFuntion.

    Help, please.

    Thanks daniel

    If you have a string "var1, var2, var3, var4" you want to get each
    element of?

    Repeat with i = 1 to LineCount (EventLastMatched [#args], ',')
    lines : = GetLine (EventLastMatched [#args], I, I, ',')
    end repeat

    Must establish each element of the sting in a separate list item in the
    linear list of lines. I really don't understand what you are tying to
    do, so I use a list here for demonstration purposes, but perhaps you
    you want to replace the second line with:

    ActionFunction (GetLine (EventLastMatched [#args], i, i, ','))

    Who will call ActionFunction each time that the loop works and send it to the
    next element in the chain. In your case, it will call...

    ActionFunction ("var1")
    ActionFunction ("var2")
    ActionFunction ("var3")
    ActionFunction ("var4")

    -What are you trying to achieve?

    Mark

    deerowbear wrote:
    > Sorry that I misunderstood. When I Trace (EventLastMatched [#args]) in authorware I have
    > get var1, var2, var3 var4. The function call an external dll, passing those
    > variables off the coast and an ActionFunction in a dll file.
    >
    > Thanks daniel
    >
    >
    >
    >

    --
    ------------------------------------------------------
    Multimedia synchronization command Authorware:

    www.authorwarextras.co.UK--> orders

    Synchronization of media with ease!

    EuroTAAC eLearning 2007
    www.eurotaac.com

    www.AuthorwareXtras.co.uk
    www.freelists.org/List/flashelearning

  • CF pass variables from Flash

    Hello:

    Basically I want Coldfusion to pass the date Flash server. But I ' #theDt # ' instead of the value of "theDt" Please see the code below:

    Thank you in advance.

    ************************************************
    theDate.cfm

    < cfsetting enableCFoutputOnly = "Yes" >
    < cfset theDt = dateFormat (now (), 'dd-mm-yyyy') >
    < cfoutput >
    & serverDate = #theDt #.
    < / cfoutput >
    *****************************************************************

    var my_lv:LoadVars = new LoadVars();
    my_lv. OnLoad = {function (success:Boolean)}
    {if (Success)}
    theDate.text = my_lv.serverDate;
    theDate.text = this ["serverDate"];
    theDate.text = this.serverDate;
    } else {}
    var localDate:Date = new Date();
    theDate.text = (localDate.getMonth()+1)+"/"+localDate.getDate()+"/"+localDate.getFullYear ();
    }
    }
    my_lv. Load("C:\\CFusionMX7\\wwwroot\\OC\\theDate.cfm");
    ***************************************************************

    my_lv. Load("C:\\CFusionMX7\\wwwroot\\OC\\theDate.cfm");

    You're not "enforcement" a page of the CF, just read the content.

    The road should be something like (if you are testing your machine):
    my_lv. Load (" http://127.0.0.1//OC//theDate.cfm"); or the corresponding URL (and the Web server must be configured to run CF pages)

    Concerning

  • pass variables from .swf to .swf?

    I'm creating a game using Flash CS5 and AS3. The game will consist of two towers. In the first round, the player entered a name for their character, makes decisions about the appearance of their character, buys and sells products, etc.. Their desired name, selected appearance and the balance of the bank account are stored as variables. When the player reaches the end of the 1st round, they click a button to start round 2.

    I would like to develop 2nd round in a flash file separated due to the complexity of the 1 round file. However, I would like the 1st round to the cycle variables 2. 1st round is currently a .swf file embedded in an html page.

    What is the best strategy to pass the variables to round 2? I watched FlashVars and channels requests. I thought to load round2.swf into the same html as round1.swf page. I thought to take the player of round1.html to round2.swf, which would be integrated in round2.html. I cannot hardcode the values of the variables in a query string, because they are different for each user. Does it matter?

    I could use some general advice on the best approach and specific tips on the best encoding solution. So far, I've tried pieces of different options, but nothing went completely around. Thank you!

    No, you do not have a special server to use sharedobject.  Just create an instance at the beginning of each swf using the same first parameter:

    var so:SharedObject = SharedObject.getLocal ("yourgame", "/");  run only once, by swf

    so any time you want to save the data, use:

    so. Data.Name = yourname_tf.text;

    so. Data.score = yourscoreVar;

    so. Flush;

    any time you want to retrieve data, use:

    yournameVar = so.data.name;

    youscoreVar = so.data.score;

    //////////////////////////

    your different SWF will share the same data as long as first parameter ("votrejeu") is the same when you instantiate a sharedobject

  • Pass variable from ColdFusion to the JavaScript window

    Hello world

    I have a java script window that will open when the user clicks on the link, my problem is that how can I pass a ColdFusion variable to the window. I use ColdFusion 7 so I can't use cfwindow.what should I put on the place * ? I tried to put EntityId in the location javascript:poponload (EntityId);   and function poponload (EntityId), not ' t not work then please let me know if you know how to do this.

    My code:

    < SCRIPT language = "javascript" >

    function poponload()

    {

    Window.Open (' test.cfm? test = '* , "mywindow", "menubar = 1, resizable = 1, width = 350, height = 250');

    }

    < /script >

    < body >

    < cfform >

    < cfset EntityId = '#form. EntityId #" > /i want to spend EntityId to the javascript window "

    < / cfif >

    < a href = "javascript:poponload();" "> find ID < /a >

    < / cfform >

    < / body >

    Thank you, Rob - appropriateness to the subject, not you (or someone) know what I'm doing wrong with the code below? (the message in the "alert" box is #x #, if the function is not picking up the Coldfusion variable, x). Thanks in advance!

  • [CS4/JS/AS] doScript pass variable from JS to as.

    I have this doScript I want to pass a variable (theFold) to the AppleScript, he appealed:

    #target "inDesign - 6.0.

    var theFold = ["Spotlight"]

    var myScriptFolderPath = ("" HD:Users: user: Desktop Macintosh: unlock V3.app: "");

    app.doScript (file (myScriptFolderPath), ScriptLanguage.applescriptLanguage, theFold);

    AppleScript is:

    adding property: "Macintosh HD:Users: user: Desktop:

    on the run (fromJava)

    tell application "Finder".

    set name2 to (fromJava text)

    set theName to add & name2 as alias

    my openSez (theName)

    end tell

    end of race

    on openSez (theName)

    tell application "Finder".

    updated folderContents (items in folder theName)

    if (folderContents count) > 0 then

    -scroll through each item in the folder

    repeat with i from 1 to count the folderContents

    put carryThrough (section i of folderContents)

    -if this is another folder, then recurse

    if carryThrough is 'file' then

    set theName to (carryThrough as string)

    my openSez (theName)

    else

    is locked to carryThrough is true then

    locked carryThrough false game

    end if

    end if

    end repeat

    end if

    end tell

    end openSez

    Is it possible to pass a variable when calling a script from a path?

    I get the error "cannot make < script > in Unicode text.

    Thanks for any help or comments.

    Peter

    The variables are passed to a variable called arguments. You don't need an execution handler or anything like that, just:

    Name2 ((point 1 deles de arguments) text value)

    end of race

  • How to pass variables from cursor to a job

    Hello

    begin
    for cur_1 in (select  tab1.c1  c1 from  tab1)
    loop 
    dbms_scheduler.create_job(......
    ..........
    job_type =>plsql_block,
    job_action => 'declare verrm varchar2(100); '||
                           ' begin   for cur_2 in (select col1,col2 from tab2)'||
                             'loop prc( cur_1. c1,cur2.col1,cur.col2  ); end loop;  end;' ,----- gettin gerror undeclared identifier cur_1.c1
    ........)               
    end loop;

    user8731258 wrote:

    When reading about dbms_parallel, I have seen examples where the task is running an sql statement.
    Now, can we run a pl sql also block?

    Why would you run a PL/SQL block in parallel?

    Yes, the DBMS_PARALLEL_EXECUTE. Run_Task() sql_stmt parameter can accept an anonymous PL/SQL block as statement. For example

    --// example of passing a PL/SQL anon block as statement
    declare
      ..
    begin
            ..code..
    
            parallelSql := 'declare
                                    t1      timestamp;
                            begin
                                    t1 := SysTimestamp;
                                    update foo_tab set obj_type = lower(obj_type)
                                    where rowid between :start_id and :end_id;
                                    ProcessLog( fromTime=>t1, toTime=>SysTimestamp, rowsProcessed=>SQL%RowCount );
                            end;';
    
            DBMS_PARALLEL_EXECUTE.Run_Task(
                    task_name => taskName,
                    sql_stmt => parallelSql,
                    language_flag => DBMS_SQL.NATIVE,
                    parallel_level => 5
            );
    
            ..code..
    end;
    

    However, if you want code PL/SQL real multithreaded (no SQL), then that can be done using a parallel pipeline table function (PL/SQL function).

    So, I'll go for dbms_Scheduler thing. But still when I'm stuck on how to pass the value of date to work...

    In the example I posted using DBMS_JOB - cursor loop identifies the days of treatment. The loop then call ScheduleJob() to schedule a task of process to date. This procedure should look something like the following:

    // schedules a job to run procedure ProcessDailyInvoices for the specified day
    create or replace procedure ScheduleJob( day date ) is
            jid             number;
            dateParam       varchar2(100) default 'to_date(''$DATE'',''$FORMAT'')';
            plsqlBlock      varchar2(1000);
    begin
            dateParam := replace( dateParam, '$DATE', to_char(day,'yyyy/mm/dd') );
            dateParam := replace( dateParam, '$FORMAT', 'yyyy/mm/dd' );
            plsqlBlock := 'begin ProcessDailyInvoices( day=>'||dateParam||' ); end;';
    
            DBMS_JOB.Submit(
                    job => jid,
                    next_date => sysdate,
                    what => plsqlBlock
            );
    end;
    
  • Sending variables to php to Flash Builder

    Hi guys,.

    I made a form that, once sent to a Mysql server adds a table to a database.

    Here is the code I use in Flash Builder:

    ...

    "" < mx:HTTPService id = "srv" url ="http://mysite.com/addTeam.php" method = "POST">

    < mx:request >

    < format > {teamName.text} < / formatting >

    < City > {city.text} < / City >

    < / mx:request >

    < / mx:HTTPService >

    ...

    " < mx:Form x ="25"y ="10">

    " < mx:FormHeading label ="Add team"/ > "

    " < mx:FormItem label ="team name">

    " < s:TextInput id ="format"/ > "

    < / mx:FormItem >

    " < mx:FormItem label ="City">

    " < s:TextInput id ="City"/ > "

    < / mx:FormItem >

    < mx:FormItem >

    " < s:Button label ="Add"click ="srv.send ()"/ >

    < / mx:FormItem >

    And here is my addTeam.php file:

    <? PHP

    $teamName = $_POST ['format'];
    $city = $_POST ['city'];
    $addteam = $teamName. » ". $city;
    $connection = mysqli_connect ("host", "username", "password", "db") or die (mysqli_connect_error ());
    mysqli_query ($connection, "CHARACTER SET utf8" ');  the additional table will be in Bulgarian language

    $sql = "CREATE TABLE"$addteam"
    (
    FirstName varchar (20),
    Name varchar (20),
    Name varchar (20),
    position varchar (20),
    price int
    )
    ";
    mysqli_query ($connection, $sql) or die ("failed query:". "") mysqli_error ($Connection));

    ? >

    My question is: How can I find a text to Flash Builder if her request was successful or failed (as "echo") so that the user (admin in this case) knows what is going on and not just by clicking on the Add button and having to go to phpmyadmin to see if the table has been created or not?

    You stated

    <>

    ID = "srv" url ="http://mysite.com/addTeam.php" method = "POST" > "

    Just add

    result = "yourResultHandler ()" / > "

    then create the function that would deal with the result.

    <>

    "ID ="srv"url ="http://mysite.com/addTeam.php"method ="POST"result =" yourResultHandler (event) ">

Maybe you are looking for

  • S5-1110 pc: lack of drivers

    I installed a new hard drive in this pc, pc s5-1110, I found most of the drivers except for the PCI of Simple Communications controller and SM Bus controller.  Any help on this would be much appreciated.

  • Cannot print after canceling printing - HP Envy

    I started to print a work carried out earlier he had a problem with my document, so I cancelled the task. Now, when I try to print only appears telling me to wait for the printer to all other jobs and stays on the screen, but nothing happens. How can

  • confirmation box

    I use two monitors to my SCADA application. Is there a way to change the position where the confirmation box popups so it doesn't have to be divided into two monitors?

  • I have the HP Photosmart C6100 series all-in-one.

    HP Photosmart C6100 series (wireless) I can't print from my kindle or my iphone4 This printer supports ePrint? How can I find my e-mail address for this printer?

  • I get error Code 800706BE and download the Updater for the update does not help.

    I tried every fix auto Windows threw on me and nothing works. My Windows updates did not work properly since early June. I was not aware of it but started having problems like random shut-off and complete suddenly freezes the computer.  When that hap