Need help return correct name of a created the code clip

Hello. I'm a n00b AS3 with fortunately we a simple question I am designing a simple flash game. Copy the following code creates an array of video clips and the bsigns a photo for each of them. It is a map screen. What I need, it is when I click on one of the created movie clips, I need to return either the index of the item in the table or the name of the clip. Basically everything that I can use to differentiate them in the code. Here is the code:

import flash.display.MovieClip;
var MapLoader:Array = new Array();
var strJPGext:String = ".jpg";
var intContTileNumber:int;
var strContTilePath:String;
var intDistStartX:int = 63;
var intDistStartY:int = 64;
var intDistMultiplyY:int = 0;
var intDistMultiplyX:int = 0;
var intDistCount:int = 0;
var MapSquare:Array = new Array();

for (var i: int = 0; i < 729; i ++)
{
var MapSquare:MovieClip = new MovieClip();
MapSquare.push (new MovieClip());
MapSquare [i] .x = intDistStartX + (intDistMultiplyX * 30);
MapSquare [i] there = intDistStartY + (intDistMultiplyY * 30);
MapSquare [i] .name = "MapSquare" + i;
addChild (MapSquare [i]);
intContTileNumber = i;
MapLoader.push (new Loader);
strContTilePath = intContTileNumber + strJPGext;
MapLoader [i] .load (new URLRequest (strContTilePath));
MapSquare [i] .addChild (MapLoader [i]);

intDistCount ++;
intDistMultiplyX ++;

If {(intDistCount > 26)
intDistCount = 0;
intDistMultiplyX = 0;
intDistMultiplyY ++;
}

}

stage.addEventListener (MouseEvent.CLICK, reportClick);
function reportClick(event:MouseEvent):void
{
trace ("name of the movieClip Instance =" + event.target.name);
}

Now, it all works very well, it creates the plan and assigns the correct image and places them in the good X, position Y and this is the good 27 x 27 squares grid. The problem is with the name, when I click on the clip, it returns "Instance2" or "Instance5" or something else. It starts by 2 and then increases each number by 3 for each clip, so the first is 2, then 5, then 8 and so on. This is not good. I need to return the name I have given
. If I put the code in trace(MapSquare[1]) it will return the name 'MapSquare1' so I know has been assigned the name, but it is not returning.

Please help

Thank you

-Red

Add event listeners just like anything else you set in the loop for...

MapSquare [i] .addEventListener (MouseEvent.CLICK, reportClick);

They can all use the same event handler function, so there is no problem.

Tags: Adobe Animate

