Missile Command widget

While this new widget is fun, it eats up CPU capacity, even when not playing!  My Mac Mini was running hot (fan going fast) and I didn't have that much open, so I opened Activity Monitor and found that the widget was using 30% of the CPU, and I wasn't even playing it.
I clicked to the developer's website, but it's In Japanese, which I don't speak, so couldn't leave a message for him.
Apple monitors- please have someone contact him/her about this and remove it from your widget list until he's fixed the problem.

I am sorry not to notice.
The problem of wasting CPU was fixed in the version 0.971.
http://www.tsujimo.com/shop/archives/2007/10/15/538/

Similar Messages

  • Missile Command- HELP!

    I'm writing a missile command program for a class. I need help getting the enemy missiles(the ones that shoot down towards the city) to recognize the user's missiles and terminate. This seems especially hard since the users missiles are ellipses and not rectanges and the Ellipse2D.Double's I use use bounding boxes. Let me know if you have any ideas (I tried the contains method, didn't really know how it works)
    Thanks!
    Borismeister
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import java.util.ArrayList;
    import java.awt.geom.Ellipse2D;
    import java.lang.Thread;
    import javax.swing.JOptionPane;
    public class Screen extends Applet
    public void init()
    MyListener listener = new MyListener();
    addMouseListener(listener);
    level = 2;
    threads = new ArrayList(level * 10);
    shot = 0;
    for(int i = 0; i < level * 10; i++)
    threads.add(new LaserThread(1, this));
    LaserThread p = (LaserThread)threads.get(i);
    p.start();
    missiles = new ArrayList();
    public void paint(Graphics g)
    Graphics2D g2 = (Graphics2D)g;
    // tryInterrupt();
    // public void tryInterrupt()
    // for(int i = 0; i < missiles.size() + 1; i++)
    // MissileThread mis = (MissileThread)missiles.get(i);
    // Missile mos = mis.getMissile();
    // for(int j = 0; j < threads.size() + 1; j ++)
    // LaserThread thr = (LaserThread)threads.get(j);
    // Ellipse2D.Double circ = (Ellipse2D.Double)mos.getEllipse();
    // if (circ.getX() > thr.getX())
    // thr.interrupt();
    private int shots = 20;
    Applet a = this;
    private ArrayList threads;
    private int level;
    public static int shot;
    public static ArrayList missiles;
    class MyListener implements MouseListener
    public void mouseClicked(MouseEvent e) {}
    public void mousePressed(MouseEvent e)
    MissileThread mt = new MissileThread(e.getX(), e.getY(), a, threads);
    mt.start();
    missiles.add(mt);
    public void mouseEntered(MouseEvent e) {}
    public void mouseExited(MouseEvent e) {}
    public void mouseReleased(MouseEvent e) {}
    import java.applet.Applet;
    import java.awt.Graphics2D;
    import java.util.Random;
    import javax.swing.JOptionPane;
    import java.awt.geom.Ellipse2D;
    A thread that moves a car
    The car will run into the wall without stopping.
    public class LaserThread extends Thread
    Constructs a with a given top left corner
    @param x the x coordinate of the top left corner
    @param y the y coordinate of the top left corner
    @param speed the speed of the car
    public LaserThread(int aSpeed, Applet anApplet)
    speed = 15 - aSpeed;
    a = anApplet;
    private int toWait;
    public void run()
    Random gen = new Random();
    try
    sleep(gen.nextInt(3000));
    shot = new Laser(1, a);
    }catch(InterruptedException e) {}
    try
    while(true)
    shot.advance( (Graphics2D)a.getGraphics() );
    sleep(speed);
    catch (InterruptedException e)//SEX!!!!
    public int getX()
    return shot.getX();
    public int getY()
    return shot.getY();
    private double dx;
    private Applet a;
    private int speed; //lower values mean faster
    private Laser shot;
    import java.util.Random;
    import java.applet.Applet;
    import java.awt.Graphics2D;
    import java.awt.geom.Ellipse2D;
    import java.util.ArrayList;
    public class Laser
    public Laser(int aLevel, Applet a)
    Random generator = new Random();
    target = generator.nextInt(a.getWidth());
    xStart = generator.nextInt(a.getWidth());
    slope = (0-a.getHeight())/(xStart - target);
    public void advance(Graphics2D g2)
    y++;
    x = (int)((y + slope * xStart)/slope);
    g2.fill(new Ellipse2D.Double(x, y, 2, 2));
    public int getX()
    return x;
    public int getY()
    return y;
    private int level; //reflects the speed
    private int target; // 0 - getWidth(), thus not all will actually hit targets
    private int speed; //initialized based on the level
    private int xStart;
    private int xEnd;
    private int downSteps;
    private int sideSteps;
    private double slope;
    private int x, y;
    import java.applet.Applet;
    import java.awt.Graphics2D;
    import java.util.Random;
    import java.awt.geom.Ellipse2D;
    import java.util.ArrayList;
    A thread that moves a car
    The car will run into the wall without stopping.
    public class MissileThread extends Thread
    public MissileThread(int myX, int myY, Applet anApplet, ArrayList threads)
    x = myX;
    y = myY;
    a = anApplet;
    private int x, y;
    private Applet a;
    private Missile myMissile;
    public void run()
    myMissile = new Missile(x, y, a);
    myMissile.shoot();
    public Object getCirc()
    return myMissile.getEllipse();
    public Missile getMissile()
    return myMissile;
    import java.awt.geom.Ellipse2D;
    import java.lang.Thread;
    import java.applet.Applet;
    import java.awt.Graphics2D;
    import java.awt.Color;
    public class Missile
    public Missile(int myX, int myY, Applet anApp)
    x = myX;
    y = myY;
    a = anApp;
    private Applet a;
    private int x, y;
    public int getX()
    return x;
    public int getY()
    return y;
    public Ellipse2D.Double getEllipse()
    return circ;
    public void shoot()
    int myX = x;
    int myY = y;
    Graphics2D g2 = (Graphics2D)a.getGraphics();
    for(int i = 0; i < 60; i++)
    circ = new Ellipse2D.Double(myX, myY, 2 * i, 2 * i);
    g2.fill(circ);
    myX--;
    myY--;
    try
    Thread.sleep(40);
    catch(InterruptedException e) {}
    g2.setColor(Color.white);
    g2.fill(circ);
    Ellipse2D.Double circ;
    }

    the Ellipse2D.Double class has an intersects method, so use it on the adversary's missiles to see if you should terminate.

  • Looking for old Missile Command-type game

    I used to play this Missile Command clone around 10 years ago, I remember a black background and colorful bases and "missile lines". Can't remember what it was called though. If anyone knows that would be awesome.

    d. t.
    Are you looking for online play? I did a Google search for Missile Command and came up with a bunch of online Missile Command games. I was able to save a java based version as a web archive with Safari and play offline.
    I have the old Missile Command in black and white, but I got it in the OS 7 days so I don't remember where I got it.
    Shane
    1.6 ghz g5, G4 500 PDQ(Wallstreet), TiBook 867    

  • Speech Recognition stops working after a minute of nonuse

    I'm a grad student trying to keep from exacerbating my carpal tunnel and just figured out how to use the voice commands on my macbook. So far, they work great, they hear my voice, it does what I tell it to do, and I'm not constantly hitting apple+tab and apple+c and apple+v and so on, which really helps my wrists!
    BUT. If I go for more than a minute or two without using a voice command, it stops working. I can't pinpoint anything else that triggers it other than if I stop using it for a little bit while I'm reading a paper or something. The microphone is calibrated and working, the little black arrows and the blue and green bars flash on the widget like it hears me, but then it won't give me the sound that says the command was recognized and it doesn't perform the command any time I try to use it again after a few minutes of not being used. It's like the recognition part goes to sleep and won't wake up.
    If I go to the system preferences and toggle Speakable Itemst off and then on again, it starts working again until another minute or two of non-use. If I use spoken commands constantly, it will stay on for a good long while, but I'm not using it constantly that's the end of speech recognition. I really can't stop to just tell it some unneeded command to keep it awake all the time! Eventually, the computer gets confused if I turn the "speakable items" on and off too many times from the System Preferences, and it gets confused about whether or not it's turned on or off, or the widget disappears but the System Preferences panel thinks the Speakable Items is on.
    I read somewhere that other people with a newer OS have a similar problem if they don't use the default speaking voice, so I switched to Alex and restarted, and the same thing is still happening.
    I'm running 10.5.8, and using safari, word 2011, preview, nothing too crazy. My speech recognition is in "Listen only while key is pressed" mode, and like I said, works great until I stop using it for a minute or so. I'm using the internal microphone on my MacBook (dob circa 2008). Any tips on how I can actually keep my Speech Recognition useful? Thanks in advance!

    OK, I have one more question now, seems to be the same as this question which was never answered years ago:
    Speakable Commands>Application Switching -- how to delete items?
    When I click on the triangle from the speech command widget and open speech commands, there is a TON of stuff there that I'll never ever use, but these things do not appear in the Library/Speech/Speakable Items folder so that I might be able to delete them. For example, one item I'd like to turn off is just the word "Home" and the computer keeps thinking that I said "Home" instead of whatever else I meant to say. Another keeps opening iChat or Mail, when I say "open new window" or something like that. I tried clicking, control clicking, option clicking, nothing will highlight a command in the Speech Commands window so that I might delete it.
    The "Home" command only shows up when I'm using Word, in the "front window" list. However, the Application Speakable Items/Microsoft Word folder is empty. Is there some other way to get into the speakable commands list and weed out unwanted stuff?

  • ISync does not synch w/ palm

    iSync crashes while synching with palm.
    Loading “Conflict Notifier”
    Notifier 'Conduit Conflict Notifier' version 1.0.0
    Notifier Conduit Conflict Notifier OK
    Loading “Install Conduit”
    Conduit “Install” version 3.0.0
    Sync type is Install/Restore
    OK Install
    Loading “Apple”
    Conduit “iSync Conduit” version 3.0.0
    Sync type is Fast
    iSync Conduit starting 5/8/08 9:28:45 PM
    iSync Conduit: received NULL message, disconnecting... 5/8/08 9:30:35 PM
    OK iSync Conduit
    Loading “Voice Memo Conduit”
    Conduit “Voice Memo” version 3.0.0
    Sync type is Fast
    Remote database 1 name is VpadDB
    OK Voice Memo
    Loading “Photos Conduit”
    Conduit “Media” version 1.0.2
    Sync type is Fast
    OK Media
    Loading “Note Pad Conduit”
    Conduit “Note Pad” version 3.0.0
    Sync type is Fast
    Remote database 1 name is npadDB
    OK Note Pad
    Loading “Memos Conduit”
    Conduit “Memos” version 3.0.0
    Sync type is Fast
    Memos did nothing
    Loading “Memo Conduit”
    Conduit “Memo Pad” version 3.0.0
    Sync type is Fast
    Remote database 1 name is MemoDB
    OK Memo Pad
    Loading “Install Conduit”
    Conduit “Install” version 3.0.0
    Sync type is Install/Restore
    OK Install
    Loading “Backup Conduit”
    Conduit “Backup” version 3.0.0
    Sync type is Backup
    Remote database 1 name is GoLCD
    Remote database 2 name is DynDevInfo-DDIR
    Remote database 3 name is WebProV
    Remote database 4 name is Clock-PcLK
    Remote database 5 name is QueriesApp
    Remote database 6 name is TattooArtist
    Remote database 7 name is VoicePad-Vpad
    Remote database 8 name is Address Book
    Remote database 9 name is MultiMail
    Remote database 10 name is MMNotify
    Remote database 11 name is MMConduit-asc6
    Remote database 12 name is BgndService
    Remote database 13 name is Brightness-brtP
    Remote database 14 name is Calculator
    Remote database 15 name is Card Info
    Remote database 16 name is Date Book
    Remote database 17 name is Dial
    Remote database 18 name is Dialer-dilP
    Remote database 19 name is Expense
    Remote database 20 name is Launcher
    Remote database 21 name is Memo Pad
    Remote database 22 name is MyFavorite
    Remote database 23 name is Note Pad
    Remote database 24 name is PhoneLink
    Remote database 25 name is SlotDrvrPnpsApp-pnps
    Remote database 26 name is Preferences
    Remote database 27 name is Setup
    Remote database 28 name is SMS
    Remote database 29 name is Splash-splH
    Remote database 30 name is HotSync
    Remote database 31 name is To Do List
    Remote database 32 name is DefConnection2DB_enUS
    Remote database 33 name is DefConnection2DBVSeries_enUS
    Remote database 34 name is SMS Library
    Remote database 35 name is GoLCDLib
    Remote database 36 name is HardwareUtils
    Remote database 37 name is halsnd_dsplib
    Remote database 38 name is HALSndLib
    Remote database 39 name is Graffiti 2 Library
    Remote database 40 name is PhoneLib
    Remote database 41 name is MMSmartAdd
    Remote database 42 name is MMConfigFPI
    Remote database 43 name is MMWizard
    Remote database 44 name is BluetoothPnl_enUS
    Remote database 45 name is Dial_enUS
    Remote database 46 name is Dialer-dilP_enUS
    Remote database 47 name is Graffiti 2 Library_enUS
    Remote database 48 name is ATPhoneDriver_enUS
    Remote database 49 name is Phone_enUS
    Remote database 50 name is SMS Library_enUS
    Remote database 51 name is SMS_enUS
    Remote database 52 name is SerialPhoneTask_enUS
    Remote database 53 name is StdGSMDriver_enUS
    Remote database 54 name is PhoneLib_enUS
    Remote database 55 name is BluetoothPnl
    Remote database 56 name is Phone
    Remote database 57 name is ATPhoneDriver
    Remote database 58 name is Sony-ET68i
    Remote database 59 name is EricssonT68
    Remote database 60 name is Nokia6310i
    Remote database 61 name is MotorolaTP280i
    Remote database 62 name is StdGSMDriver
    Remote database 63 name is SerialPhoneTask
    Remote database 64 name is NovarraURLHistory
    Remote database 65 name is NovarraSavedPages
    Remote database 66 name is NovarraPersistenceBuffer
    Remote database 67 name is NovarraPageCategories
    Remote database 68 name is NovarraMGProperties
    Remote database 69 name is NovarraHistoryDB
    Remote database 70 name is NovarraFavorites
    Remote database 71 name is NovarraCache
    Remote database 72 name is NovarraBookmarks
    Remote database 73 name is NovarraBookmarkCategories
    Remote database 74 name is eYeS_Answers
    Remote database 75 name is country_codes
    Remote database 76 name is Queries
    Remote database 77 name is Variety Pack
    Remote database 78 name is Variety II Pack
    Remote database 79 name is Twister Levels
    Remote database 80 name is Panic Pack
    Remote database 81 name is Impossible Pack
    Remote database 82 name is Confusion Pack
    Remote database 83 name is Classic Levels
    Remote database 84 name is Classic II Levels
    Remote database 85 name is Children's Pack
    Remote database 86 name is AddressDB
    Remote database 87 name is Bluetooth Trusted Devices
    Remote database 88 name is Bluetooth Device Cache
    Remote database 89 name is DatebookDB
    Remote database 90 name is Speed1.0_dilP
    Remote database 91 name is ExpenseDB
    Remote database 92 name is ConnectionMgr50DB
    Remote database 93 name is NetworkDB
    Remote database 94 name is PhoneRegistryDB
    Remote database 95 name is SolitaireFreeData
    Remote database 96 name is ToDoDB
    Remote database 97 name is locLCusLocationDB
    Remote database 98 name is Drug
    Remote database 99 name is MMIDCache0
    Remote database 100 name is MMIDCache1
    Remote database 101 name is MMIDCache2
    Remote database 102 name is MMIDCache3
    Remote database 103 name is MMIDCache4
    Remote database 104 name is MMIDCache5
    Remote database 105 name is MMIDCache6
    Remote database 106 name is MMIDCache7
    Remote database 107 name is MultiMail Messages
    Remote database 108 name is MultiMail Disconnected
    Remote database 109 name is MultiMail Attachments
    Remote database 110 name is MultiMail Part Plus
    Remote database 111 name is Sample Cards 2.0
    Remote database 112 name is WordToGoFonts
    Remote database 113 name is SlideshowFonts
    Remote database 114 name is Solitaire Pack 1 Saved Games
    Remote database 115 name is Address Book Plugin
    Remote database 116 name is World Information
    Remote database 117 name is Web Acronyms
    Remote database 118 name is US Mint 50 State Quarters
    Remote database 119 name is Stain Removal
    Remote database 120 name is Month Information
    Remote database 121 name is Computer File Extensions
    Remote database 122 name is Clothing Size Conversion
    Remote database 123 name is Anniversary Gifts
    Remote database 124 name is Airport Codes - U.S. Only
    Remote database 125 name is PMHDB
    Remote database 126 name is PMNDB
    Remote database 127 name is Palm Reader and E-Book Studio
    Remote database 128 name is English_USA
    Remote database 129 name is eYeSPackBasic
    Remote database 130 name is eYeS_Person
    Remote database 131 name is Questions
    Remote database 132 name is 1-Get Started.PDB
    Remote database 133 name is 2-Sample File.PDB
    Remote database 134 name is Adobe Reader
    Remote database 135 name is QuickPlanner
    Remote database 136 name is Bubblewrap
    Remote database 137 name is BlueBoard
    Remote database 138 name is BlueChat
    Remote database 139 name is Pilot Mem
    Remote database 140 name is dotter
    Remote database 141 name is SheetToGo
    Remote database 142 name is DocsToGo
    Remote database 143 name is WordView+
    Remote database 144 name is Photos-Foto
    Remote database 145 name is Monopoly
    Remote database 146 name is TrivialPursuit
    Remote database 147 name is Klondike
    Remote database 148 name is Solitaire by Handmark
    Remote database 149 name is Mash
    Remote database 150 name is HeartsOS5
    Remote database 151 name is HexIt
    Remote database 152 name is MobileDB Lt
    Remote database 153 name is MonoPalm
    Remote database 154 name is PrintMe Exg Lib
    Remote database 155 name is Parking Lot
    Remote database 156 name is Tour
    Remote database 157 name is RoadLingua
    Remote database 158 name is RealOne
    Remote database 159 name is Ear Trainer
    Remote database 160 name is Black Jack
    Remote database 161 name is SlideshowToGo
    Remote database 162 name is inComing
    Remote database 163 name is Missile Command
    Remote database 164 name is Petra-Luna
    Remote database 165 name is Vexed
    Remote database 166 name is Socialeyes
    Remote database 167 name is graffiti 2 Demo
    Remote database 168 name is PacMan
    Remote database 169 name is GemHunt
    Remote database 170 name is PhoneLink
    Remote database 171 name is Puzzle
    Remote database 172 name is SolFree
    Remote database 173 name is AddressCitiesDB
    Remote database 174 name is CitiesDB
    Remote database 175 name is AddressCompaniesDB
    Remote database 176 name is AddressCountriesDB
    Remote database 177 name is BtExgLibDB
    Remote database 178 name is SMS Lib data
    Remote database 179 name is SmsDB
    Remote database 180 name is RealMP3FF
    Remote database 181 name is RealMP3Codec
    Remote database 182 name is RealRMFF
    Remote database 183 name is RealRMCodec
    Remote database 184 name is RealDRM
    Remote database 185 name is RealAACCodec
    Remote database 186 name is CardEngine Library
    Remote database 187 name is DSLib
    Remote database 188 name is GraphicsLibrary
    Remote database 189 name is libmal
    Remote database 190 name is MoHiSp1Lib
    Remote database 191 name is MathLib
    Remote database 192 name is RealLib
    Remote database 193 name is JpegCommonLib-jpgC
    Remote database 194 name is JpegDecodeLib-jpgD
    Remote database 195 name is JpegEncodeLib-jpgE
    Remote database 196 name is psysLaunchDB
    Remote database 197 name is Graffiti ShortCuts
    Remote database 198 name is MobileDBCatalog
    Remote database 199 name is NBS Translation Table
    Remote database 200 name is Photos-Foto_enUS
    Remote database 201 name is Tour_enUS
    Remote database 202 name is RealOne_enUS
    Remote database 203 name is PhoneLink_ptBR
    Remote database 204 name is PhoneLink_itIT
    Remote database 205 name is PhoneLink_frFR
    Remote database 206 name is PhoneLink_esES
    Remote database 207 name is PhoneLink_enUS
    Remote database 208 name is PhoneLink_deDE
    Remote database 209 name is UPDD
    Remote database 210 name is ScptPlugin
    Remote database 211 name is System MIDI Sounds
    Remote database 212 name is Saved Preferences
    Remote database 213 name is AddressStatesDB
    Remote database 214 name is AddressTitlesDB
    Remote database 215 name is VendorsDB
    Backed up Bluetooth Trusted Devices.pdb
    Backed up Bluetooth Device Cache.pdb
    Backed up Saved Preferences.prc
    OK Backup
    Loading “Conflict Notifier”
    Notifier 'Conduit Conflict Notifier' version 1.0.0
    Notifier Conduit Conflict Notifier OK
    Last sync time and PC ID updated on handheld
    HotSync Complete 5/8/08 9:30:41 PM
    -------------------------------------------------------------------------------- --

    Welcome to Apple Discussions.
    Know that for questions such as this in the future, the Search Discussions feature is your friend. You have stumbled onto the single most frequently encountered Palm device problem under Mac OS X 10.5 and later releases. You can workaround this issue by…
    • eliminating Groups in your Address Book
    • turning off Contacts to synchronize calendars, the Calendars to synchronize contacts
    • ditching the iSync and iSync Conduit approach completely and instead using the Missing Sync for Palm OS

  • Speech Recognition stops paying attention.

    hey all--
    I was having trouble with my speech recognition (as well as a few other things) and so I finally deleted and reinstalled my system out of frustration. There are a lot of commands in the voice commands I don't want/use so I took some of them out or changed their wordings. I am also adding ones of my own.
    My main trouble is that after a little bit, or 4-5 spoken commands, it stops listening to me. The green indicators indicate that it is hearing me just fine, but suddenly I can say "computer" all I want and it won't do a darn thing. If I open speech prefs, turn speakable off and back on, that'll fix it for another 4-5 commands. I am not in a noisy environment. It is very irksome!!
    ~G

    OK, I have one more question now, seems to be the same as this question which was never answered years ago:
    Speakable Commands>Application Switching -- how to delete items?
    When I click on the triangle from the speech command widget and open speech commands, there is a TON of stuff there that I'll never ever use, but these things do not appear in the Library/Speech/Speakable Items folder so that I might be able to delete them. For example, one item I'd like to turn off is just the word "Home" and the computer keeps thinking that I said "Home" instead of whatever else I meant to say. Another keeps opening iChat or Mail, when I say "open new window" or something like that. I tried clicking, control clicking, option clicking, nothing will highlight a command in the Speech Commands window so that I might delete it.
    The "Home" command only shows up when I'm using Word, in the "front window" list. However, the Application Speakable Items/Microsoft Word folder is empty. Is there some other way to get into the speakable commands list and weed out unwanted stuff?

  • Error running MATLAB function on LabVIEW (it works on MATLAB)

    Hello,
    I want to run a game (that I did not write) in LabVIEW which is all programmed using MATLAB. It runs on MATLAB but I have no clue why it does not run on LabVIEW. Please take a look at the attachments to see the error, VI and game.
    Note: I tried running other simpler .m functions that also call outside functions in the same folder using the same VI and they work so it is not the MathScript Node. Also, I already changed the search paths for the MathScript Node therefore the root of the problem is not there either.
    Thank you!!

    Hello,
    When using the MathScript RT Node you should enter your m code into the Node itself.  Have you tried taking your code from the Missile Commander file and putting it in the node?  Are you using any funtions that are on the unsupported list?
    Below are a few resources on getting started with the MathScript Node.
    Getting Started with the MathScript RT Module
    LabVIEW Help: MathScript Node
    MathScript RT Module Functions
    MathScript Functions Not Supported in the LabVIEW Run-Time Engine (MathScript RT Module)
     

  • 10.0.1 causes 'Command +' to open Widget Manager

    This only started happening after the 10.0.01 update. 'Command -' works as it should.
    Anyone else experiencing this isue?

    Not happening here. What's Widget Manager? Is it something you set in system preferences?
    What keyboard is this? Extended? What +? On the keypad or next to delete?

  • Give commands to MUSE widgets inside EDGE is possible?

    Hi. I love designing with Muse and Edge. Wouldn'it be just great if I could controll Muse widgets inside my Edge elements? I tried tracking the Muse document and calling the functions inside Edge using jquery but it didn't work. Is there a way for this?
    Any help would be appreciated.

    While multiadressing may get you "synchronous" enough it's by no means a guarantee that both instruments will really react equally fast when receiving the trigger command over the GPIB bus. For true hardware synchronized operation you will have to use the trigger bus on the back of the device to connect them together, select one of the 4 trigger lines to use and set them up correctly on both instruments, one as input and one as output and then send the trigger command to the device that drives the trigger line. That will give you synchronisation to microseconds accurate. GPIB multi addressing will be in the range of several milliseconds and sequential GPIB in the range of maybe 100 milliseconds. 
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • HT2254 is there a way to install mac widget using terminal command?

    Is there a way to download and install mac widget using ther terminal command instead of using widget manager?
    I need to install on a large number of macbooks, this will save me a lot of time...
    Thanks,
    HB

    I am not sure if defaults write will do the install:
    http://ss64.com/osx/defaults.html

  • Command center widget

    The Command center widget disappeared from my home screen on my droid turbo.  I found it in apps, disabled it then re-enabled it, and it still won't reappear.  Any idea of how to get it back?

    Long-press on an empty space on your home screen; you should then see options at the bottom of the screen, tap Widgets.  Scroll until you see Command Center, then long-press it and drag it to where you want it on your home screen, then let go.

  • Droid command center widget

    My droid command center widget has disappeared, how do I get it back?

        corrie67,
    Sorry to hear that the app vanished on you. On most devices you would touch the app launcher on the bottom center of your home screen, select widget in the upper left and the touch and drag the widget back to the screen you want it on. Or touch and hold the home screen until you get a pop-up and select add widget and select the command center widget. We can provide specific instructions for your phone. What model Droid do you have?
    BrianP_VZW
    Follow Us on Twitter @VZWSupport

  • Command plus launches widget panel?!

    There are a few things I love about Lion, but there are a few liberties the devs took that perplex and annoy me.
    The biggest little issue I've run into is the fact that Apple has commandeered the "Command Plus" shortcut and tied it to the Dashboard Widget panel.
    W T F Apple? Really?! EVERY application in the history of keyboard shortcuts has used that very command to zoom in.
    As a designer (and the core userbase of your decreasingly professional operating system) I spend much of my day zooming in and zooming out.
    I have many software titles that make use of this shortcut for the same function and it would be a major hassle to change the keybindings for all of these.
    How can I turn off the widget panel (and for that matter, how can I change iWork's zoom to use cmd + and cmd -?)
    Thanks.

    danfromgilbert had the right answer for me. In the Mission Control panel, turn off "Show Dashboard as a space", then you must actually USE Mission control (for me it's set to four finger swipe up) the select another app or something, and only then will Command-+ be restored to zoom in.
    This was the weirdest thing because I've been using Lion since the beginning and never had this problem. It only changed when I upgraded from Adobe CS4 to Adobe Creative Cloud (CS6). Apparently CS4 apps (Photoshop, Illustrator) had somehow been overriding this weird new preference so I didn't notice Apple had changed it. As noted above, this is a completely stupid decision by Apple, it's been a de facto standard key combo for just about every app since the beginning of the Mac, and something thousands to millions of people literally use hundreds if not thousands of times every day. And who the heck even needs a keyboard shortcut for "Add more widgets"?? Really Apple? Wow, unbelievable.
    Anyway, thanks again Dan for finding an easy solution.
    EDIT: this will remove Dashboard from Mission Control, gestures, Command-Tab switching, and the dock. Which is fine with me, but it does work. You can just re-add it to the Dock after you make the preference mod if you need to use it.

  • Droid Turbo temperature color bar on Command Center widget

    For those wondering what temperatures coincide with what colors on the Droid Turbo Command Center widget (in other words, the color bar just above the temperature on the widget and the corresponding color banner when you tap it for details), a chart can be found here:
    Command Center/Weather Color Code . All Discussions (365) . DROID TURBO by Motorola . Forum . Motorola Owners' Forum

    Interesting. Although it would be more helpful if the pre-installed widgets on the various phones would update themselves more quickly after a data connection is established instead of having to open the application and forcing a refresh.

  • What is the URL commands for pre-filling a widget

    I want to enter fields for the singer

    You're going to need to explain your question better. In the mean time though i think the REST api documentation may  be of use:
    REST API — Document E-signature Software — EchoSign

Maybe you are looking for