Why this character \ it is not working in action scrip?

Hi...
Why this character \ it is not working in action scrip? And
how can I solve it?
on (release) {
text.text = text.text + "l"
Please your help ASAP
thank you

yea, that's true, but I don't think that is the problem.. I
use it every once in a while, and it doesn't break the script.
"I’m trying to make bush button if i press it, the
action script it well write the text in text area and I’m
using Flash MX 2004"
This statement makes
zero sense.. please clean it up and make it understandable,
and tell what version of Actionscript you are publishing to.

Similar Messages

  • Can any one please tell me why this e-class is not working

    Hi
    I want to listen the following e-class. But its not running. Can any one please tell me why its not working
    I have windows media player 11 in my system
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/34b9359e-0701-0010-f59d-ee014d5079b3?prtmode=navigate"></a>
    Best Regards
    Ravi Shankar B

    Hi
    I want to listen the following e-class. But its not running. Can any one please tell me why its not working
    I have windows media player 11 in my system
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/34b9359e-0701-0010-f59d-ee014d5079b3?prtmode=navigate"></a>
    Best Regards
    Ravi Shankar B

  • Why this removeChile function can not work

    Dear All
    can any one help me fix this problem? i can not delete one job record from XML file, and there is no any error message, don't know why can not remove the node from XML file. Thanks!
    XML File:
    <Job_ad>
    <job>
    <title>ABC
    <detail>123
    </job>
    </job_ad>
    the Java code
    try {
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder parser = factory.newDocumentBuilder();
    File fn = new File(fileName);
    Document doc = parser.parse(fn);
    NodeList ReportDate = doc.getElementsByTagName("job_ad");
    NodeList job = doc.getElementsByTagName("job");
    for (int i = 0; i < job.getLength(); i++) {
    Element jobDetail = (Element)job.item(i);
    String jobTitle = jobDetail.getElementsByTagName("title").item(0).getFirstChild().getNodeValue();
    if (jobTitle.equals("ABC")) {
    System.out.println("record found");
    Node deadElement = (Node)jobDetail.getParentNode().removeChild(jobDetail);
    catch (Exception e) {
    System.out.println(e);

    if (jobTitle.equals("ABC"))The actual value of jobTitle is "ABC\n", if your posted XML is accurate. You forgot to account for the new-line character after the text.
    A little debugging (such as System.out.println(jobTitle)) might have told you that.

  • Any ideas why this "if" statement is not working?

    I have this code inside a click command. The first part works, will change variable to 5. But if variable = 5 animation does not play: 
    if (position != "5"){
                                  sym.setVariable("position", "5");
                                  var position = sym.getVariable("position");
                                            sym.$("Text3").html(""+position);
    else if(position==5)
    sym.play("animation")
    Thanks

    Hi there, can you put a console log before the if statement to confirm that you have a valid value for the "position" variable, at that click scope?
    console.log('position = '+position);
    Run it in your browser and open the JS console to check the log output of the above test.

  • Why this WLST script does not work from ant a task

    Hi,
              The following is my lovely WLST script to disable managed server hostname verification in a cluster environment.
              It works perfect if I run it from the OS command line,
              java -cp $WL_HOME/server/lib/weblogic.jar sslSetting.py weblogic weblogic t3://localhost:7001
              But if I run it from ant task, it never works. Nothing happens, not even any messages. Any idea?
              ------ sslSetting.py -----------
              # Disable HostnameVerification on managed servers
              # This is a ONLINE script. The admin server must be running
              # @param $1 BEA_USER_NAME
              # @param $2 BEA_USER_PWD
              # @param $3 admin server URL
              if (len(sys.argv) != 4):
              print "usage: " + sys.argv[0] + " domain-home "
              sys.exit()
              beaUserName=sys.argv[1]
              beaUserPwd=sys.argv[2]
              adminServerUrl=sys.argv[3]
              def handleServer(server):
              SSLPath="/Servers/" + server.getName() + "/SSL/" + server.getName()
              print("handleServer(1): " + SSLPath)
              try:
              cd (SSLPath)
              print("handleServer(2): " + SSLPath)
              set("HostnameVerificationIgnored", "true")
              except Exception, inst:
              dumpStack()
              print ("FAILED handleServer(): " + SSLPath)
              else:
              print ("DONE handleServer(): " + SSLPath)
              #===============================================================================
              # Main
              #===============================================================================
              try:
              connect(beaUserName, beaUserPwd, adminServerUrl)
              edit()
              startEdit()
              adminServerName=cmo.getAdminServerName()
              for server in cmo.getServers():
              if adminServerName != server.getName():
              handleServer(server)
              save()
              activate()
              except Exception:
              dumpStack()
              else:
              print ("=== DONE ===")

    OK, when I run the WLST script from command java, I only need the weblogic.jar in the classpath. But I'll need a couple other jar file for it to work inside an ant target, as showing below.
              <target name="run-wlst">
              <java classname="weblogic.WLST" fork="true">
              <classpath>
              <pathelement path="${props.JAVA_HOME}/lib/tools.jar"/>
              <pathelement path="${props.WL_HOME}/server/lib/weblogic_sp.jar"/>
              <pathelement path="${props.WL_HOME}/server/lib/weblogic.jar"/>
              <pathelement path="${props.WL_HOME}/server/lib/webservices.jar"/>
              </classpath>
              <sysproperty key="weblogic.Home" value="${props.WL_HOME}" />
              <arg line="sslSetting.py weblogic weblogic t3://localhost:7001"/>
              </java>
              </target>

  • WHY this DB view is not working

    REPORT  ZMYTESTPRG24                            .
    DATA : IVIEW LIKE ZMYDBVIEW OCCURS 0 WITH HEADER LINE.
           SELECT * FROM ZMYDBVIEW INTO TABLE IVIEW.
           LOOP AT IVIEW.
             WRITE: / IVIEW-MATNR, IVIEW-BISMT, iview-saiso,
             IVIEW-VARIANTE, IVIEW-CKMACHAR, IVIEW-REPORT.
           ENDLOOP.

    What exactly is the problem? Syntax error?
    The view must be defined as either a projection view or a database view. Is it?
    Rob
    Message was edited by:
            Rob Burbank

  • Why this simple assingment is not possible in Generics ?

    Hi
    Just curious to know why this simple conversion does not work and requires casting ?
    List<? super Integer> list = new ArrayList<Integer>();
    List<? super Number> listN = list; //Requires Casting
    List<? extends Number> listExNu = new ArrayList<Number>();
    List<? extends Integer> listExIn = listExNu; //Requires CastingAs per my understanding ,
    A List<? super Number> can fit inside a List<? super Integer> ...
    So what really happens here to force casting ? Any ideas ?

    ejp wrote:
    List<? super Integer> list = new ArrayList<Integer>();The only two classes that are superclasses of Integer are Number and Object.Not quite. Please note that the clause *? super Integer* is inclusive, i.e. it also matches List<Integer>.
    Additionally, it matches all interfaces implemented by Integer. Thus, the following types can be assigned to list:
    List<Integer>
    List<Serializable>
    List<Comparable<Integer>>
    List<Comparable<? extends Integer>>
    List<Comparable<? super Integer>>
    List<Comparable<? extends Number>>
    List<Comparable<? extends Serializable>>
    List<Comparable<?>>
    List<Number>
    List<Object>And the following types can be assigned to listN:
    List<Serializable>
    List<Number>
    List<Object>Since the latter is a genuine subset of the former, an implicit conversion such as listN = list is impossible.

  • Has anyone been able to contact Adobe to learn why their Flash Player does not work on Mac OS 10.6.8, no matter how many updates you install?  This seems like a big error by Adobe.

    I have thee Mac computers with Mac OS 10.6.8, one of which is a Mac Pro.  No matter how many updates I install from Adobe, their Flash Player does not work on any of these 3 computers.  I don't know how to contact Adobe Systems about this problem, but I think it is their responsibility to make sure that their so-called "universal" software works proplerly on a relatively recent operating system like OS 10.6.8 that is still in widespread use.  When you install the updates, nothing happens -- not even an error message.  What is the point of a universal player that is not universal?  It works fine on my MacBook Pro with OS 9 Mavericks, but it does not work at all -- indeed, has never worked -- on my 3 Macs with OS 10.6.8.  Has anyone contacted Adobe Systems to find out why the Flash Player does not work with OS 10.6.8 and what they plan to do about it?

    Where are you getting Flash from?
    Get the appropriate dmg installer here and then run it.
    http://www.adobe.com/products/flashplayer/distribution3.html
    If it still won't install, do these two things: First uninstall any Flash by going into the second level Hard Drive Library>Internet Plug-ins, and trash the Flash Player.plugin and flashplayer.xpt. Then boot into Safe Boot, Shift at the startup chime (give it much longer than a usual boot) and run the installer while booted in Safe Boot.

  • HT1409 I have done this but it does not work with one of my albums and I dont know why??

    I have done this but it does not work with one of my albums and I dont know why??

    That would be it. Sometimes you can tweak the album & artist names enough for iTunes to download matching art from the store, or you could add a bonus track featuring 1 second of silence and attach artwork to that, or you could convert the files to Apple Lossless.
    tt2

  • Why GWt suggest box is not working in the latest versions of Firefox ? It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    Why GWt suggest box is not working in the latest versions of Firefox ?
    It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    jbren wrote:
    I repeatedly have problems with playback on my STB's. Go thru all the motions, inhouse agent, fix multi room dvr problems. Unplug unit, unplug dvr, etc. etc. etc.  The DVR'd show will play on the DVR but not on the STB's. What's up with that?
    Sorry to hear the auto fix suggested early did not fix your problem. So we can get more information from you, I have copied your post to our private support board. Please refer all correspondences to there from here on out. You can easily get to the private support one of two ways. In the email you signed up for the forums with, you will receive a link to click on. Make sure you are already signed into the forums before clicking on this link. Another way of getting there is by clicking on your username anywhere you see it in the forums. This brings you to your account profile. Scroll down to the section labeled "My Support Cases" . In there you will see the link to your case.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file bu

    Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file but not working. What is the matter and how can I deal with it?

    I am trying it on Adobe Acrobat Reader 9.2.1. Tried to fix Hex code, and also tried 'edit-preference-trust manager'. I focusing on Adobe registries but still couldn't fix the problem.

  • Why does my card reader not work on my iPad since upgrade?

    I use my iPad mini to download photos from my camera when I'm on the road. In the summer I bought the "3 in 1 Card Reader Adapter Cable Camera Connection Kit, 3 Port Card Reader for iPad 4 and iPad Mini by Eurekka" and it worked wonderfully. I was able to download photos (jpg and RAW) directly to the iPad and off the camera, and once home it was a flawless upload to my iMac.
    However, once I upgraded to iOS 7 last week I get a message saying the device is not supported. What gives? Will this be fixed or will Apple products only accept Apple accessories from now on?

    No but I was just trying to find a way in to your help desk. I didn't find 
    your web page very helpful in this regard.
    Douglas Whiteley
    In a message dated 10/05/2012 20:43:50 GMT Daylight Time, [email protected] 
    writes:
    Re:  why does my adobe reader not work
    created by Claudio  González
    (http://forums.adobe.com/people/Claudio+González)  in Adobe Reader - View the full  discussion
    (http://forums.adobe.com/message/4395059#4395059)

  • Why magic jack apps is not working on my iphone 5?

    why magic jack apps is not working on my iphone 5?

    I have the same problem.  I contacted magic jack, and after more than an hour of waiting, here is the final part of our discussion, before I had to leave to go to work:
    Me:  the magic jack app has worked fine for months unregistered. Never had a problem before. I must go to work now. I will leave the chat box open. if you could, send me a list of possible fixes and I will try to apply them when I get back. Please write in detail. Is there a way that I can get in touch and get a senior rep on right away to handle my problem when I get back, or do I hae to wait again when I call next time?
    Kara: I am one of the senior rep here and in fact one of the supervisors . Here is what you are going to do:
    Kara: Once you register the magicjack app into your Iphone, we can refresh your account connections here manually however if you dont register it, no options in our end to work for your connections since the MJ app is not used to be registered. No worries, we can remove your account if you dont want the service anymore for free.
    +++++++++++++++++
    So, it would seem that either there is a problem that they don't know about, or else magic jack is trying to force everyone to not choose option 3 on the opening screen, the one which allows you to continue to make a call without registering.
    Has anyone received a solution to this problem from magic jack support?

  • Why is my Apple ID not working in iTunes and App Store on my iPhone? Nothing happens if I click buy for apps or music. If I then go to settings/iTunes App Store my Apple ID is not there. If I then enter ID and password it does not save or link to account?

    Why is my Apple ID not working in iTunes or App Store on my iPhone? When I try to buy apps or music it asks for Apple ID so I enter my info and nothing happens. When I go to settings/iTunes App Store my Apple ID is not there. When I enter my ID and password it does not save or link to account. I do not have this problem with iPad ID is stored and can be used in App Store and iTunes. I have just upgraded to 5c and it's still a problem.

    LeesaHeeley wrote:
    When I go to settings/iTunes App Store my Apple ID is not there. When I enter my ID and password it does not save or link to account.
    When fist setting up your new iphone you will be asked to log in with an apple id and password. If this did not happen you can then do as you suggested going to settings to itunes and app store and add your apple id login. This apple id login must have already been created for the iphone to accept it. If this apple id is already created but is not being accepted by your iphone you then should shut down your iphone and restart the device.
    Good luck.

  • Why does my free trial not work?

    Why does my free trial not work?  This is intentially misleading.

    You need to provide a better description of what isn't working, system info and all that. This could be all sorts of technical issues or your trial could simply have bombed itself. In the latter case there is nothing you can do:
    Adobe trial software expired early
    Anything else like iunstall issues can in most cases be sorted out...
    Mylenium

Maybe you are looking for