Need help with custom class main event to a class not related.

Hey guys,.

I am new to Flash and not very well with OOP.  I did it pretty far with google and hidden, but I was pulling my hair on this problem for a day and everything I try get an error or just simply don't touch the listener.

I'm trying to get my main class to send an event customized to an unrelated class called BigIcon.  The rest of the code works fine, it's just the addEventListener and dispatchEvent method that does not work.

I put in the codes below.  Let me know if something else is needed to solve the problems.  Thank you!

Main.As

package 
{
    import flash.display.MovieClip;
    import flash.events.MouseEvent;


    public class Main extends MovieClip
    {
        var iconLayer_mc:MovieClip = new MovieClip();

        public function Main()
        {
            Spin_btn.addEventListener(MouseEvent.CLICK,fl_MouseClickHandler);

            addChildAt(iconLayer_mc,0);
            placeIcons();
        }

        function placeIcons():void
        {
            var i:int;
            var j:int;

            for (i = 0; i < 4; i++)
            {
                for (j = 0; j < 5; j++)
                {
                    //iconString_array has the names of illustrator objects that have been converted to MovieClips and are in the library.
                    var placedIcon_mc:BigIcon = new BigIcon(iconString_array[i][j],i,j);
                    iconLayer_mc.addChild(placedIcon_mc);
                }
            }
        }

        function fl_MouseClickHandler(event:MouseEvent):void
        {
            dispatchEvent(new Event("twitchupEvent",true));
        }
    }
}

BigIcon.as

package 
{
    import flash.display.MovieClip;
    import flash.events.Event;
    import flash.utils.getDefinitionByName;

    public class BigIcon extends MovieClip
    {
        private var iconImage_str:String;
        private var iconRow_int:int;
        private var iconColumn_int:int;

        public function BigIcon(iconImage_arg:String, iconRow_arg:int, iconColumn_arg:int)
        {
            iconImage_str = iconImage_arg;
            iconRow_int = iconRow_arg;
            iconColumn_int = iconColumn_arg;

            this.addEventListener(Event.ADDED_TO_STAGE, Setup);

        }

        function Setup(e:Event)
        {

            this.y = iconRow_int;
            this.x = iconColumn_int;

            var ClassReference:Class = getDefinitionByName(iconImage_str) as Class;
            var thisIcon_mc:MovieClip = new ClassReference;
            this.addChild(thisIcon_mc);

            addEventListener("twitchupEvent", twitchUp);
        }

        function twitchUp(e:Event)
        {
            this.y +=  10;
        }
    }
}

This could be a bit abstract to understand, but think about what you assign event listeners to when you implement the.

When you want to have a function to respond to a button that is clicked, what do you attribute the event listener to?  She is assigned to the object that generated the event, the button.

In your case the main class generates the event.

You could take a different route with this, where if all your BigIcon objects were stored in a table in the main class, you could loop through that array and manage your contractions without having to have every BigIcon object involved in this transformation.

Tags: Adobe Animate

