Problem with some script--Help???

I've been trying to learn some new things with flash and
actionscript out of a book, I was trucking along nicely then I hit
this rut--
I keep getting an error with my script, but I am 99.9% sure
that the script is the same as it is in the book.
here is the code:
//----------<LoadVars>---------//
var myLV:LoadVars = new LoadVars();
myLV.onLoad = function (success){
if (success){
_level5.loadedInfo.htmlText = myLV.info;
} else {
_level5.loadedInfo.text = "There has been an error loading
the requested information .
Please contact the Webmaster and report your error.";
//---------------</LoadVars>-----------------\\
and this is the error message:
**Error** Scene=Scene 1, layer=actions, frame=1:Line 20:
String literal was not properly terminated
_level5.loadedInfo.text = "There has been an error loading
the requested information .
**Error** Scene=Scene 1, layer=actions, frame=1:Line 21:
Syntax error.
Please contact the Webmaster and report your error.";
**Error** Scene=Scene 1, layer=actions, frame=1:Line 22:
Expected a field name after '.' operator.
Total ActionScript Errors: 3 Reported Errors: 3
any suggestions??
thanks,
hutch

sweet, that fixed the error problem. Now i have to figure out
why my text won't load. The fun of learning!! I love running into
problems and spending an insane amount of time trying to trouble
shoot them, just to find the problem to be something so simple and
minute that it makes you hate your self,--but when it all works in
the end it feels so good.
thanks,
it is much appreciated.
hutch

Similar Messages

  • I have an ipad mini 1st gen 64 gb (wifi only) and i have problem with some of my apps. These apps have lags when you play with them for a few seconds the apps are having lags are call of duty strike team, gta San Andreas and nfs most wanted.pleas help me

    I have an ipad mini 1st gen 64 gb (wifi only) and i have problem with some of my apps. These apps have lags when you play with them for a few seconds the apps are having lags are call of duty strike team, gta San Andreas and nfs most wanted.pleas help me

    I'm going to guess videos buffer for a while also...
    Two possibilities, one is you should close apps on the iPad, the other is your internet speed is not able to handle the demands of a high speed device.
    To close apps:   Double click home button, swipe up to close the apps.
    To solve internet problem, contact your provider.   Basic internet is not enough for video games and movies.   Your router may be old and slow.

  • HT1391 How can I get a full history of our purchases?  We had some problems with some downloads since 5/25/12.We were charged for items that said "Free"? Help

    How can I get a full history of our purchases?  We had some problems with some downloads since 5/25/12.We were charged for items that said "Free"? Help

    iTunes Store menu > View My Account...
    Sign in and select "See All" in Purchase History.
    You can only see them in "batches" of ten. As far as I know there is no way to obtain a comprehensive summary.
    The prices are tabulated in that list. If they were supposed to be free, and they show that you were charged, then click the arrow next to the suspect purchases and click "report a problem".

  • Problems with some fonts, need help!

    Hi everyone,
    Recently I need to create some documents in Pages and I found some problems with some of the fonts. Apparently some fonts when the font size is increased the spacing between characters gets reduced and ooks very weird.
    http://img109.imageshack.us/i/screencapturem.png/
    I've tried all type of configs in pages and i'm really clueless what this is.
    Can anyone please give me some pointers?
    Thank you in advanced,
    Prismer

    This leaves several files instaled. Among them are the preferences files. If you re-install with existing preferences files, these one aren't replaced by new, clean, ones.
    Right, uninstalling the application does not necessarily uninstall its preferences. (Indeed, previous InDesign and QuarkXPress betas had the problem that they preserved the older preferences when the newer betas were installed which could lead to crashes.)
    Arguably, system software has to have smart install / uninstall so that all the files installed by an application are removed, but then what about fonts and / or profiles installed with the application, which some other application may be using as a resource.
    I don't know, but the word 'simple' and the word 'software' don't seem ever to be synonyms .
    /hh

  • Little execution problem with the script

    declare
    i number(1):=1;
    name varchar2(10);
    id number(2);
    begin
    loop
    id:=&id;
    name:='&name';
    insert into emp values(id,name);
    i:=i+1;
    exit when id<=5;
    end loop;
    end;
    When i tried to execute the script, it is going through the loop only once..What the problem with this script...Can any body help the script work?

    if id is less or equal to 5 then loop will execute only once.
    What is the variable i for ?

  • Problem with a script to remove graphics

    Hello,
    I have tried to build a javascript to remove all graphics whose extension is not ".EPS" (with "EPS" really in upper cases, as it is for Mathtype equations in Word import).
    But It doesn't work and I can't understand why.
    Here is the script:
    //The script intend to remove all graphics whose extension is not ".EPS"
    var myDoc = app.activeDocument;
    var myGraphics = myDoc.allGraphics
    //Remove graphic if graphic extension is different from ".EPS"
    for (var p = 0; p < myGraphics.length; p++) {
        var myImage = myGraphics[p]
        if (CheckExtEps(myImage) != 0){
        myImage.remove ()
    //Compare graphic extension with ".EPS" and return myExtValue = 0 if it matches exactly
    function CheckExtEps(myImage) {
        var  myString = myImage.name
        myExt = myString.substr(myString.lastIndexOf( "." ))
        myExtValue = myExt.localeCompare(".EPS")
        return myExtValue
    When I run this script, ALL the graphics are removed, ".EPS" included.
    I do have ".EPS" graphics in my document and I expected them not to be removed.
    So there is something wrong somewhere, but I don't know what to change.
    Any ideas?
    By the way, I have a more generic question as a beginner:
    I am working with ExtendScript Toolkit. How can I do to check my script step by step?
    For exemple, how can I display my variables values as "myString", "myExt", "myExtValue" at each step?
    Actually, this script is a step for a bigger script I intend to build to deal with Mathtype equations in Word import.
    After not-EPS graphics beeing removed, I wish to relink all remaining equation prewiews to eps in a selected folder, by consecutive order.
    But this is a big piece of scripting to swallow for me, so I'm working slowly, step by step.
    TIA
    Best regards
    Nicolas

    Hello Ariel
    Thank you very much for your help.
    1. I added semicolons at the end of lines, but the script result is the same.
    2. Running line by line, I could see in the Console where is the problem:
    variable "myString" is always undefined.
    Well, I have to get more inside my script...
    Thank's again
    Best regards
    Nicolas
    Nicolas BALBO  
    [email protected]
    22, rue d'Hauteville  75010 PARIS
    Tel : 33 (0)1 42 57 14 31
    Le 18 avr. 2012 à 17:36, Arïel a écrit :
    Re: Problem with a script to remove graphics
    created by Arïel in InDesign Scripting - View the full discussion
    Well, I can't see any semicolons in your script. Maybe that's just the
    email interface, but there should be semicolons at the ends of lines.
    In the ESTK, you can step through a script a line at a time. Just click
    on the downwards pointing arrow instead of the "play" arrow. Each time
    you click, the script will advance one line. In the Console window
    (Windw>Console) you can then type the name of the variable you wish to
    examine.
    Ariel
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4344039#4344039
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4344039#4344039. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign Scripting by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Problem with some Video Content not able to be shown. no Plug in for it

    I am getting a Problem with some News Sites Articles Video Content not being able to be shown, BBC, YAHOO,etc I am getting the message/has content of Mime type Audio/x -pn-RealAudio-Plug in Because you dont have plug in for this mime type it cant be displayed. Also I am getting a Message Url not Valid
    Help Please. Thanking You
    I .Mac 17   Mac OS X (10.4.8)   intel core 2 duo

    Did you install Real Player (free version)?
    <https://order.real.com/pt/order.html?country=US&langu
    age=EN&mppi=0&mppos_list=0&mpst=0&ppath=cpmacpl060204a
    &pageregion=playerbutton&pcode=rn&opage=realhomespma
    cbb&src=realhome_spmac_bb_0_1_1_0_0_20>
    Okay, so here's a question from a new to mac guy. Many issues on old PC with real player and Media Player not getting along. Eventually had to delete real player and had to reinstall windows. I would like to avoid third party software if possible and stick with Quicktime. How do I install the mime plug in without installing Real Player?
    17" iMac   Mac OS X (10.4.8)   intel duo
    17" iMac   Mac OS X (10.4.8)   intel duo

  • TS1702 I have a problem with some of my apps what can I do.

    I have a problem with some of my apps

    Again, we need full details. What do you mean by "do nothing"? Do you mean the app won't launch at all when you tap on it? Or does it try to launch and then crash? Or what, exactly? And is this with all your apps or only specific ones?
    We can't offer suggestions unless you tell us the exact nature of the problem. It will also help if you tell us what model of iPad you have and the version of iOS it's running.
    Regards.

  • Problems with some songs in iTunes (and my iPod)

    Hi,
    I do not know whether this is the right category for my problem, but I did not find a suitable one.
    I have problems with some songs in iTunes. They do not sound right. It is hard to me to describe my problem in English (thanks to apple's "great" support...I was not able to contact them personally except by phone). The songs "hang", they sound like someone reels (?) it. The problem does not only appear with iTunes but also with my iPod nano first generation.
    My godmother brang me CDs where that problems appear (but not the whole CDs have that problem, only a few songs) from the USA - I live in Germany. Maybe that is cause of the error. But I cannot imagine that, because CDs there and here have the same format and I have several CDs from the US where is no problem at all. I am absolutely sure that the CDs are originals and not a copy, by the way.
    Maybe you can help me, it would be great!
    Thanks,
    Jule
    Message was edited by: JAGgermany

    Yes, I thought that's what Restore should do, but the problems remain.  Hmmm, the out of order 'album's' songlist is notated 1 of 8, 2 of 8, 3 of 8...  I'll try 01, 02...
    Probably a good idea.
    The other album is running through the list of songs like fast-forward, but not playing the songs.  Then, iPod locks up.
    Do these same tracks play okay in iTunes?  What is the original source for these tracks?  Were they downloads from the iTunes Store or imported from outside of iTunes?  What format are they encoded in and at what bitrate?
    B-rock

  • We encountered a problem with some client machines that use Firefox version 24ESR and IE8. Ajax requests of aspx pages from Firefox are getting the following er

    I encountered a problem with some client machines that use Firefox version 24ESR and IE8.
    Ajax requests of aspx pages from Firefox are getting the following error from the iis server (iis version 7.5):
    Bad Request - Request Too Long
    HTTP Error 400. The size of the request headers is too long.
    From analyzing the request that was sent to the server, I saw that the request consist of only the viewstate of the aspx page.
    I tried to disable the viewstate for one page and the server got the request correctly.
    I do not encounter any issues on these laptops with postback requests from Firefox or when running the same application with IE8.

    Sometimes that means that the page address sent is loo long.
    Check the link address you are using.
    I can't help you further and will send for more help.

  • I just updated my latest java but the update is causing problems with some externale devices. So i would like to uninstall this latest java update and get back the previous one. That should solve to problems with my external device

    i just updated my latest java but the update is causing problems with some external devices. So i would like to uninstall this latest java update and get back the previous one. That should solve to problems with my external device.
    Is this possible and how do i do that?
    Anyone who responds thanks for that!
    Juko
    I am running
    Hardware Overview:
      Model Name:          Mac Pro
      Model Identifier:          MacPro1,1
      Processor Name:          Dual-Core Intel Xeon
      Processor Speed:          2,66 GHz
      Number of Processors:          2
      Total Number of Cores:          4
      L2 Cache (per Processor):          4 MB
      Memory:          6 GB
      Bus Speed:          1,33 GHz
      Boot ROM Version:          MP11.005D.B00
      SMC Version (system):          1.7f10
      Serial Number (system):          CK7XXXXXXGP
      Hardware UUID:          00000000-0000-1000-8000-0017F20F82F0
    System Software Overview:
      System Version:          Mac OS X 10.7.5 (11G63)
      Kernel Version:          Darwin 11.4.2
      Boot Volume:          Macintosh HD(2)
      Boot Mode:          Normal
      Computer Name:          Mac Pro van Juko de Vries
      User Name:          Juko de Vries (jukodevries)
      Secure Virtual Memory:          Enabled
      64-bit Kernel and Extensions:          No
      Time since boot:          11 days 20:39
    Message was edited by Host

    Java 6 you can't as Apple maintains it, and Java 7 you could if you uninstall it and Oracle provides the earlier version which they likely won't his last update fixed 37 remote exploits.
    Java broken some software here and there, all you'll have to do is wait for a update from the other parties.

  • How to install adobe flash player through command line with some script

    Hi Guys,
    Do you know how to install adobe flash player through command line with some script?
    Thanks,
    Galina

    Windows. I tried silent install  with "install_flash_player.exe /install" but it works only with one file that I downloaded from adobe.com - "install_flashplayer10_mssd_aih.exe". But it is possible to download this last file only one time, every next time it redirects me to download install_flash_player.exe file.

  • My iphone 3g wont load all comments from online newspaper. when I touch the "load more comments" button the little spinning spiral appears then nothing happens. Anyone else have this problem with some online newspapers?

    My iphone 3g wont load all comments from online newspaper. when I touch the "load more comments" button the little spinning spiral appears then nothing happens. Anyone else have this problem with some online newspapers?

    Anything?

  • SB Xtreme Audio Notebook optical out problem with Home TheaterSystem-HELP!

    JSB Xtreme Audio Notebook optical out problem with Home TheaterSystem-HELP!, I have this sound card connected?(optical OUT) ?to my home?theater system's digital IN ?through the recommended /8in. optical miniplug-to-optical SPDIF cable. Theater system is set correctly to Digital-In mode. I have no sound!
    The cable is a Velocity Toslink-to-Optical Mini Plug digital cable. I don't see any settings in the Creative Console Launcher. The notebook is a Dell XPS M730 (Vista 32).
    I have a PS3, DirecTV, and the SB Xtreme Audio Notebook cable on a hub switch that connects to the system's?one Optical IN. The PS3 and DirecTV sound perfect!
    The sound card works fine with standard PC speakers. I'm at a loss as?to what to try next. I set this whole system up myself, so I'm pretty good at working out the kinks, except this one!
    Karen

    OK. I just went to Control Panel - Sound - Playback - Digital Output Device (SB Xtreme Audio Notebook) - Properties - Advanced. I experimented with different sample rates and bit depths. Clicked the test button and lo and behold - sound from the HTS! I've tried iTunes, PowerDVD (configured to digital output) and YouTube - no sound! Am I missing something really obvious?
    HA! Just backed out to Playback and selected Digital Output Device (SPDIF) and set as Default. Sound is emunating from HTS! Well, that mystery is solved! Who knew.
    Thanks anyway! Any comments or advice will still be appreciated.

  • I have problem with some gosts on the side of the display !?

    I have problem with some gosts on the side of the display !? and I want to make a back up of my mac and to take it to the store for the problem I gut !

    Hello, it sounds a bit like this common problem, do get it fixed...
    https://discussions.apple.com/thread/2300580?start=0&tstart=0

Maybe you are looking for

  • Sql developer won't connect with SQL server database on cluster

    Hello, I have a microsoft SQL server database on a windows cluster. Name for this cluster is like XXX/YYY When I try to connect to this database with SQL developer, I get a failure, mentioning: "Status : Failure -Cannot connect to Miscrosoft SQL Serv

  • Does anybody have a problem with ios7

    I have a ipad 2 ,  now with ios7  . My problems started when I updated  first the wallpaper size that was solved sort of . Now may ipad is slower to respond and my apps keep crashing  also at times i cant even get my e-mail ! I am tempted to go back

  • Exchange Rate Issue ( Ditect & Indirect Quotation )

    Dear, Alll Experts. I am stuck up at one level , that is Exchange Rate issue. User is creating shopping cart in SRM, Local Currency is USD and the goods is ordering from Canada ( CAD ). While doing this amount is getting calculated   in - ( Negative

  • Report timing out

    Hi gurus I am trying to run a profitability report in production if the range is for one month it is working but if the range is for 1 year the report is timing out can anyone suggest me what would be the problem please.

  • Classic Ringtones

    Now that I have left my 6280 behind for an N95 8GB, I'd like to be able to keep/get my old ringtone installed on the new phone: "tumbler.mxmf". Is there somewhere I can find it (not in any of the the usual online places), assuming that there is a ver