Similar Questions

  • I need help to write a script that detects the first instance of a paragraph style and then change

    I need help to write a script that detects the first instance of a paragraph style and then he goes to a different paragraph style.  I don't necessarily need someone to write all this, by the biggest problem is to find how to find just the first instance of the paragraph style.  Any help would be greatly appreciated, thank you!

    Hello

    then try this with your active doc:

    ....................

    myDoc var = app.activeDocument;

    mStyle var = myDoc.paragraphStyles.item ("PS_NameToFind"); change the name to paraStyle

    var mStyle_1 = myDoc.paragraphStyles.item ("PS_NameToChange"); change the name to paraStyle

    var mFrames = myDoc.pages.everyItem ().textFrames.everyItem () .getElements ();

    app.findTextPreferences = null;

    app.findTextPreferences.appliedParagraphStyle = mStyle;

    for (var k = 0; k)< mframes.length;="">

    {

    currFound = mFrames [k] .findText ();

    If (currFound.length > 0)

    currFound [0] .paragraphs [0] .appliedParagraphStyle = mStyle_1;

    }

    app.findTextPreferences = null;

    ................

    Rgds

  • the friends hyii UA HUD need help how to make a backup of the files from his deleted with (shift + delete) memory card

    the friends hyii UA HUD need help how to make a backup of the files from his deleted with (shift + delete) memory card

    Hello

    It seems that you want to restore the files removed from the memory card.

    I will definitely help you with this.

    I would say you can search the Internet for data recovery software by using your favorite search engine.

    Warning: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

    It will be useful. If you have any other questions, feel free to let us know. We will be happy to help you.

    Thank you.

  • create the code lock for computer book note

    How to create the code lock for computer book notices

    Enter the BIOS, select the Security tab and set the power on password.

    I strongly recommend that you write the power on password and put somewhere safe. If you have forgotten the password turned on, you will find that you will need to send your laptop to be repaired by HP. This is not free of cost. Once a button inside the laptop password reset are over.

    I can't be more precise, as you have not identified your laptop with its full product name or product number.

  • How to create the .cod file to run on the Simulator BB9900

    Hi, I already from the zip package in order to use the bbwp command to create the .cod file and be able to run on the simulator of BB9900, but when I run this command as described in: https://developer.blackberry.com/html5/documentation/compile_ww_app_for_smartphones_1873321_11.html

    It creates two files, each with a .bar file, this type of file, I can't run it on the 9900 Simulator but a .cod file is required to run applications on the sim card.

    I don't know how to create the .cod file.

    Thank you

    Have you used Blackberry Webworks SDK for smartphone or Tablet SDK? The .cod files should be located in the subfolder OTAInstall of your output folder if you are using the Webworks SDK for Smartphone

  • Need help pulling a name string

    Hello I'm on Oracle 11 GR 1 material and have a strings of data like these:

    SMITH, KAY C. RN, FNP
    WESTON, DEBRA, L
    ASH, CHRISTOPHER, J., PA - C
    EYEBROWS, CATHERINE J MSN NOCD
    ASH, MICHELLE
    NASH, BOB MC T MD
    BROWN-JONES, LARRY RN

    I need to enter these:
    LAST_NAME
    FIRST NAME
    MI
    CODE (the first one)

    So, if we where to watch again the data after it is pulled apart, I would like to see this:
     
    LAST_NAME     FIRST_NAME     MI    CODE 
    SMITH         KAY            C     RN 
    WESTTON       DEBRA          L       
    ASH           CHRISTOPHER    J     PA-C 
    BROW          CATHERINE      J     MSN 
    ASH           MICHELLE 
    That's what I have (this code will be executed on an external Table with 1.5mil lines):
     
    select 
        substr('SMITH, KAY C. RN, FNP',1,instr('SMITH, KAY C. RN, FNP',',')-1) as LAST_NAME, 
        regexp_substr(SMITH, KAY C. RN, FNP', '[^, ]+ ') as FIRST_NAME 
    from dual; 
    I don't know how to get the rest.

    Thanks for any help

    Published by: Sky13 on September 23, 2011 12:04
    I added a few samples more

    Hello

    Look at the data and try to find some patterns. You will not be able to get everything right, but you may be able to make the most of them.
    I would look for things:
    There always at least 1 comma in the chain? Are you sure that what comes before the (first) comma is always a name?
    When there are 2 commas, codes never come before the 2nd comma?
    Codes always come after the names?
    What parts are sometimes missing? How many times they lack?
    Never just 1 character codes?
    Some codes occur very frequently?
    Is this practice to create a table of the most common codes, or even all the codes?

    It will be much easier in PL/SQL.
    You can write a procedure which takes 1 IN argument (the plain text) and 5 on arguemnts:
    (1) first name
    (2) first name
    (3) other initial
    (4) code
    (5) a number indicating what is the probability that the results are correct. For example, 100 may indicate a very simple string, such as "Dyer, Mary. You can print the with the lowest number for some person to review manually.

    Good luck!

  • need help to correct the records in a table

    Hi all

    I loaded a content file in a single table with a single column, the file is to have the data as below
    Record 1.  ABC|AVC1|1234|
                   xyz|abc
    Record 2.  ABC1|AVC1|12334|
                   xyz
                   |ABC
    Record 3. ABC1|AVC1|12334|xyz|ABC
    I need to correct the data in the table above, the 3 reviews. is the correct format I need record1 and record2 look like.

    Note Record1... 3. the text above, I've added. (it's just a real example table a 5million rec)

    Can any of you help me correct this file using plsql query or sql by creating another table which has corrected data

    Logical I think is

    All records must have 4 delimiter if less then wear the next record in the line to the previous line for example

    Record 1. ABC | AVC1 | 1234 | XYZ | ABC

    Even if there is no delimiter on line then also make the next record in the line to the previous line for example

    Record 2. ABC1. AVC1 | 12334 | XYZ
    | ABC


    Like wise cleaning the table and placing it in a new table, to export.

    Oracle version I have is 10g


    Kind regards
    AAK

    This is because you have not changed the subquery factoring section (aka the WITH clause) properly (I suggest that you are looking for this - it's a very useful piece of syntax to have under your belt). You must change as follows:

    with res as (select rn,
                        txt,
                        ceil(sum(length(txt) - length(replace(txt, '|'))) over (order by rn)/4) grp
                 from   t), -- assuming that your table is called t.
       final as (select replace(sys_connect_by_path(txt, '$'), '$') full_txt,
                        level
                 from   res
                 WHERE CONNECT_BY_ISLEAF = 1
                 connect by grp = prior grp
                 and        rn = prior rn + 1)
    select case when length(full_txt) - length(replace(full_txt, '|')) = 4 then full_txt end full_txt
    from   final
    where  case when length(full_txt) - length(replace(full_txt, '|')) = 4 then full_txt end is not null;
    

    ETA: where 4 appears in my query, you will need to change the number of pipes in your line.
    ETA2: and I suspect that you need to change the 5 in the BluShadow query to 1 + the number of pipes in your line.

    Published by: Boneist on March 23, 2010 17:08

  • need help with correction QVC to duplication on regular basis

    Hello

    I use Oracle 10.2.0.4 on Win 2008 R2. We have Archive mode and no catalog rman is used. I have a requirement where I have to reproduce prod weaned on a regular basis to the development server.
    I created the batch a few files so that the entire process automatically. Stored all the scripts in Directory of c:\script\clone\. +.

    I took the backup copy of the password and spfile Server prod and copied on the development at the same server.

    Here are the scripts that I have performed in the order:

    * 1_clone.bat*

    Set ORACLE_SID = orcl
    sqlplus / as sysdba @c:\script\clone\2_test.bat


    * 2_test.bat*

    immediate stop
    startup nomount
    rman target sys/oracle@live nocatalog auxiliary host / @c:\script\clone\3_rman.rcv


    * 3_rman. RRS *.
    Run {}
    allot of drive type d1 track auxiliary;
    double-target database ORCL NOFILENAMECHECK;
    }
    output


    When the duplication process in about in the end, I get error below:

    content of script memory:
    {
    clone of judgment;
    startup nomount clone;
    }
    execution of Script memory
    RMAN-03002: failure of dual DB at 31/07/2012 08:02:21
    RMAN-03015: an error has occurred in the memory stored script script
    RMAN-06136: the auxiliary database Oracle error: ORA-01013: user has requested the cancellation of the current operation

    Complete recovery manager

    SQL >


    When I press exit, this window closes and I can run the alter database open resetlogs; -command with a new sql command prompt. I check online and some suggest that there could be a window with system user. Please suggest changes in the script.

    Best regards

    Hello;

    Have another session with the user of the system will cause rman raise this error. For example another session is used to start the database in nomount is always active mode.

    During the cloning process the rman session must be exclusively connected to the instance auxiliary (no other sessions are allowed).

    Double post

    request for assistance with rman cloning script

    Best regards

    mseberg

    Published by: mseberg on July 31, 2012 05:02

  • Need help to install Windows 8.1 on the partition, bootcamp on Macbook Pro 15 "mid-2010 w / no optical drive"

    I tried for almost a week in all possible ways to get windows installed on a boot camp partition on my main SSD 1 TB drive as a partition, or on my HARD drive, which is installed in place of the optical drive.  So far, everything I tried to give me some sort of error at some point in the process.  It seems that many of them are case by case, so I thought that I invite you all and see if you can help!

    I use a Macbook Pro 15 "mid-2010 that I improved with a 1 TB SSD drive as the startup disk.  My optical drive was not functional, so I moved my old 500 GB HARD drive to the location of the optical Bay.  I am also under the latest version of El Capitan (10.11.6)
    Here are my system specs:


    Presentation of the material:

    Model name: MacBook Pro

    Model identifier: MacBookPro6, 2

    Processor name: Intel Core i7

    Processor speed: 2.8 GHz

    Number of processors: 1

    Total number of cores: 2

    (By heart) L2 Cache: 256 KB

    L3 Cache: 4 MB

    Memory: 8 GB

    Processor speed of interconnection: 4.8 GT/s

    Boot ROM version: MBP61.0057.B11

    Version of the SCM (System): 1.58f17

    What I tried (from what I remember):

    I tried to change the Bootcamp info.plist file for my version of the macbook pro to use a USB stick for the installer.  It seems to have installed correctly but once I partition the disk and restart the computer, it gets stuck on a white screen with the Apple logo and I am forced to make a hard stop and then hold down option to boot into OS X, recovery, or the EFI Boot.

    If I go through the windows installation to start the EFI system, I get an error of:
    "Windows cannot be installed to this disk.  The selected disk is a MBR partition table.  On EFI systems, Windows cannot be installed on GPT disks. »

    I also tried to create a partition by using disk utility, and that too made me an error in the installation of windows.

    So far, the only way that I'm away from windows to run at all has been using the free trial of VMware Fusion 8... but I intend to use windows for more intensive tasks like audio pro, and merger simply does not offer the performance necessary to run these programs.  I'm hoping to install windows 8.1 on my internal SSD or HARD drive, regardless of the work - as long as OS X and files associated with it are left alone.

    If someone could help me please understand this point, I would really appreciate it!

    Thank you

    If your computer has an optical drive, you must use the optical drive to install Windows using Boot Camp Assistant.

  • Domain change, deleted Local System account user. Need to c:\users\name a link to the new account 'user '.

    Help please!

    My main user account is corrupted somehow.  When I try and sign it immediately disconnects.  It is after some user account problems...

    History:

    I changed my phone from a domain to a Local computer.  This deleted my domain user account, but my files etc. are still in C:\Users\myaccountname.

    I followed the instructions here to Frederik Long:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-security/missing-user-accounts-after-Windows-7-restore/64c93151-dc6d-40FA-a9de-3356336f8f81

    This re-creates the user account, but it won't log in now. When I try and login it debits and then disconnects.

    Specifications of the system.

    -Lenovo T410

    -Version 6.1.7601 SP1 Build 7601 Win7Pro

    -Most up-to-date drivers

    Many would prove defective in Event Viewer... tried to fix a few elements such as Task Scheduler still having the old "Domain\myaccountname" domain as a user account to be used for several tasks, but I am now ideas.

    No point system restore not reported by system restore (unlikely, given that I remember many being created relatively recently), but maybe it's because I'm logged into a user account Admin backup.

    Any suggestions or ideas appreciated.

    Hello

    Thanks for posting your question on the Forum of the Microsoft community.

    Given that your problem is a domain account, governed by different group policies, he needs to have checked whether administrative privileges have completely been provided to the local user. I would recommend so post your query in the TechNet Forums for best expertise on this issue.

    TechNet Forum
    http://social.technet.Microsoft.com/forums/Windows/en-us/home?category=w7itpro

    Hope this information helps

  • Need help with changing PowerCLI script to get the interface driver NETWORK &amp; firmware version?

    Hi all

    mattboren created the script below for a list of BIOS hardware version and firmware version:

    ## Script function: quickly get BIOS date, Smart Array FW version, and iLO FW version for HP hosts in a given location (folder, cluster, datacenter, etc.)
    ## Author: vNugglets.com -- Sep 2011
    
    ## folder in which hosts in which we are interested reside
    #$strHostsFolderName = "myFolder"
    #Get-View -ViewType HostSystem -Property Name, Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo -SearchRoot (Get-View -ViewType Folder -Property Name -Filter @{"Name" = "^$([RegEx]::escape($strHostsFolderName))$"}).MoRef | %{
    ## cluster in which hosts in which we are interested reside
    
    $strHostsClusterName = "Production"
    Get-View -ViewType HostSystem -Property Name, Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo -SearchRoot (Get-View -ViewType ClusterComputeResource -Property Name -Filter @{"Name" = "^$([RegEx]::escape($strHostsClusterName))$"}).MoRef | %{
        $arrNumericSensorInfo = @($_.Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo)
        # HostNumericSensorInfo for BIOS, iLO, array controller
        $nsiBIOS = $arrNumericSensorInfo | ? {$_.Name -like "*System BIOS*"}
        $nsiArrayCtrlr = $arrNumericSensorInfo | ? {$_.Name -like "HP Smart Array Controller*"}
        $nsiILO = $arrNumericSensorInfo | ? {$_.Name -like "Hewlett-Packard BMC Firmware*"}
        $nsiNXdev = $arrNumericSensorInfo | ? {$_.Name -like "nx_nic device*"}
        $nsiNXdrv = $arrNumericSensorInfo | ? {$_.Name -like "nx_nic driver*"}
    
      if ( $nsiNXdev.Count -gt 0 ) {
           $nsiNXdevice = $nsiNXdev[0].Name
      } else {
           $nsiNXdevice = "n/a"
      }
      if ( $nsiNXdrv.Count -gt 0 ) {
           $nsiNXdriver = $nsiNXdrv[0].Name
      } else {
           $nsiNXdriver = "n/a"
      }
    
        New-Object PSObject -Property @{
            VMHost = $_.Name
            "SystemBIOS" = $nsiBIOS.name
            "HPSmartArray" = $nsiArrayCtrlr.Name
            "iLOFirmware" = $nsiILO.Name
            "nx_nic device" = $nsiNXdevice
            "nx_nic driver" = $nsiNXdriver
        } ## end new-object
    } | Export-Csv C:\temp\Production-BLadeG7.csv  ## end Foreach-Object
    
    
    
    
    

    However, I would like to change the driver for the CARD and the version of the firmware but still appear.

    Any kind of help and suggestions would be greatly appreciated.

    Thank you.

    Try like this

    $strHostsClusterName = 'production '.

    Get-view ViewType - HostSystem-Property Name, Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo - SearchRoot (Get-View - Name ClusterComputeResource-property - ViewType filter @{'Name' = ' ^ $([RegEx]: escape ($strHostsClusterName)) $"" "}). MoRef | %{

    $arrNumericSensorInfo = @($_.) Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo)

    # HostNumericSensorInfo for controller table of BIOS, ILO,

    $nsiBIOS = $arrNumericSensorInfo |? {$_. {Name: like "* system BIOS *"}

    $nsiArrayCtrlr = $arrNumericSensorInfo |? {$_. {Name - like "HP Smart Array Controller *"}

    $nsiILO = $arrNumericSensorInfo |? {$_. {Name - like "Hewlett-Packard BMC Firmware *"}

    $esxName = $_. Name

    $esxcli = get-EsxCli - VMHost $_. Name

    $esxcli.network.nic.list () | %{

    $esxcli.network.nic.get ($_.) Name) | %{

    $props [ordered] = @ {}

    VMHost = $esxName

    "SystemBIOS" = $nsiBIOS.name

    "HPSmartArray" = $nsiArrayCtrlr.Name

    "iLOFirmware" = $nsiILO.Name

    "nx_nic device" = $_. Name

    'nx_nic pilot' = $_. DriverInfo.Driver

    "nx_nic driver version" = $_. DriverInfo.Version

    "nx_nic firmware version" = $_. DriverInfo.FirmwareVersion

    } # end new object

    New-object PSObject-property $props

    }

    }

    } | Export-Csv C:\temp\Production-BLadeG7.csv # end Foreach-Object

  • need help on modbus RTU: do not know the meaning of the other output registers

    Hi all

    I use LV 8.5, a programmer time & 1st novice LV to post msg in discussion, so please let me know if I missed something important.

    In any case, I'm 2 power meter data acquisition (1st is CPM-50 model, 2nd is MWH - 10, the two brand ADTEK). the Protocol of these devices are modbus RTU. I have two targets to:

    1 acquire data using RS - 485 (portable <-->meters of power)

    2. acquire data using ethernet (laptop <-->converter series/ethernet <-->meters of power)

    now I'm in the 1st part, I use the local brand USB-RS485 converter & I think that there is no problem in the port itself (past the loopback test). I create a program using LV samples Mo using w / these port settings: 9600, 8, N-1 as databit baud, parity, stop bit respectively (the same data format of the device: see page 17/42 of the manual). I use the query.vi series of MB that I customized to eliminate the error timeout 6101 (see attached photo).

    Problem: I can read the right data into the output register , but is located in the 5th element of the 1 d array. In the peak of the attached example, I'm currently reading the baudrate of the device (see manual pg 26/42: address 0102 h = 258 d). so I read the 9600 w/c is correct. I also had the correct readings of other addresses of parameter which is also located in the 5th element of the 1 d array. Note: I never tried to read data from power because the meters are not yet installed in the cabinets of power (maybe installed nextweek leave)

    Question:

    1. What is the significance of the first four output records in my table 1 d of output?

    2. why I got 5 output registers eventhough I'm asking only 1 quantity?

    3 read the correct data in the 5th element normal?

    I want to just be deleted in the data I read before jumping in part 2 (connection via ethernet). If I forgot some valuable information, let me know. Thanks in advance!

    Kind regards

    Ivel


  • need help with nero kwik dvd burner to the top and running.new nget computer appreciate any help

    new computer, need help for nero dvd borning kwik place and ongoing, as if I wanted to get stuff for my grandchildren, any help really appreciated. Thank you

    http://www.Softpedia.com/get/portable-software/CD-DVD-tools/Windows-portable-applications-portable-AmoK-CD-DVD-burning.shtml

  • I need help for Windows Vista black screen during the connection, even with the login screen removed

    Hey, I have a problem in Windows Vista:

    I've been updating / updated my graphics card and it is the graphics card, I'm updating, after a while, a black screen will appear (PITCH BLACK) and I there is no cursor and I tried Ctrl + Alt + Delete, but nothing seems to work, after I turned off my laptop, starts to load then it was the new dark night! (NO LOGIN SCREEN). Then I turned off my laptop then I constantly pressed f8, then I pressed "Computer repair" then it loads then my screen showed "Another user", then I clicked it then I had to type my ID but I have no details of connection, I pressed on enter with no connection details, but this still does not work because I had to type in my login information. I tried everything, then I went to safe mode and fact a password and changed my admin account type, then I rebooted my laptop, then I have constantly pressed f8 and pressed "Computer repair" then it loads and then my screen showed 'Another user' again... .

    PLEASE I NEED HELP! I WANT TO PLAY MY GAMES!

    Hello

    Follow the steps below:

     

    Method 1: Do the Startup Repair to fix the problem.

    See the following article for more information on the Startup Repair:

    Startup Repair: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/startup-repair-frequently-asked-questions

     

    Method 2: Use the Bootrec.exe tool in the Windows recovery environment to troubleshoot and repair startup issues in Windows

    For instructions, see the following article:

    How to use the Bootrec.exe tool in the Windows recovery environment to troubleshoot and repair startup issues in Windows

    http://support.Microsoft.com/kb/927392

    Let us know if that helps.

  • Need help with a script (o - o8) *, see the Virgin if there is no

    Hi all what I need help with a script I can't find an example.

    I'm trying to subtract 2 numbers and then multiply this product. (o o8) * one but I just want to do the calculations if all fields have the numbers IE field o, o8 of field and field one.

    Thank you in advance. I was stuck on this days searching the Internet.

    Assuming you want to affect the outcome of this calculation in another text field, use this code as a custom field calculation script:

    var o = this.getField("o").valueAsString;
    var o8 = this.getField("o8").valueAsString;
    var a = this.getField("a").valueAsString;
    if (o!="" && o8!="" && a!="") event.value = (Number(o)-Number(o8))*Number(a);
    else event.value = "";
    

Maybe you are looking for

  • Error message when you try to scan

    When I try to scan on my HP HP 309 has, I get an error message "Cannot perform the analysis because another program has control of the HP imaging device."  I tried to restart the program, close all programs and restart the computer, and nothing seeme

  • Cannot update firmware

    Recently, I bought my 2nd gen g of new bike. I am of the India and I read that the new firmware update is available here for a month. But when I check the updates of his saying "your system is up-to-date. Is this a problem with the unit?

  • Farzana bennani was a payment of pal pay off telling me that she had updated my pc with avg2012, she is a scammer?

    received phone call saying my laptop was full of warning messages

  • Black scree

    After starting my computer and I journal to just a black screen. I can only access the Task Manager or restart/shutdown

  • Use of OleInstall.InstallPrinter dll

    Please look in the error msg and give the solution below and please direct me to the right place if I'm not had reason to post this query here. I use the code below into the HTML page. When the threshold is running OleInstall.InstallPrinter "------"