Why does my Script finish before Toast Ejects my Disk?

Hi (Noobie),
I'm attempting to write an Applescript for burning DVD's in Toast.
My problem is that the Applescript finishes before the DVD is burned (ejected).
This is what I have:
tell application "Toast 10 Titanium"
open thefile
set toast_project to current disc
add to toast_project items filesto_add1
delay 3
add to toast_project items filesto_add2
delay 3
write toast_project with asynchronous completion without asking
delay 3
tell application "System Events"
keystroke return
try
tell application "Toast 10 Titanium" to quit without saving
end try
end tell
end tell
activate
display dialog "Finshed successfully"
. . . . . so how can I make sure my script waits for toast to finish (ie: Disk is ejected) before showing me the dialog window?
Thanks in advance for any help!

Well, I don't know… On your computer, is “disk 2” the disk you are burning or do you have some other disks connected? To get more information about your disks, you might type:
*tell application "Finder" to return properties of disks*
in the Script Editor window.
Or maybe you should just have used "current disc" (as before) inside the tell block.
Or maybe you should refer to the disk by its name instead of its index.
Or maybe you might try the following version of your script, where the new lines are in bold:
--BEGINNING OF SCRIPT
*tell application "Finder" to set theCurrentDisk to disk 2* -- or any other index
tell application "Toast 10 Titanium"
open thefile
set toast_project to current disc
add to toast_project items filesto_add1
delay 3
add to toast_project items filesto_add2
delay 3
write toast_project with asynchronous completion without asking
delay 3
tell application "System Events"
keystroke return
try
tell application "Toast 10 Titanium" to quit without saving
end try
end tell
end tell
*repeat while theCurrentDisk exists* -- just wait
*end repeat*
activate
display dialog "Finished successfully"
--END OF SCRIPT
Message was edited by: Pierre L.

