Control MovieClip with a Class? A.S. 3.0

Hello,
I have a question. In my fla file i have drawn a square. I
gave it a class name "Vierkant".
In the same folder i created this class. Why doesn't there
apear a square ?
Or is this not possible from within a class?

if I read this right, you have drawn a square on stage, put
it inside a movieclip, and associated that clip with the class
"Vierkant". I this is what you've done, then the asset is already
on the stage, so you should see it for sure, unless it's positioned
off-stage.
If the above assumption is correct, in your class code,
square = new MovieClip(); is a blank movieclip that you
created. It's not the square that's in the FLA. The square that
you're trying to have show up is the Vierkant class object itself,
i.e. "this".

Similar Messages

  • Control MovieClip with FlashVars

    Let me start from the top, I hope I can explain this well
    enough so you guys can make sense of this.
    I have a cfm page with a list/menu pulldown that submits a
    category name to the same page it resides on using
    an onChange.
    Based upon which category is submitted I query the DB for
    subcategories.
    There is a flash movie in the page as well and it takes those
    subCats and populates the FlashVars
    e.g.;
    <cfif isDefined ('FORM.category')>
    <cfoutput><PARAM NAME=FlashVars
    VALUE="category=#getCat.category#
    <cfif #getsubCats.recordCount# GT 0>
    &whichFrame=on
    &subCat1=#getSubCats.subCat[1]#
    <cfelse>
    &whichFrame=off &subCat1=Available Booth
    I do this for 10 seperate variables subCat1 thru subCat10.
    The Flash movie picks up the subCats
    and works just fine. But I'm trying to control a movie clip
    with the whichFrame var.
    The name of the clip is H1 and the script is:
    _root.H1.gotoAndPlay(whichFrame);
    There is a frame labled "on" and a frame labled "off" inside
    of H1. If I manually set the variable on the stage
    to on, the clip goes to the "on" frame, and when I select a
    subCat that has no entry, the clip goes to "off"... BUT
    only the first time I do it. From that point on the clip
    won't play...
    I'm losin my marbles over this one, any help at all would be,
    as always, greatly appreciated!
    jH

    if I read this right, you have drawn a square on stage, put
    it inside a movieclip, and associated that clip with the class
    "Vierkant". I this is what you've done, then the asset is already
    on the stage, so you should see it for sure, unless it's positioned
    off-stage.
    If the above assumption is correct, in your class code,
    square = new MovieClip(); is a blank movieclip that you
    created. It's not the square that's in the FLA. The square that
    you're trying to have show up is the Vierkant class object itself,
    i.e. "this".

  • Problems scaling width of movieclip with Tween class

    In my app I'm scaling the width of a movieclip using the
    Tween class.
    My problem is that the new scaled width is not right.
    Is this a bug in the as3 code? Does anyone have a solution?
    trace(graphPanel.width) // 500
    scaleValue = 5;
    new Tween(graphPanel, "scaleX", None.easeNone, 1, scaleValue,
    2,
    true);
    trace(graphPanel.width) // 2494.25

    Sounds like you need to scale the star object inside of the star_mc. So you just need to make the star into a sprite/movie clip (how ever you want ot do it) then target that with the scaleX & scaleY, something like,
    star_mc.star.scaleX = star_mc.star.scaleY = 1.5;

  • Control movieClip by codes in a class

    how to create a movieClip with codes and control it to play
    ,create keyframes by codes,and put something in keyframe,I want to
    do this by programing codes not by tools in FlashCS3,thanks!

    Hi,
      I am just trying to understand your requirement clearly. Is it that you want to control the complete order of the value set for dropdown or just looking to change the selected value by default.
      If you are looking to change the default selected value then you can do as below.
      Since you are using DROPDOWNBYINDEX, you can achive this by setting the lead selection of the context node. The lead selected one, will be shown as default in the dropdown.
      I am using your example code.
    lo_nd_cn_drpindex->SET_LEAD_SELECTION_INDEX( index = n )
    "where n is the index of the row that you want to appear default in dropdown. This could be lastly added
    " one, middle one or any thing from the value list
       If you are adding new value to valuelist of dropdown, add it and then set the lead selection to this index sothat this willl be the first displayed one
    Regards,
    Manne.
    Edited by: Raja Sekhar Manne on Jun 25, 2009 2:26 PM

  • Control Animated Gif with ImageAnimator Class

    Here is something I just found that some of you may like. You can use the
    ImageAnimator Class to run Animated Gifs in vb.net.
    Public Class Form9
    Private animatedImage As Bitmap = Image.FromFile("C:\bitmaps\animated gifs\hopping rabbit 2 - animated.gif")
    Private Sub Form9_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Button1.Text = "Start"
    Me.BackColor = Color.Teal
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    If Button1.Text = "Stop" Then
    ImageAnimator.StopAnimate(animatedImage, New EventHandler(AddressOf Me.OnFrameChanged))
    Button1.Text = "Start"
    Else
    'Begin the animation.
    ImageAnimator.Animate(animatedImage, New EventHandler(AddressOf Me.OnFrameChanged))
    Button1.Text = "Stop"
    End If
    End Sub
    Private Sub Form9_Paint(sender As Object, e As PaintEventArgs) Handles Me.Paint
    'Get the next frame ready for rendering.
    ImageAnimator.UpdateFrames()
    'Draw the next frame in the animation.
    e.Graphics.DrawImage(Me.animatedImage, New Point(0, 0))
    End Sub
    Private Sub OnFrameChanged(ByVal o As Object, ByVal e As EventArgs)
    'Force a call to the Paint event handler.
    Me.Invalidate()
    End Sub
    End Class

    Hey Tom,
     Yes the ImageAnimator is a handy class for showing animated Gif images. I looked at it when making the Playback panel on my Gif Creator program. I could not use it though because, i would of had to create the Gif image before i could play it back
    and being my images are all single images i was stuck using a Timer to show each one.
     I wish there was a way to use a list of single images with this class. It would have been much less work.   8)
    If you say it can`t be done then i`ll try it
    Yeah, I see that it is not enough for your Gif Creator.
    I just did not know about it and was using the gif strip to manually make a list of all the gif frames and showing individually with a timer. This class does it and a couple other things much easier.

  • Loading a movieClip from a class

    Hello all,
    I'm attempting to write an AS 2.0 class using Flash through
    which I can load and control multiple movie clips in the library
    and from external files. I've attempted multiple different ways,
    don't quite seem to be able to get the images to show up on the
    screen. After some time searching, I've been unable to find a good
    example online. Please excuse my inexperience with AS classes.
    I'd like to write a class that extends MovieClip and is used
    to control multiple 'sub' movieClips, all from methods inside the
    instantiated class.
    From .fla file, I call instantiate my class as follows:
    var theScene:sphere3D = new sphere3D();
    In the constructor of my class file, I'm attempting to attach
    or load a movie. I simply want to get it to show up on the screen,
    when I test the .fla movie. I've tried using attachMovie and
    loadMovie with not luck.
    dynamic class sphere3D extends MovieClip {
    function sphere3D() {
    this.attachMovie("shadow","shadow",1); // shadow being a
    movie clip in the .fla library with linkage
    shadow._x = 100;
    shadow._y = 100;
    this.createEmptyMovieClip ("shadow2", 100);
    shadow2._x = 100;
    shadow2._y = 100;
    shadow2.loadMovie("images/cube.png");
    What am I doing wrong? Suggestions for stuff to test would be
    welcome.
    Thank you,
    dana.

    Ah, thank you, that make sense now. The solution you
    suggested worked great.
    I did also find two other solutions, for anyone else who
    might read this. One is to essentially create an empty movieclip on
    your timeline. From the linkage window for the empty movieclip, I
    made sure I set the Class field to the name of the class I'd
    written, something I didn't do previously. This attaches all the
    class actionscript to the empty movieclip, and even automatically
    runs the constructor when the empty movieclip is placed on the
    timeline. It also automatically provides a 'reference' to the main
    timeline when I refer to this.attachMovie() from inside the class.
    So it worked, but isn't as elegant as doing everything from the
    actionscript (unless you are building a component).
    The last reference I came across is the
    Object.registerClass() method used to attach as class to an object,
    similar to using the Linkage method above. But I haven't
    successfully tried it yet.
    Thanks again for the help kglad,
    dana.
    Dana Sheikholeslami
    Art Institute of California

  • How to instantiate MovieClips with sequence names

    Hi all,
    I'm rewriting a game that came from AS2, and passing it to
    AS3.
    The problem is that I have several different MovieClips in
    the Library, with a sequence name ("s_0", "s_1,...).
    The question is... how can I use the addChild to instantiate
    these movieclips, using these names, sequencially, using a FOR
    loop?
    I'm trying to get a way, that I don't have the remake all
    movieclips, or else I'll be stuck on the desk for a week :P
    Thanks

    I found the answer on other blog.
    You have to dinamically make new MovieClips, with a name that
    can be a dynamic String.
    So the result is the following code.
    Make sure you import the wright class to to this
    import flash.utils.getDefinitionByName;

  • Adressing multiple copies of Movieclips with the same instance name

    Is it possible to iterate through MV copies with the same instance name? It would be very useful for my project.

    you can copy movieclips with the same instance name but you'll only be able to easily control (with actionscript) the last created instance.  the rest will be difficult to reference.
    although, if the only movieclips attached to the parent are the ones you are interested in and you want to do that same thing to all of them (say rotate them all), you can do that without giving them distinct names.

  • What is inserting the following code onto pages " div id="bikatoc" style="display: none;" a class="control" Close /a div class="toc" ul li class="toc-h2

    I am doing web development and when working with the wordpress dashboard tiny mce, each time I hit the update button the following piece of code is inserted into the page I am working on.
    <pre><nowiki><div id="bikatoc" style="display: none;"><a class="control">Close</a>
    <div class="toc">
    <ul>
    <li class="toc-h2"><a href="#toc0">Just for the Health of it</a></li>
    <li class="toc-h2"><a href="#toc1">Wild Yukon River Salmon</a></li>
    </ul>
    </div>
    </div>
    </nowiki></pre>
    Something is scanning the h1-h6 tags and creating a table of contents and inserting it into the page. This also happens when I use firebug on other random pages while using firefox.
    I have tried several other browsers to determine if this is a wordpress issue, but this only happens in firefox. It also only happens when I make changes with firebug in firefox. Using firebug lite in chrome did not cause this problem.
    I have been looking all over to figure out what is going on and why the is happening. It is making development near impossible and is forcing me to use a different browser (which I don't enjoy at all)
    Any help you can give me would be wonderful.
    Thank you for your help

    Is it always hidden with display:none?
    One standard diagnostic step is to try Firefox's Safe Mode to see whether it is caused by a custom setting or add-on.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in [http://support.mozilla.com/kb/Safe+Mode Safe Mode] using
    Help > Restart with Add-ons Disabled
    In the Safe Mode dialog, do not check any boxes, just click "Continue in Safe Mode."
    If the inserts stop, this points to an add-on as the problem. Figuring out which one it is would be the next step. (If the TOC is always hidden, perhaps it is something SEO-related.)

  • Mutliple framed MovieClip and its Class

    I have a 4 framed MovieClip in my library named 'MC Swatch
    Set' with a
    defining class named SwatchSet. Each of the frames contains 2
    - 4
    MovieClips with instance names
    swatch1
    swatch2
    swatch3
    swatch4
    For this post, please refer to
    http://www.seanberry.com/swatches.png
    On frame 1, swatch 1 and 3 are present.
    On frame 2, swatch 1, 2 and 3.
    On frame 3, swatch 1, 3 and 4.
    and on 4, swatch 1, 2, 3 and 4.
    In my class I have an _init() function that takes two args.
    The first is
    the label of the frame to jump to out of the 4. The second
    argument is an
    object that is used to specify the colors to use with setRGB
    on the various
    swatches. So, if the _init() function was called and the
    first argument was
    'P1S2' the MovieClip would go to frame 3 ( P1S2 == '1 Primary
    color, and 2
    secondary colors')
    Since there will only ever be one of these "MC Swatch Set"
    MovieClips, I
    only instantiate it once when I place it on the stage with an
    attachMovie().
    So here is the problem. When I call the _init() the first
    time, it works
    like a charm. It goes to the correct frame, and changes the
    colors of the
    swatches. But, when I call _init() again, with new
    parameters, I encounter
    a problem.
    The problem is best illustrated in the image referenced
    above. Basically,
    even though I know the MovieClip instance is changing frames
    (I know this
    because I put a trace on each frame which works and because
    the outlines of
    the swatches on the MovieClip are correct) the instance of
    the movieclip I
    have already used is visible.
    Is it because I can only use an instance name once? Since I
    have, for
    example, a movieclip with instance name swatch2 on frames 2
    and 4, is it
    whichever one gets used first?
    Thanks.

    "abeall" <[email protected]> wrote in
    message
    news:ecd12k$840$[email protected]..
    >I don't exactly know, other than Flash thinks the same
    instance is on frame
    >1
    > and frame 2 if they have the same name, and that can
    easily confuse Flash
    > if in
    > actuality they are different.
    >
    > Try this. Create a MovieClip in the IDE called
    "myMovie_mc". Make the
    > document
    > 20 frames. On frame 10, put:
    > myMovie_mc.swapDepths(1);
    > myMovie_mc._x += 150;
    > myMovie_mc._y += 150;
    > myMovie_mc._alpha = 50;
    >
    > No stop() commands. Now play the movie. Congradulations,
    you have
    > successfully
    > confused the Flash Player! :-) Similar type of thing, I
    think.
    >
    Yep, that demonstrates a similar problem. What I don't
    understand though,
    is why there is a copy of myMovie_mc in the new position,
    with the new alpha
    when the player loops back to frame 1. Just counter-intuitive
    it seems.
    Thanks again for the help. The empty keyframe in between
    frames containing
    like instance names did the trick and was a simple solution
    to implement.
    I had found other ways around this problem, like individual,
    unique instance
    names for each MovieClip but like your solution much better.

  • The style 'dropShadowVisible' is only supported by type 'mx.controls.List' with the themes(s) 'spark

    I'm still plagued by these warnings in my Flex project:-
    The style 'dropShadowVisible' is only supported by type 'mx.controls.List' with the themes(s) 'spark'
    Clicking on the warnings doesn't take me to the code.
    The project started as SDK3.5.  I've made it into an SDK4.0 project.  It uses old Halo components throughout.  I've chosen a Halo theme.
    I can get rid of these warnings if I "Use Flex 3 compatibility mode".  BUT, If I use that mode, I get also Run Time Errors - so I decided against this compatibility, and just edited the styling, deprecated syntax, and a few issues to make the app work.
    I tried the solution someone suggested editing the flex-config.xml file, but it didn't work for me.
    The application begins...
    <mx:Application
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:s="library://ns.adobe.com/flex/spark"
    (I've obviously tried clean).

    Yes, very irritating. "Only a warning" isn't the whole story, it's more than just an annoyance, it can potentially make all warnings useless.
    Imagine cases where you have multiple warnings (often FB warnings turn up for EACH component resulting in many repeats, design mode is particularly bad with this).  Having a ton of warnings that "aren't really warnings" obscures REAL warnings that we'd want to do something about (and makes errors harder to notice at first--you're so used to always seeing lines under the problems tab that you don't always notice a new error that just popped up).  In the worst case scenario a valid warning that would have prevented a bug is missed and something goes to QA or production that should have been caught at compile time...
    This wouldn't be nearly as annoying if we had some decent way of filtering these warnings from the problems tab. The current filter isn't good enough and only seems to allow you to filter out one message due to the way it works, but sometimes we see more than one type of "bogus" warning.
    Voted and added to comments.  I wonder if there's a feature request out there to improve warning filter capabilities?  I also wonder why nobody complained about this before, it seems pretty easily visible.  Is it the norm for people to just always ignore warnings?  This isn't a good practice, warnings tend to exist for a reason.
    (Btw, this is part of my reasoning for the claim that Halo seems to have become a "second class citizen" component set - hopefully Adobe can do something about this.)

  • How do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA certfificate i can't open web pages with this, how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC CA certfificate i can't open web pages with this

    how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA ?

    Hi
    I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
    Especially the section Don't which says -
    DON'T
    Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
    PZ
    www.pziecina.com

  • I have 3dparty software wirelessly with a cryptographic authentication system without my consent (seems to be new technology developed by stanford) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail break. Now what?

    I have 3rd party software wirelessly injected and used on my iphone with a cryptographic authentication system without my consent (seems to be new technology developed by stanford and apple security is not updated for this technology) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail breaking my phone, adding and removing software, changing settings all from a remotely controled device from different location (I have a Mac address I'd of this device to know for sure). Almost undetectable. When I look at the legal section of my phone it shows a list of all the unauthorized 3rd party software "as is" copyright encrypted on the phone.  This is the most basic way to legally steal software of any kind.  Because of this legalality 3rd party ownership have total control of certain software correlated with hardware use including visualization technology, etc.  most people luckily will never have this happen to them so it's unlikely many readers have not a clue of what I'm saying currently.  Either way, without needing to obtain specific warranty of any kind "as is" copyright control makes system restores not a solution because the source code is not directly encrypted on the actual hardware device only a copy right notice must appear on the specific device 3rd party software validation making it extremely difficult for me to take control of the situation. Apple claims their iOS technology prevents this type copyright obstruction from being possible, however, according to my phone a new form of technology was used developed by Tom wu of Stanford university called the STANFORD SRP AUTHENTICATION TECHNOLOGY which uses Some form of cryptographic authentication system and uses quote "secure remote password" which seems to suceed in hacking iOS apple technology apple claims is not possible to jailbreak an unstolen phone or without the owners consent As well as loading the device with 3rd party copyright Notices to make all of this legalized. My phone shows atleast 30 pages worth of legalized 3rd party copyright permissions! Yesterday my apple care provider labeled me a jailbreaker and refused to look at my legal documented proof which completely blew my mind because it voides my apple care contract I spent 100 on. This employee did not take all factors into consideration and made quick assumptions as well as verbally speaking to me as I'm an automatic criminal. I left the store yesterday with no payed insurance help on a problem I had no control over and couldn't prevent, leaving with voided contracts. This is an apple users worst nightmare and I have spent days researching all of this like i am some kind of lawyer only to be able to use my phone the way it should and spent alot of money on.  I can legally backup any claim I have just wrote above currently and have a large source of data collected to prove apple is wrong in voiding insurance support on this issue. The problem lies in apple avoiding and not wanting to believe their software can legally be obtained ot "hacked". Yet still labeled a jailbreaker basically.. What should I do????? Been to local apple store 3 times and rebooted my phone as well sprint service restore 4 times and spoke with reps twiice on the phone. Spoke with my phone provider who said apple has full control over these matters so they can't help me.  My case is according to apple "still open"...Anyone else heard of this or of Stanford's office of technology licensing? Maybe I need to buy a blackberry again or just use a landline so I can stop being my own lawyer and focus on other productive areas in life instead of this horrible mess. I shouldn't have to prove to apple I not a jailbreaker they should have to prove I'm one before voiding support I desperately need!!

    Mullaly75 wrote:
    I assume u guys don't understand what open source software is
    Yes, I think most of us do understand what open source software is. It sounds as if you don't. Here's some information:
    Open-source software (OSS) is computer software that is available in source code form: the source code and certain other rights normally reserved forcopyright holders are provided under an open-source license that permits users to study, change, improve and at times also to distribute the software.
    Open source software is very often developed in a public, collaborative manner. Open-source software is the most prominent example of open-sourcedevelopment and often compared to (technically defined) user-generated content or (legally defined) open content movements.
    from http://en.wikipedia.org/wiki/Open_source_software
    Yes, Tom Wu of Stanford wrote a paper on something called Secure Remote Access Protocol. It's a form of Asymetric Key Exchange and has nothing to do with hacking anything. It's actually intended to protect data.

  • Report of posted Deprecation with ASSET CLASS

    Hi Gurus,
    We require a depreciation simuation report with Asset class as mandatory one.
    Could you please tell me path and t-code for the above said report.
    Regards,
    Praveen.

    Hi Praveen,
    You mentined before you wanted to view depreciation simulation, for this RASIMU02 is the report to use.
    However, if you want to see depreciation planned /and or posted you can use the Asset Balance RABEST_ALV01. If you click on the indicator  "current book value" you will see the actually posted depreciation and current Netbook Value. Also in this report you can enter the Asset Class in the selection parameters.
    Regarding viewing the note I forwarded to you previously: you can view it via the SAP Portal - http://help.sap.com/. If you go to SAP ERP tab, you will see on the right hand side pannel a link to SAP Notes. Here you can view any note.
    I hope this helps further.
    Kind regards,
    Brigitte

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

Maybe you are looking for