Similar Questions

  • I need help with my Windows Media Center. I was not able to get any video on my Windows Media Center.

    original title: I need help with my Windows Media Center.

    I was not able to get any video on my Windows Media Center. How do I do that? I can put it on Facebook, but cannot get them on the Media Center. I'm ready to pull my hair out LOL

    Hello

    1. what exactly happens when you try to play any video on media center to Windows? Error message? If so, then post back the exact error message.
    2. were you able to play videos on Windows media center with no problems before?
    3. don't you make changes on the computer before this problem?
    4. are you able to play the videos on Windows media player?
    5 are supported by Windows media centerfiles?

    Answer to the above mentioned questions could help us help you better.

    The following article might be useful.
    Solve problems with DVDs and movies in Windows Media Center
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-DVDs-and-movies-in-Windows-Media-Center

  • Need help with the classes of structure and folders!

    Hello all :)
    I've been programming some time in Actionscript 3 now. But most of the time I did not so much major projects. So I just had 1 folder with the Fla and class and other classes for different objects. But yesterday, I discovered that I need some more when structuring projects is growing. So what I would like is to have the main file with fla and a file in this folder with the classes or something. But I can't understand it. Searched around the web and Yes tried many things. So now, I have discovered that I need help to solve this problem :)!
    Hope someon can help me with this one, it should be pretty easy, but I understand it now.

    Thanks to !

    You have assigned the MainAs as the file MainFLA.fla document class?

    You have an object in the library that is linked to the class 'Classes.Animal '?

    I would like to declare the variable of animal1 where you have one, but I would not instantiate until, within the service of MainAs.

    SerializableAttribute public class extends MovieClip {} MainAs

    public var animal1:Animal;

    public void MainAs() {}

    the constructor code

    animal1 = new Animal();

    addChild (animal1);

    }

    Is the code that show you for the placement of the Animal object a typo or do you really have it assign the property x twice?

  • Need help with custom script to rename the layers

    Hello world.

    I need help to write a custom script (because I suck at it) that will allow me to go through all the layers and sous-calques for a specific name ('X') and give it a new specific name ('Y').

    I have had success using the script below, but it does not work on any text layers names where the text layer was previously particularly well-known in 'X' and now changed needs.

    Any help is greatly appreciated.

    * Note: this script was originally used to find any layer with 'Copy' in its name and remove with anything after (to correct the problem of duplication of layers by adding this text).

    This is why the function is named removeCopy. It works for renaming layers also - just not a layer of text unfortunately.

    #target illustrator

    function removeCopy() {}
    If (app.documents.length == 0) return;
    var app.activeDocument = docRef;
    recurseLayers (docRef.layers);
    }
    removeCopy();
    function recurseLayers (objArray) {}
    for (var i = 0; i < objArray.length; i ++) {}
    ObjArr [i] .name = ObjArr [i].name.replace (/ \s*current name\s*\d*/, 'new name');
    If (objArray [i] .layers) recurseLayers (. layers.length > 0 ObjArr [i]);
    }
    }

    I finally found something after searching forums for a week. My confusion was related to the way Illustrator treats real layers against text/path/object "layers." Instead of layers, I had to use the pageItems in the script. The code below works. Thanks to Gustavo for his answer in another thread and Carlos I thank you for this looking too good! You're great to be ready to help models do more advanced things with Illustrator.

    var doc = app.activeDocument;
    var items = doc.pageItems;
    for (var g = 0; g)
        elements [g] .name = elements [g].name.replace ('Century Schoolbook text line', ' MonogramText: Century Schoolbook ");
    };
    App.Redraw ();
  • Need help with custom dialog box

    I created a custom help dialog box. The problem is that 5 buttons do not properly fit in my manager of horizontal field on some blackberry devices. How can I make own? I tried to use my own custom buttons that allow me to specify their width and height, but I'm unable to get the width of the dialog box, so I can't determine how wide should be buttons.

    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    
    public class HelpDialog extends Dialog
    {
        static int ButtonPressed;
        HorizontalFieldManager hfmChoices = new HorizontalFieldManager();
        ButtonField cmdFirst = new ButtonField("|<")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 0;
                close();
                return true;
            }
        };
        ButtonField cmdPrev = new ButtonField("<")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 1;
                close();
                return true;
            }
        };
        ButtonField cmdNext = new ButtonField(">")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 2;
                close();
                return true;
            }
        };
        ButtonField cmdLast = new ButtonField(">|")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 3;
                close();
                return true;
            }
        };
        ButtonField cmdClose = new ButtonField("Close")
        {
            protected boolean navigationClick(int status, int time)
            {
                close();
                return true;
            }
        };
    
        public HelpDialog(String message, int page, int maxPages)
        {
            super("Help (Page: " + page + " of " + maxPages + ")\n\n" + message + "\n", null, null, -1, null, 0);
            ButtonPressed = -1;
            if (page <= 1)
            {
                cmdFirst.setEnabled(false);
                cmdPrev.setEnabled(false);
            }
            if (page >= maxPages)
            {
                cmdNext.setEnabled(false);
                cmdLast.setEnabled(false);
            }
            hfmChoices.add(cmdFirst);
            hfmChoices.add(cmdPrev);
            hfmChoices.add(cmdNext);
            hfmChoices.add(cmdLast);
            hfmChoices.add(cmdClose);
            add(hfmChoices);
        }
    }
    

    Thank you

    Most people have no need a close button, they expect the ESC to do it for them.

    That said, I disagree with this statement:

    "I think that the only good way to use managers other than the AbsoluteFieldManager, is to use them at all."

    Designing a user experience that works well on multiple devices is difficult, and I don't think that has a size fits all approach work.  In addition, I don't have the time to create formats for specific screens for each device type, and although this will not happen now, I didn't have to rework screen designs every time that a new device came out.  I think that it is possible to create a common user interface experience given the size of the screen, and whether it is touch.  If you want to read my thoughts on this, have a look at the tutorial of the user interface you will find here:

    http://supportforums.BlackBerry.com/T5/Java-development/tutorials-for-new-developers-part-1/m-p/1621...

  • Need help with Custom Field Layout - getting wirer height value

    In the BB Simulator, I get a strange value placed in in my field layout() method custom. The width is 320, which is correct, but the height is 1073741823 and it takes 240 or less. In this test, my custom field is the only field in the Manager, so I expect to 240.

    I tried two different simulators - BB curve and the 8800. I use JDE 4.5.0 in Eclipse 3.4.1. This is the code for my method of layout:

    Protected Sub layout (int width, int height) {}
    s long = getStyle().
    If ((s & USE_ALL_WIDTH)! = USE_ALL_WIDTH) {}
    width = Math.min (width, getPreferredWidth());
    }
    If ((s & USE_ALL_HEIGHT)! = USE_ALL_HEIGHT) {}
    height = Math.min (height, getPreferredHeight());
    }
    setExtent (width, height);
    model.setExtent (width, height);
    Model.Scroll (0, 0);
    }

    I expect the value of the screen height, or less, if the domain is configured correctly.

    I'm upgrading my custom field in a VerticalField Manager with the following attributes:

    Super (VerticalFieldManager.USE_ALL_WIDTH
    | VerticalFieldManager.USE_ALL_HEIGHT
    | VerticalFieldManager.FIELD_HCENTER | VerticalFieldManager.FIELD_VCENTER);

    Is this a bug in the Simulator, or I understand the API correctly? Is there a way to 'reset' the Simulator - I tried to get out of Eclipse and restart Windows, but I always get the same value.

    Thank you!

    Mark

    A VerticalFieldManager comes, I think, with default VERTICAL_SCROLL.  If you do not want to scroll through this particular Manager, add VerticalFieldManager.NO_VERTICAL_SCROLL to your forests of style and it will be laid out with only the height and the actual width.

    Also, since you setExtent() by yourself, USE_ALL_HEIGHT and USE_ALL_WIDTH are redundant, I think.

    Hope that helps,

    Arkady.

  • Need help with custom calculation Script

    Hey everybody.  I'm using Acrobat X Pro and stumbling a bit on the syntax of the following equation.  I need to add the value of "Cell1" & "Cell2" then add the value of "Cell3.  However, the value of "Cell3" is entered by the user and specifies a percentage of the sum of "Cell1 &"Cell2".  For example: If the user enters "3" in "Cell3" I need the value returned at 3% of the sum of "Cell1" + "Cell2".  If the user enters "9" in "Cell3" I need the value returned for "Cell3" 9% of the sum of "Cell1 and Cell2" and the end result should be the sum of "Cell1 Cell2 + Cell3.  In more detail:

    If "Cell1" = "Cell2" $ 500 = $500 and "Cell3" = '3' then I need the returned value to be $1030,00.

    I hope this makes sense. Here's what I have so far, but alas, it does not work.  Any help would be GREATLY appreciated.

    Get the first value in the field, as a number

    var v1 = + getField("Cell1").value;

    Get the second field value, as a number

    var v2 = + getField("Cell2").value;

    Get the value of a field, a number transformation

    var v3 = + getField("Cell3"/100).value;

    Calculate and set the value of this field for the result

    Event.Value = v3 + (v1 + v2);

    Thank you

    Solan

    I have posted a reply, but realized that it wasn't what you wanted. There is some confusion about what you want for Cell3. A hand, you say that the user enter a vaule in the area, but them you say you want its calculated value based on what the user has entered and two other field values. It seems to me Cell3 should be the domain that the user enters the percentage, and the calculated field (Cell4) script could be:

    Get the first value in the field, as a number

    var v1 = + getField("Cell1").value;

    Get the second field value, as a number

    var v2 = + getField("Cell2").value;// get treatment field value, as a number

    Get the percentage

    var v3 = + getField("Cell3").value;

    Calculate and set the value of this field for the result

    Event.Value = (1 + v3 / 100) * (v1 + v2);

  • Need help with 6 33 sidebyside event log error questions

    I did a complete reinstall of Windows Vista.  The event log showed mistakes aside nearby.   This is one of the six - sxstrace.exe used for the information:

    Launch the activation context generation.
    Input parameter:
    Flags = 0
    ProcessorArchitecture = AMD64
    CultureFallBacks = en-US; en
    ManifestPath = C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Shfusion.dll
    AssemblyDirectory = C:\Windows\Microsoft.NET\Framework64\v2.0.50727\
    Application configuration file =
    -----------------
    INFO: Parsing file manifest C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Shfusion.dll.
    INFO: Manifest definition identity is shfusion, processorArchitecture = "X 86", publicKeyToken = "000000000000000", type = "win32", version = "1.0.0.0".
    INFO: Reference: Microsoft.VC80.CRT, processorArchitecture is "amd64", publicKeyToken = "1fc8b3b9a1e18e3b", type is "win32", version = "8.0.50608.0"
    INFO: Resolving reference Microsoft.VC80.CRT, processorArchitecture = "amd64", publicKeyToken = "1fc8b3b9a1e18e3b", type is "win32", version = "8.0.50608.0".
    INFO: Resolving reference for ProcessorArchitecture amd64.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    NEWS: Control strategy of the Publisher C:\Windows\WinSxS\manifests\amd64_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4016_none_09bcb209fad07c27.manifest
    NEWS: Policy redirected assembly version Editor.
    INFO: The Post policy assembly identity it is Microsoft.VC80.CRT, processorArchitecture = "amd64", publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4016".
    INFO: Start the detection of assembly.
    NEWS: Try to detect manifest to C:\Windows\WinSxS\manifests\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4016_none_88dc01492fb256de.manifest.
    INFO: Manifest found at C:\Windows\WinSxS\manifests\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4016_none_88dc01492fb256de.manifest.
    INFO: End detection of assembly.
    INFO: Resolving reference Microsoft.VC80.CRT.mui, language = "*" processorArchitecture = "amd64", publicKeyToken = "1fc8b3b9a1e18e3b", type is "win32", version = "8.0.50727.4016".
    INFO: Resolving reference for ProcessorArchitecture amd64.
    INFO: Resolving reference for the en-US culture.
    INFO: Application binding policy.
    INFO: No found publisher policy.
    INFO: No redirect political connection is found.
    INFO: Start the detection of assembly.
    INFO: Can't find the assembly in WinSxS.
    NEWS: Try to detect manifest to C:\Windows\assembly\GAC_64\Microsoft.VC80.CRT.mui\8.0.50727.4016_en-US_1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.mui.DLL.
    INFO: Found no manifesto for the en-US culture.
    INFO: End detection of assembly.
    INFO: Resolving reference for culture.
    INFO: Application binding policy.
    INFO: No found publisher policy.
    INFO: No redirect political connection is found.
    INFO: Start the detection of assembly.
    INFO: Can't find the assembly in WinSxS.
    NEWS: Try to detect manifest to C:\Windows\assembly\GAC_64\Microsoft.VC80.CRT.mui\8.0.50727.4016_en_1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.mui.DLL.
    INFO: Did not manifest for culture.
    INFO: End detection of assembly.
    INFO: Parsing file manifest C:\Windows\WinSxS\manifests\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4016_none_88dc01492fb256de.manifest.
    INFO: Manifest definition identity is Microsoft.VC80.CRT, processorArchitecture = "amd64", publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4016".
    INFO: Activation context Creation succeeded.
    End activation context generation.

    The installation of windows vista has been very successful... Thank you!  I did a factory restore... had some conflicts and massive updates to do.  Problem was trying to do updates, especially for pilots, before the accidents that happen.  I managed to do it.  The only questions I could solve just not have been SidebySides mistakes.

    Thanks to YOUR INSTRUCTIONS FANTASTIC all sidebyside errors are now missing from event viewer. :)

    In case you might be interested, here's the historical data for net framework cleanup tool:
    History of changes
    -------------------

    December 3, 2007 - created the history file; any changes made before the creation
    This file is followed.

    December 4, 2007 - additions of extra cleaning for all versions of the .NET
    Framework on Tablet PC / Media Center, all versions of the
    .NET framework on Windows Server 2003, and all versions of the
    .NET framework on Windows Vista / Windows Server 2008.

    January 23, 2008 - addition of registry values to remove .NET Framework 1.0
    and 1.1 patches that were previously left out.

    29 January 2008 - addition of the product codes for .NET Framework 2.0 SP1, 3.0 SP1, and 3.5
    RTM versions.  Added a few 3.0 and 3.5 directories that have been
    already be left on the system.

    February 4, 2008 - added the cleanup who were initially registered on jobs
    December 4, 2007, but was inadvertently deleted.

    March 5, 2008 - fixed problem of deletion of registry which may affect 64-bit operating systems.

    March 6, 2008 - fixed an error of advapi32.dll on some caused by the previous operating systems
    Difficulty.

    April 30, 2008 - codes added product .NET Framework 3.0 beta to the list of
    items to remove during cleanup of .NET Framework 3.0.

    June 5, 2008 - corrected a problem with recovery of the Windows directory
    systems with active Terminal Server Services.

    June 6, 2008 - adding a /u switch to allow to run in unattended mode (which
    Displays the progress page but no other Interface and will require
    no user intervention).

    June 9, 2008 - disable the readme file and log file buttons if the tool is underway
    run in unattended mode.

    July 22, 2008 - added logging for detection of version of .NET Framework.  Update
    the tool to set the title of the window in cleanup.ini.

    August 14, 2008 - added support for the .NET Framework 2.0 SP2, .NET Framework
    3.0 SP2 and .NET Framework 3.5 SP1.

    November 26, 2008 - fixed a logic problem that caused the cleaning tool for not
    Delete the values to register 32-bit on Windows 64-bit versions.

    December 22, 2008 - added the version string is added to the log file.

    July 24, 2009 - added logic to properly clean the .NET Framework
    Windows 7.
    Added detection and logging for the .NET Framework 4.
    Avoid cleaning of mscoree.dll on Vista and higher.

    October 27, 2009 - fixed problem of withdrawal associated with VC ++ runtime files on Win9x
    and Windows 2000.

    October 29, 2009 - fixed problem of withdrawal associated with runtime files in VC ++ in the
    %WINDIR%\WinSxS directory on some operating systems.

    November 30, 2009 - fixed some problems of deletion of registry values that control which
    products appear in Add/Remove programs.

    December 9, 2009 - added logic to treat some types of errors and warnings if the tool
    don't report breaking in some specific scenarios.  Added a few
    new files and to remove .NET Framework registry keys
    steps of cleaning 3.0 and 3.5.

    March 17, 2010 - force the process exit code to get spread
    for the self-extracting installation package.

    April 29, 2010 - added support to clean the .NET Framework 4.

    November 16, 2010 - added logic to clean the cache of .NET Framework 4 police service
    record.

    December 31, 2010 - add a logic of protection against infinite loops when the withdrawal of
    registry keys.

    January 17, 2011 - fixed a bug that prevented the .NET Framework 4 available
    as an option of cleaning on Windows Server 2003 (x 86).

    August 16, 2011 - fixed a bug that prevented mscoree.dll come off, on some
    x 64 versions of Windows.

    19 October 2011 - add a command line switch to allow users to force cleanup
    a version of the .NET Framework even if BONE conditions normally
    could stop him.  It is a switch intentionally undocumented
    and should be used only in rare cases where the user includes
    the impact.

    Thank you once again for a happy Vista user!

  • Need help with custom roles

    Hello

    Ive been charged with leading a small project... Here's the scenario:

    We have 25 shared Lun connected to each host in a cluster. The LUNS are labeled & lt; The names of LUN & gt; _Windows or Linux.

    What I want to do a role where only the team the team of linux or windows only would see their LUNS and not other teams lun.

    Is it possible... ??

    Thank you in advance.

    Navigate to the folder create, click permissions and ADD to assign the role to the folder.

    You can use custom (expand all topics and select you want) role, and no (default) access

    If you have found this information useful, please consider awarding points to 'Correct' or 'Useful'*.

  • need help with Server 2008 r2 event collector

    I tried to configure an event collector Solution and get the following error in the window of subscription PERIOD

    "Code (0 x 2): impossible to check the status of the firewall.

    I use a Standard Windows 2008 R2 server as the collector and a Windows 7 32 bit PC as Source.  They are in a domain configuration.

    All orders of WinRm, I've tried work fine.  I'm out of ideas.

    Thank you

    Support is located in the Windows Server Forums:
    http://social.technet.Microsoft.com/forums/en-us/category/WindowsServer/

  • Need help with SQL selection ID when the sequence does not match...

    I have the following dilemma:
    Database identifiers as follows:
    Incident #, case #, & sequence manufacturer
    example of
    Record 1
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 1

    Worksheet 2
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 2

    Sometimes the user will delete (say) 2 Record after creating a new Record 3
    The sequencing will therefore now as follows:

    Record 1
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 1

    Worksheet 2
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 3

    Now it is no longer a Part_Sequence 2

    Need a SQL to select all records where the sequence of the maximum part > than Incident_number County | » -'|| Case_number

    I tried the following:
    select a.incident_number||'-'||a.case_number||'-'||a.part_sequence
    from chsuser.a_compl_summary a
    where a.entry_date >= '01-may-2011'
    and max(a.part_sequence) > count(distinct a.incident_number||'-'||a.case_number)
    I end up getting an ORA-00934: Group feature is not allowed here (emphasis on the portion (a.part_sequence) Max.

    Advice/suggestions

    Thank you
    select  incident_number || '-' || case_number || '-' || part_sequence
      from  (
             select  incident_number,
                     case_number,
                     part_sequence,
                     max(part_sequence) over(partition by incident_number,case_number) max_seq,
                     count(*) over(partition by incident_number,case_number) cnt
               from  chsuser.a_compl_summary
               where entry_date >= DATE '2011-05-01'
            )
      where cnt != max_seq
    /
    

    SY.

  • Need help with screen Blus of death (BSOD) on my computer toshiba laptop

    Hello all, Ive had a little last week, or problems with my laptop. While playing a game (minecraft), I would randomly have a BSOD error and my laptop will re-start. Initially, I gave it no thought, but when it happened again, I decided to try to do a little research, but I'm not terrible with technology and other then I'm neither the case with my own research.

    If someone could point me in the direction of a few possible ways to get this problem.

    guys do you propose I make to the store and see if they can check it out, what would I need if I did.

    I got a program to read some sort of file "dump" made when occurs a BSOD, I publish what this program here says? the program is BlueScreenView, if yes, what I have post the spectator thing? There are has 2 main screens on it, SDO as Sho different dump files (which is on the top) and on the bottom, it lists the names of different files for each dump file I think that some of them highlighted.

    im not this product with tech so I don't know much but I need to post anything on my laptop or any information of the dumpfile and would have this info help in any way to determine the problem? just tell me what I have to post and ill get the information displayed in a response, thank you.

    -leoknighted

    PS: I don't think that playing minecraft is the cause of the BSOD and crashing, but I only get it when playing minecraft, so I don't know if minecraft is causing accidents and others. I watch videos and this all the time and I never have an accident. I'll try and play a different game and see if this causes my laptop down and the cause is perhaps high usuage to my laptop, as I've said games require a lot of power of a laptop/computer, if they are not the 'best' laptop for games. but yh, if someone thinks they can help me and need some information please tell me so I can get it for you. If you guys think it would be best to get a professional to look just mylaptop say, however im save as a last resort.

    Hello

    I suggest you to refer to this article to check if this help.

     

    Resolve stop (blue screen) error in Windows 7
    http://Windows.Microsoft.com/en-us/Windows7/resolving-stop-blue-screen-errors-in-Windows-7

    Important: System Restore will return all system files not as documents, email, music, etc., to a previous state. These files of types are completely affected by the restoration of the system. If it was your intention with this tool to recover a deleted file to non-system, try using a file instead of system restore recovery program.

     

    Important: while performing the check disk on the hard disk, if bad sectors can be found, then check disk will try to repair this sector. All the data available in this area may be lost.

     

    Custom installation WARNING: If you format the hard disk during the installation, the data files are saved in a Windows.old folder on the partition you installed Windows 7.  However, you should always back up the files. If you have encrypted data files, you may not be able to access them after installing Windows 7. If you have backed up your data files and then restored after Windows 7 is installed, you can delete the Windows.old folder.

    Let us know if you need help with this question, we will be happy to offer you our help.

  • 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 = "";
    
  • Need help with a declaration of 'IfThenIfNot '.

    Every year couple I need help with a script statement and these forums have been incredibly useful. Once more, I was hoping that someone out there had knowledge of something I am writing for a form, I need to automate:

    In the jargon of Excel that I try to write to would state so @if (("Subtotal"+"InvestigativeFee"+"PlanReviewFee") > 1000, + 100, + (("Sous-total" + "Investigativ Manar" + "PlanReviewFee") *. 1))

    What I have here is three form named subtotal, InvestigativeFee & PlanReviewFee fields.  The formula in question says it's a 'technology assessment fee"of 10% on the total part of what above mentioned 3 fields but there is a maximum charge of $100 for this tax.  The statement that I wrote above would have worked in Excel (not tested, but generally is the idea).  I was hoping someone mastering JavaScript could help me with a statement that I needed to do this work.

    Hope to hear from someone,

    Warmly yours.

    Steven L in Eugene OR

    Try the following in the custom calculation of the fresh field of evaluation script:

    Custom calculation script

    (function () {}

    Maximum package

    var max_taf = 100;

    Get the values of the field as numbers

    var v1 = + getField("Subtotal").value;
    var v2 = + getField("InvestigativeFee").value;
    var v3 = + getField("PlanReviewFee").value;

    Calculation of tax

    TAF var = (v1 + v2 + v3) / 10;

    Set this field to royalty calculated value if less than maximum, otherwise the maximum value

    Event.Value = (taf< 100)="" taf="" :="">

    })();

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

Maybe you are looking for