Similar Messages

  • Why does my mac sleep before I can put in the password?

    why does my mac sleep before I can put in the password?

    So you press the Power button to start up the machine, it goes through the startup process, the login window appears, and the machine sleeps before you can enter your password? Do I understand the problem correctly?
    Is the battery fully charged? Is the LED on the MagSafe plug lit, and if so, is it green or orange?
    If the adapter plug is not lit, rest the SMC:
    http://support.apple.com/kb/HT3964
    If it still doesn't light after that, troubleshoot the AC adapter:
    http://support.apple.com/kb/TS1713
    Post back with answers to the above questions and any results from the SMC reset or adapter troubleshooting.

  • Why does my script ignore values in variable only some of the time?

    Hello,
    I'm a beginner at Powershell and am writing a script to gather the deployment details on all Azure Cloud Services attached to a Azure Subscription, including the info for any service that does not have a deployment.  
    I understand that the way I'm going about this may be wrong and I am NOT looking for any help creating a final script.  Some of my script is written specifically so that I can better understand what it's doing (for learning purposes).
    What I am looking for is help understand why my current script behaves the way it does.
    Here's my current script:
    #Create a report that shows the created date and latest deployment date for all
    #hosted services (cloud services)deployments in MyAzureSubscription
    Select-AzureSubscription MyAzureSubscription
    $ServiceNames = Get-azureservice
    foreach ($service in $ServiceNames){
    $ServiceName = $service | select -ExpandProperty ServiceName
    $ServiceDateModified = $service | select -ExpandProperty DateModified
    $service |
    get-azuredeployment -ErrorAction SilentlyContinue -ErrorVariable NoDeployment |
    Select @{Name="ServiceName";Expression={$ServiceName}}, DeploymentName, Status, CreatedTime, LastModifiedTime, @{Name="ServiceDateModified";Expression={$ServiecDateModified}}, @{Name="NoDeployment";Expression={$NoDeployment}} |
    Sort-Object -Propert DeploymentName |
    export-csv "outputfile.csv" -notypeinformation -append
    #Test statements below
    #Write-Host "NoDeployment Below:"
    #$Service | select ServiceName | Write-Host
    #Write-Error $NoDeployment
    Write-Host $ServiceName
    The output file only contains a list of servicenames and deployment details for services that do have a deployment.  None of the services that have no deployments are added/exported to the csv file.  However, the "write-host $ServiceName"
    writes ALL the service names in the powershell window, regardless of whether there's a deployment or not.
    What I don't understand is why the Select @{Name="ServiceName";Expression={$ServiceName}} only outputs the service names of services that have deployments instead of ALL service names regardless of whether they have a deployment or not.
    I've already proven that the variable $ServiceName does, at some point, save the ServiceName into the $ServiceName variable by writing it to host on each iteration of the foreach loop.  So why is it ignoring some ServiceNames when outputting/exporting
    to the csv file?
    Thanks!

    Hi Landshrkk,
    The script only outputs the names of the services that have deployments, because the get-azuredeployment cmdlet encounter error and didn't pass the result to select cmdlet, please try the script below:
    $output=@()
    Select-AzureSubscription MyAzureSubscription
    $ServiceNames = Get-azureservice
    foreach ($service in $ServiceNames){
    $ServiceName = $service | select -ExpandProperty ServiceName
    $ServiceDateModified = $service | select -ExpandProperty DateModified
    $s=$service |get-azuredeployment -ErrorAction SilentlyContinue -ErrorVariable NoDeployment
    $output += New-Object PSObject -Property @{
    ServiceName = $ServiceName
    DeploymentName = $s.DeploymentName
    Status = $s.Status
    CreatedTime = $s.CreatedTime
    LastModifiedTime = $s.LastModifiedTime
    ServiceDateModified = $ServiecDateModified
    NoDeployment = $NoDeployment}
    $output|Sort-Object -Propert DeploymentName |export-csv "outputfile.csv" -notypeinformation
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Why does my script end at "PicLoad(P​icFile)"?

    Hi everybody,
    I have a stupid problem - more or less a temporary one, which I don't get. I have this code fragment here:
    Call MsgBoxDisp("Soll eine neue Grafik geladen werden?", "MB_YESNO")
    If (MsgState = "IDYes") Then
      FileDlgCaption = "REPORT-Grafik laden"
      Call FileNameGet("REPORT", "FileRead", ,"*.TDR", , ,FileDlgCaption)
      If (DlgState = "IDOk") Then
        Call PicLoad(FileDlgDir+FileDlgFile+FileDlgExt)
        Call PicUpdate
      End If
    End If
    Call GraphSheetInfos
    For i=1 to GraphSheetCount
      Call GraphSheetNGet(i)
      GraphSheets_(i)=GraphSheetName
    Next
    With or without debug mode, the script ends 9 from 10 times at line 6 (here) - where it says "Call PicLoad(FileDlgDir+FileDlgFile+FileDlgExt)" as if it was the proper end of the script.
    When I go by myself into REPORT, the file was loaded. But still - the script does not continue.
    I have no clue why!! Is it a bug under Win Vista/32bit DIAdem 10.2??
    Regards / Grüße,
    Yeti
    Life is what happens while you are busy making other plans. (John Lennon)

    Hello Matthias!!
    Thanks for the answer! And for the hint with the log. It reports an error, but the message doesn't help me very much:
    "206 12:28:47 Fehler:
      Bei der Ausführung des Befehls "PICLOAD("S:\DIAdem\Gra\DR-Aut.TDR")" ist ein Laufzeitfehler aufgetreten.
      Fehlerart : ACCESS VIOLATION
      Fehleradresse : 00075292
      Modulname :gfsdesk.DLL
    207 12:28:47 Fehler:
      Fehler in (Zeile: 82, Spalte: 7):
      Bei der Ausführung des Befehls "PICLOAD("S:\DIAdem\Gra\DR-Aut.TDR")" ist ein Laufzeitfehler aufgetreten.
      Fehlerart : ACCESS VIOLATION
      Fehleradresse : 00075292
      Modulname :gfsdesk.DLL"
    (line 82 is right: there the PicLoad-function is placed)
    - especially as it all worked out before and I don't remember having done any changes on this part.
    Does this code number tell you anything? Or should I better contact the hotline?
    Since yesterday night I found a new unbeautiful thingie: everytime I have the KeyWait()-function running and click anywhere into DIAdem with mouse (I have to be sure my colleagues can't spoil anything ;-), DIAdem totally crushes down!
    Did that happen before...?
    Concerning FileDlgFileName:
    I had started with that one. But for some reason it sometimes gets the path to the file, sometimes not. As I'm working on different directories, I prefer the "long version" as it's now. It is more resistable against that mistake.
    Concerning "+" and "&":
    Usually I use the "&" - the "+" is "leftover" of some workaround to find out why the script stopped... But as you mentioned: in this case it doesn't matter which symbol is in use. ;-)
    Regards / Grüße,
    Yeti
    Life is what happens while you are busy making other plans. (John Lennon)

  • Why does this script behavior change with the phase of the moon ?

    Can anyone from adobe corp or non-adobe volunteers tell me where to look in their docs to find out why this script change its behavior or how to use the debugger to figure out the same. I read the guide and the whole section on debugger and break points etc well.
    try{
    this.getField('Button4').strokeColor = color.red   ;
    app.setTimeOut( "this.getField('Button4').strokeColor = color.green ;" , 500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.blue  ;" , 1000 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.red   ;" , 1500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.green ;" , 2000 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.blue  ;" , 2500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.red   ;" , 3000 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.green ;" , 3500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.blue  ;" , 4000 );
    catch(e){}
    Sometimes the above script cycle thru all the colors in proper order and other time it get stuck.
    I have linked it to a button so its part of the button javascript.
    Is there a way to craft setTimeOut calls that it becomes a reliable delay ?
    How to craft it such that the file does not change and does not have to be saved ? This is wanted in addition but not the essential issue at the moment.
    Thanks,
    Rainbow

    MAXcount=20
    // Create a simple color animation on a field called “Color” that changes every second.
    function DoIt() {
      var f = this.getField("Button4");
      var nColor = (timeout.count++ % 10 / 10);
      // Various shades of red.
      var aColor = new Array("RGB", nColor, 0, 0);
      f.fillColor = aColor;
      console.println( 'change' + ' ' + nColor + '; count=' + timeout.count );
      if (timeout.count >= MAXcount)
        app.clearInterval ( timeout );
    console.show();
    console.clear();
    console.println('Start');
    // save return value as a variable
    timeout = app.setInterval("DoIt()", 1000);
    // Add a property to our timeout object so that DoIt() can keep a count going.
    timeout.count = 0;
    console.println('End of code');
    // And observe the results. I expect your new timer events are conflicting with each other. Note that in the above code the change is performed within the called function and not as new line of code.
    I ran it but did not follow your last comment and acrobat disk icon prompts for saving the file. Can anyone remove this "latter problem" ? Can it be solved by any means ?

  • Why does this script beep at me :-(

    Writing a script that creates job folders and duplicates files, all works great, but when I save the script as an application, I get a beep after every file is copied.
    Perhaps I am doing something wrong, so I created a test script just that just copies files and the same thing happens, when I run it the files get copied, and at the end it beeps once, save it as an application, the files get copied, but I get four beeps.
    this is sample script:
    -- move file test
    tell application "Finder"
    set FromFolder to "Macintosh HD:Users:cls:Scripts Test Center:NewJob:MoveFromFiles:"
    set ToFolder to "Macintosh HD:Users:cls:Scripts Test Center:NewJob:MoveToFiles:"
    set FileName to "NewJob1.txt"
    set MvFile1 to FromFolder & FileName
    set FileName to "NewJob2.txt"
    set MvFile2 to FromFolder & FileName
    set FileName to "test1.tif"
    set MvFile3 to FromFolder & FileName
    set FileName to "test2.tif"
    set MvFile4 to FromFolder & FileName
    duplicate file MvFile1 to ToFolder
    duplicate file MvFile2 to ToFolder
    duplicate file MvFile3 to ToFolder
    duplicate file MvFile4 to ToFolder
    end tell
    as I said this is just a test, my original intent is to copy files from different locations, but this test has the same one beep per file after saving as an application.
    Can I turn off the beep, or am I doing something wrong?
    Thanks

    Hi ErstO. Welcome to Apple Discussions!
    You can hear a beep even when you duplicate a file with ⌘D in the Finder. That's normal. Try this:
    *set FromFolder to "Macintosh HD:Users:cls:Scripts Test Center:NewJob:MoveFromFiles:"*
    *set ToFolder to "Macintosh HD:Users:cls:Scripts Test Center:NewJob:MoveToFiles:"*
    *set MvFile1 to FromFolder & "NewJob1.txt"*
    *set MvFile2 to FromFolder & "NewJob2.txt"*
    *set MvFile3 to FromFolder & "test1.tif"*
    *set MvFile4 to FromFolder & "test2.tif"*
    *set volume with output muted* -- StandardAdditions.osax > Miscellaneous Commands
    *tell application "Finder"*
    *   duplicate file MvFile1 to folder ToFolder* -- the word folder is required before the path
    *   duplicate file MvFile2 to folder ToFolder*
    *   duplicate file MvFile3 to folder ToFolder*
    *   duplicate file MvFile4 to folder ToFolder*
    *end tell*
    *delay 1* -- should be enough
    *set volume without output muted*
    Hope it can help.
    (The script seems to work even without the word folder being put before the ToFolder path. However, if you open the Event Log History window after having run the script, you will see a huge difference.)
    Message was edited by: Pierre L.

  • Why does this script fail with OS X Lion?

    The following AppleScript has been woorking just fine ronning Snow Leopard. Under Lion only the first site is loaded and the other Safari tabs are Untitled. Does anyone know what is wrong and how do I fix it? Thanks for any help.
    Hugh
    ---------------------------------------------------- Non-working script ---------------------------------------------------------------------
    tell application "Safari"
              open location "http://www.macrumors.com/"
              tell window 1 to set current tab to make new tab with properties {URL:"http://www.macworld.com/"}
              tell window 1 to set current tab to make new tab with properties {URL:"http://www.macnn.com/"}
              tell window 1 to set current tab to make new tab with properties {URL:"http://reviews.cnet.com/macfixit/?tag=mfiredir"}
              tell window 1 to set current tab to make new tab with properties {URL:"http://www.macintouch.com/"}
              tell window 1 to set current tab to make new tab with properties {URL:"http://arstechnica.com/apple/"}
              tell window 1 to set current tab to make new tab with properties {URL:"http://www.appleinsider.com/"}
    end tell

    Does anyone know what is wrong and how do I fix it?
    Actually, I don't know why your script fails with Mac OS X Lion. I can only suggest the following workaround, which seems to work properly:
    set myURLs to {"http://www.macworld.com/", "http://www.macnn.com/", "http://reviews.cnet.com/macfixit/?tag=mfiredir", "http://www.macintouch.com/", "http://arstechnica.com/apple/", "http://www.appleinsider.com/"}
    open location "http://www.macrumors.com/"
    tell application "Safari"
        activate
        tell window 1 to repeat with thisURL in myURLs
            set current tab to make new tab
            my newTab(thisURL)
        end repeat
    end tell
    on newTab(theURL)
        tell application "System Events"
            keystroke "l" using command down
            keystroke theURL & return
        end tell
    end newTab

  • Why does this script changes modification date???

    Hello All,
    I am using this script with an Acrobutton to advise my users of the current PDF version.
    var stmDoc = Collab.documentToStream(this)
    var strDoc = util.stringFromStream(stmDoc);
    var strVer = strDoc.substr(5,3)
    app.alert({cMsg: "The PDF version is: " + strVer, nIcon: 3, nType: 0, cTitle: "PDF Version Check"});
    Problem is that when closing the document, even though not prompted, the file is saved (assumed, since the modification date changes).
    Is there anything about this script that is doing this?

    I added a "this.dirty = false;" to the end, but it does not do as I had hoped. The pdf does not prompt for a save, which is what I understand the dirty flag to be effecting. The modification date changes anyway. Am I not using the dirty flag correctly? Thanks in advance for your help.

  • [Unknown] Bash: Why does this script break my environment?

    I'm trying to build a script to do a couple makepkg tasks and it looks like I'm having trouble with a function breaking the environment.  The function does several commands and then breaks makepkg.  After I run the script, makepkg runs as if no options are entered:
    makepkg -g
    ==> Check: Installer is the correct size.
    ==> Extracting archive...
    ==> Copying files...
    cp: cannot overwrite non-directory `/var/abs/local/personal/worldofgoo/pkg/usr/share/games/worldofgoo/WorldOfGoo' with directory `WorldOfGoo'
    ==> ERROR: An unknown error has occurred. Exiting...
    Instead of the expected:
    makepkg -g
    ==> Retrieving Sources...
    -> Found worldofgoo.desktop in build dir
    ==> Generating checksums for source files...
    md5sums=('e49849a66aa50065d4d548653a33cc23')
    Here's the script it just started happening when I added the function.  I think it has to do with the curly brackets that awk uses.
    #!/bin/bash
    # mp - makepkg package building tasks
    # Add md5sums following source array in PKGBUILD
    md5add () {
    # Delete previous md5sum entries
    sed -i '/^md5sums/,/).*$/d' PKGBUILD
    # Add md5sums to end if PKGBUILD
    makepkg -g >> PKGBUILD
    # Move md5sums to follow source array
    awk 'BEGIN {
    checkAt = 0
    filesAt = 0
    scanning = 0
    /md5sums=\(/ {
    checkAt = NR
    scanning = 1
    /source=\(/ {
    filesAt = NR
    scanning = 1
    /)$/ {
    if (scanning) {
    if (checkAt > filesAt) {
    checkEnd = NR
    } else {
    filesEnd = NR
    scanning = 0
    lines[NR] = $0
    END {
    for (i = 1; i <= NR; ++i) {
    if (checkAt <= i && i <= checkEnd) {
    continue
    print lines[i]
    if (i == filesEnd) {
    for (j = checkAt; j <= checkEnd; ++j) {
    print lines[j]
    }' PKGBUILD > /tmp/PKGBUILD.tmp
    if [ -f /tmp/PKGBUILD.tmp ]; then
    mv /tmp/PKGBUILD.tmp PKGBUILD
    fi
    # Remove trailing blank lines
    while [ "$(tail -n 1 PKGBUILD)" == "" ]; do
    sed -i '$d' PKGBUILD
    done
    # Options
    case $1 in
    p ) if [ ! -f ./PKGBUILD ]; then
    echo "No PKGBUILD in this directory ($(pwd))"
    exit; else
    makepkg -sf
    fi
    s ) if [ ! -f ./PKGBUILD ]; then
    echo "No PKGBUILD in this directory ($(pwd))"
    exit 1; else
    echo "adding md5sums"
    md5add
    makepkg -f --source
    fi
    * ) # Display usage if full argument isn't given
    echo " ${0##*/} <option> - makepkg building tasks:"
    echo " p - build package (also installs dependencies)"
    echo " s - build source-only tarball (adds md5sums, tars for submission)"
    exit
    esac
    I have to restart to reset the environment (logout doesn't work) so I'l like to be able to fix this .  Any ideas?
    Last edited by Gen2ly (2009-10-30 15:19:17)

    Just reinstalled and not having it come up again.  Putting this in wonderland.
    Last edited by Gen2ly (2009-10-30 15:18:44)

  • Why does this script error on shutdown?

    it's the one from this package: http://aur.archlinux.org/packages.php?d … =1&ID=2885
    http://aur.archlinux.org/packages/oss2j … ck/os2jack
    Although it works good it spouts some ugly error on shutdown(although it manages to shutdown correctly)
    Now i just copied the code from some other script so i don't know what could be wrong. So please, all you bash ppl out there!
    /me makes mental note to read the rest of RUTE linux manual to 'get' this stuff more.

    Well, at a first glance, the script backgrounds the kill command and then checks the return status, which I'm pretty sure doesn't work... so it probably does it's job, but looks as if it's failing.

  • Why does this script not work when run with osascript cli?

    I wrote the following to interface with geektool to display a list of todo's on my desktop (i'm sure it's been done elsewhere, but I wanted to try it myself). I had it working fine until I tried ordering the output to place the highest priority items at the top of the list. The following code works properly during development in Script Editor, but when geektool launches the command using osascript ~/Library/Scripts/todos.scpt it only displays the initial "TODOS:" without displaying the rest of the info. Searching the Applescript Release notes, I found that some versions of Applescript 1.8 had issues with null characters when using the osascript cli, however, I'm running 1.10.7 so it shouldn't be an issue (and I'm not sure how to check for null characters in Applescript even if it were). Anybody have any ideas on what's going on here?
    set output to {"TODOS:
    set highpri to {}
    set medium to {}
    set low to {}
    set nada to {}
    tell application "iCal"
    repeat with i in calendars
    repeat with j in todos of i
    if (completion date of j as string) is equal to "" then
    if priority of j as string is equal to "high priority" then
    copy summary of j & "
    " to end of highpri
    end if
    if priority of j as string is equal to "medium priority" then
    copy summary of j & "
    " to end of medium
    end if
    if priority of j as string is equal to "low priority" then
    copy summary of j & "
    " to end of low
    end if
    if priority of j as string is equal to "no priority" then
    copy summary of j & "
    " to end of nada
    end if
    end if
    end repeat
    end repeat
    end tell
    return (output & highpri & medium & low & nada) as string

    well, i'd been pulling my hair out for quite a while with this and decided it was time to ask for help, but I thought I'd give it one last shot and found a resolution almost immediately. I figured that problem had to be caused by the way applescript was concatenating the lists, so I got rid of the lists completely and it still wouldn't work. This convinced me that it must be newline related since that was the only special character left in the string. I opened up the script in vi, but the default compiled script format is not human readable. The osascript man page indicated that it would accept both compiled and text scripts, so I gave it a try, and osascript handled the raw text file wonderfully.

  • Why does a "script' text in design appear as non script (block) in browser preview in CS5 on a Mac?

    I have amended text within the design field and selected "Brush Script MT Italic. In the design view in Dreamweaver CS5 it appears in this script  but when I preview it either in Dreamweaver "preview in browser" or after uploading and viewing in browser the text appears in a non script format.
    The source code is :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <link href="test.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <p>This is a test.</p>
    <p> </p>
    </body>
    </html>
    And the linked CSS style sheet reads:
    @charset "UTF-8";
    /* CSS Document */
    p {
              font:"Brush Script MT Italic";
    I am using a Mac with Lion OS. I have tried many script font but the result is the same.
    DC

    There are only a minimal amount of web safe fonts to be used in your webpage design. Frush Script MT Italic is not one. What happens is it might display on the computer that has that font, but on a person web browsing computer, if the font is not installed, then it will use the default font (usually times new roman or equivelant on Mac). It is best to stick with the web safe fonts (google it) unless you use the font in a graphic.
    Jim

  • Why does my macbook pro keep on ejecting cd's?

    Whenever I put a CD in, it will stay in there for about 30 seconds and then ejects. The ejcet button is not sticky or stuck. It's not just that CD. I tried numberous CD's and it will not stay inside.

    Try to reset the SMC > http://support.apple.com/kb/HT3964 If it doesn't work, take the Mac to an Apple Store because the SuperDrive may be damaged

  • Why does no script cancel my java script settings? I have to disable it to use half my applications.

    Even when I check to be sure javascript IS enabled (it always is) I still get notices that I need to enable javascript. Getting to my spam filter so I can "select all" I want to delete requires exiting, disabling no script, and logging back on. I get warnings on both eBay and Paypal. This may be an improvement in terms of threats, but as it is now offered it is a profound and annoying waste of time.

    NoScript is an excellent extension, but it isn't for the less technically inclined user - there's a steep learning curve, and it requires continuous input unless you visit the same exact websites everyday.
    http://noscript.net/features <br />
    http://noscript.net/faq <br />
    http://forums.informaction.com/viewforum.php?f=3
    If you think it is a waste of your time, simply un-install it.

  • Why does kanji script appear superimposed on tabs and then appear in an e-mail message from a known commercial sender?

    More than once as I am working with 3 or more open tabs, kanji script appears superimposed across the tabs. Won't respond to right or left clicking, haven't tried highlighting.
    Today while opening email on yahoo, a message appeared in my inbox with kanji characters in the information parameters (date, checkbox) but English in the subject line. I deleted it.
    I'm getting worried. I do not think this is a Yahoo problem as I'm not actually in Yahoo when the kanji appears first, but the yahoo tab was still active. The kanji spreads across more than one tab.

    Thanks, Fred. I have removed the Site Advisor. I hesitate to mark the problem solved until some time has passed with no new occurrences. I will be sure to follow up on this in a week or so. MinMan

Maybe you are looking for

  • How to create reports from my existing web application on Java/J2EE with Oracle Client 10g as the backend?? Help sought for

    Our company has developed an  Web Application and we are also looking out for the development of reports using Business Objects Exterprise XI Release 2 and for this purporse I do require some help from the forum who can literally show me how to get o

  • BI same as BW

    Hi, I am new in SAP area and have a very simple questions for experts out there.  Is BI same as BW?  It seems like BI covers all the BW area? I am actually looking to take a class offered in my area.  They are marketing it as BW/BI class.  I want to

  • Idoc monitoring tool .

    Guys , Is there any tool to monitor the Inbound and the outbound IDoc s from one server to another server . ?  I know there are transactions to view the Idoc , reprocess it , But i need to know is there any tool kinda thing which monotors all of the

  • Warning in TextView UI Element.

    In the NWDS, I set the "text" property of a TextView UI Element by clicking on the "Edit" button. A pop-up window opens, and I enter a multi-line text, using the Enter key to break the lines. What I get is working perfectly, but I get a couple of ann

  • Creating Setup Package in Netweaver Administrator MI

    Hello everybody,<br><br> after a long searching to a clear manual about setting up Mobile Infrastructure client, and after a lot of reading the typical spaghetti manuals of SAP, I started to create a Device Configuration to test the MAM 3.0<br><br> I