Precision of controls

in the program i am writing, i have many
numerical controls. instead of attempting to
change every one to a different precision, i
would like to hard code it. however, the
precision on each control may change from control
to control. is there anyway to set an auto
precision...where the program keeps whatever the
user enters?
thanks so much for any help
René
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.

I can see you saving a little bit of time by going with SGL, but I wouldn't expect it to be truely measurable.  And then you also loose accuracy when going to SGL.  Depending on what you are doing that may be acceptable.  My other concern is, as GerdW has already stated, which libraries are you using?  Many of them are only written for DBL.  The coersion is likely more expensive than the possible gain from using SGL.
With that said, if you have scripting enabled, you can use a property node to set the representation of a numeric control/indicator.  There is also a VI in the Application->VI Scripting palette called Traverse for GObjects.vi that you will find useful.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines

Similar Messages

  • Is LabView good at precise motion control for things like running an assembly line with lots of cars moving about?

    Is LabView good at precise motion control for things like running an
    assembly line with lots of cars moving about? Precise speed and
    acceleration control? Safety interlocks?
    Thanks for any help you can offer!
    Sent via Deja.com http://www.deja.com/
    Before you buy.

    If you are a long time Nokia/Symbian fan then you will Know full well that Nokia phones ALWAYS improve with software updates, Symbian will not be abandoned and will not be replaced by WP7, it will continue to evolve and improve, as will the handsets. Anyone who desires or wants a different OS should try one, because it's a free world, but really, the 'perfect' OS doesn't exist, and Symbian suits me for now and I will rely on Nokia to keep it up to date, and reliable.
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Precise trajectory control with PCI Step Card and triggered buffer

    Hello,
    I'm trying to use PCI STep 4OX card for precise trajectory control. Every 200ms I'm putting motion tasks into buffer and I'm using external 10ms trigger input for this buffer. For duration about 100ms per one tick of trigger is fine, but I need make change in position every 10ms and it seems unusable.
    Where is the problem? What is maximal duration of trigger puls, what max freq. of this pulses ... etc.
    Thank you for your answers and suggestions,
    Vaclav Maixner
    System Engineer

    The board you are using is quite old and most probably will not give you the perfomrance you need. I would recommend upgrading your board to one of the 7334 series motion controllers that will surely giveyou that kind of performance throuogh their preemptive start fucntionality.

  • Precise height control using motor and a 10turn pot

    Hi, In my project, I have to set an object to user set height precise to millimeter. The setup is a vertical guiding shaft on which the object is moved up or down with a steel wire connected to a motor. The height is sensed by a 10 turn pot that gives different voltages for different heights.
    Basically i'm reading the voltage from pot (Analog input- 1k sampling buffersize-20)
    depending on whether object should move up or down turn the motor in required direction
    continuously reading height voltage and when desired height is reached, switch off the motor through relay (digital output)
    this is working except the system is not precise to the millimeter as required..few centimeter off
    there is some delay I'm unable to understand..- either in acquiring analog voltage or stopping the motor 
    In the program, i'm averaging height voltage since it was not stable. I tried using some multiplication factor and constants to adjust for the delay...it is not consistent... 
    suggestions and advices are very appreciated..
    Thanks
    Thanks...
    Pallavi
    Attachments:
    height control.vi ‏263 KB

    Hi Palchan,
    There are quite a lot of things wrong with your vi. The first thing i noticed was that on each iteration you are inserting an element into an uninitialised array. This is causing the array to get larger and larger, yet you only need the last 10 values. Insert into array causes LabVIEW to constantly re-size the array and as such allocate new memory to store it, this is very time consuming. As the array gets larger and larger it will become slower and slower. As you only need to store ten values then you should implement a circular buffer. I actually have written one of these that will do this job for you and will attach it at the bottom.
    Secondly, why are you using local variables for everything when you can simply use the terminals? The algorithm you are using to calculate whether to go up/down or stop can also be simlified (i will attach an example of how that incorporates the circular buffer for you to use below).
    Looking at your DAQ express vi it seems as though you have set it up at a sampling rate of 1Khz and you read 20 samples per iteration but you convert the dynamic data type to read only the last read data, is this your intention. If you set it to convert to a 1D array you will read the last 20 reads instead of just the 1?
    You are using a sequence structure that is not needed. Just use the error cluster terminals to force order of execution.
    As you are averaging your readings then you will inherently get a delay depending on how large the data set is your averaging. The bigger the data set the bigger the delay. Obviously the speed of the motor will also effect the error. How noisy is your input? Have you tried using a simpe RC filter? or even a software filter to try and smooth out the noise.
    Another point. As you are only averaging the last read value instead of all the 20 available, and you are averaging over 10 reads then it will take approx 500ms for you to get your required reading. This is because you are reading 20 samples at 1kHz, which should cause your loop to iterate at about 50ms. Why dont you instead get all the 20 last elements and instantly average these, this should average out the noise in these 20 elements and you may be able to get your reading in 1 iteration.
    I have attached a simplified version of what you are trying to achieve to better explain. I have attached a circular buffer. I believe you might not actually need this. On the vi i have shown how to use the circular buffer if needed but also how to get the averaged value of the whole 20 elements available every iteration. I havent been able to test this as i dont have any of the hardware so there may be a couple of bugs for you to iron out but it will hopefully point you in the right direction.
    Rgs,
    Lucither.
    "Everything should be made as simple as possible but no simpler"
    Attachments:
    Height control.zip ‏116 KB

  • Strange appearance of numeric control

    Hi....
    I encounter a strange appearance of a numeric control, see the two screen shots below.
    Background: on a tabpanel, two attributes of several numeric controls are changed programmatically if I set a flag using a check box located on a different tab panel:
    - the control mode is switched from indicator to hot
    - the precision is changed from 6 to 4 digits to compensate for the space of the numeric arrows
    These changes are applied to three controls, but only the first (top most) behaves unexpected, while the others are fine...
    A) If both attributes are changed, the two upper controls look like this:
    that is, the left most characters of the upper control are somehow overlapping, giving the impression of a fat O.
    B) If only the control mode of the upper control is changed to hot, the following result is obtained:
    This makes it more obvious that somehow the two left zeros of the upper control are squeezed together.
    Interestingly, if I operate the upper control by clicking on the up/down arrow, the resulting display (1.0000E-3) is ok.
    I was very much afraid of posting this mystery which could well be a stupid error of mine, but being unable locating a problem in the code I thought it might possibly be related to the tab panel problem reported here
    Comments, suggestions?
    Thanks, Wolfgang
    Solved!
    Go to Solution.

    Hi Markus,
    thanks for looking into it.
    I have slightly modified the example which now even shows the more dramatic case A.
    Concerning your reply: I disagree with your guess!
    1a) The control is large enough, actually I am setting a precision of 4 to have the number short enough
    1b) If a number is too long, the usual behavior of a control is that you see only part of the number (or text for string controls), while here digits overlap.
    2) The control behaves properly if you change the order of the function calls, i.e. reverse the order of precision and control mode
    3) The control behaves properly if no tabpanel switch is involved: if you put the checkbox on the same tabpanel as the numeric control, everything is fine. This is actually how I found out, because in my original code the checkmark was a menu item until I decided to change it.
    So my guess is that the visual update sequence of the control/tabpanel is flawed.
    Wolfgang
    Attachments:
    bug.zip ‏6 KB

  • MSI Workstation 2D/3D Animation Short Film Contest

    OBJECT :MSI Workstation 2D/3D Animation Short Film Contest
    THEME:From Dream to Design –What is your dream? Life dream, dream journey, dream job, or a day dream? MSI Workstation hopes accompany you to reach your dream! Now, put MSI Workstation logo & at least one product photo in your animation work to tell us “what is your dream?”. Everyone will have chance to reach his dream and to win big prizes! Good luck and good dream!
    Download MSI logo & product photos
    ELIGIBILITY:Open to all creative animation fans, students and professionals. We are on the lookout for daring ideas, new pictures, surprising stories and for anyone who is full of creative ideas, dare to pursue their dreams and make it all possible.
    ACTIVITY:15 May 2014 to 28 July 2014
    DEADLINE :28 July 2014 02:00:00 GMT
    Event Website:http://event.msi.com/nb/2014/short_film/
    PRIZES :
    3D Film Award
    1st Place- 3D Film Award
    MSI Workstation - GT70 2OK
    Reference Marketing Value (USD): $2599
    "MSI GT70 2OK workstation laptop certified by AutoCAD & Solidworks. Equipped with the latest NVIDIA Quadro K3100M graphics. GT70 2OK workstation is your best and most efficient tool to work on animation designs and visualization artworks. (*marketing name may change)"
    2nd Place- 3D Film Award
    EIZO ColorEdge CX241
    Reference Marketing Value (USD): $1599
    The CX241 comes with a built-in SelfCorrection sensor that automatically maintains your color settings so you can enjoy its 99% Adobe RGB coverage, brightness uniformity, and other features for creative work.
    3rd Place- 3D Film Award
    Wacom Tablet Intuos Pro Medium
    Reference Marketing Value (USD): $349
    Designed for creativity - This innovative pen tablet combines Wacom’s finest pen capabilities with intuitive multi-touch gestures and gives you the precision and control you demand when using professional software and time-savers to speed your workflow.
    2D Film Award
    1st Place- 2D Film Award
    CrazyTalk Animator 2 Pipeline + Essential Content Library 1
    Reference Marketing Value (USD): $2299
    Include CrazyTalk Animator 2 Pipeline + Essential Content Library 1. CrazyTalk Animator 2 provides an exciting new approach to traditional 2D animation with innovative new tools that allow users to apply 3D motions to 2D characters. New powerful tools have opened new possibilities for freely editing 2D motions and viewing them from any angle with a single click. Combined with functional features like facial puppet and auto lip-sync, it has become the most creative tool for 2D character animation.
    2nd Place- 2D Film Award
    EIZO Foris FS2332
    Reference Marketing Value (USD): $699
    "The FORIS FS2332 is a 23-inch home entertainment monitor with an IPS panel, LED backlight, and EIZO's Smart Resolution technology that make it optimal for watching videos, photo editing, and reading digital contents.The IPS panel has 178° viewing angles and exhibits minimal change in contrast and hue when viewed from an angle. The LED backlight reduces the monitor's power consumption and does not contain mercury. "
    3rd Place- 2D Film Award
    Wacom Tablet Intuos Pro Small
    Reference Marketing Value (USD): $249
    The Intuos Professional Pen & Touch Small is the ideal small-format choice for anyone with a serious creative passion in photography, art or design. The streamlined size packs a lot of power into a small desktop space and combines Wacom’s finest pen capabilities with intuitive multi-touch gestures.
    Jury Favorite Award
    Jury Favorite Award
    iClone Animation Pipeline + iClone Essential Content Library 1
    Reference Marketing Value (USD): $3099
    The iClone Animation Pipeline pack includes iClone5 PRO, 3DXchange5 Pipeline,and Mocap Plug-in (software). The iClone Animation Pipeline is a revolution for CG animation and game development. This toolkit contains a complete set of animation tools for quick character generation and smart motion editing, and is supported with an extensive on-line content marketplace. By utilizing intuitive real-time character motion tools alongside Autodesk’s Human IK technology, iClone makes it easy to convert characters and retarget both facial and body animations to your native working environment via standard FBX, BVH and OBJ formats. iClone also supports basic motion capture with Microsoft’s Kinect sensor, which gives you the raw motion data that saves you time and helps to turn your PC into a powerful production studio with minimal cost and increased production speed
    Final Winner of MSI 3D Short Film Animation contest coming out!!! Congratulations to all winners and your great works!
    MSI will contact you for prize sending. MSI and Reallusion select together the winners by judging the Story Concept and Content- Originality & Creativity(40%), Techniques- 3D techniques, Character & Scenes Design (30%), Brand Messages Embedded Method (20%), Music and Other Design Elements (10%)
    http://event.msi.com/nb/2014/short_film/winner.html

    Quote from: katapultax10;110785
    I submit my entry, does it take in account ? on the contest page it say it is active until 1 september, but on the forum it says it is active until "" DEADLINE :28 July 2014 02:00:00 GMT "" can any admin/administrator reply to see if I`m in ? I call my entry ""MSI - From Ruin to Success "" and it can be watched here : https://www.youtube.com/watch?v=A49PI2MSdQM.
    It still uncpmpleted I wait to render the entire project, then It still  need a little bit of editing (that is not the problem ..) (render time take a lot especialy on my dual core machine :| :mad:)
    Best regards,
    Sasu Catalin Iulian
    Dear katapultax10,
    Thanks for your submission. Your work has been uploaded on the site. thanks!

  • BlackBerry 10.2 OS Begins Roll Out

    BlackBerry 10.2 OS Begins Roll Out — New Reasons to Love your BlackBerry 10 Smartphone, Big and Smal
    From the Inside BlackBerry blog:
    BlackBerry 10.2 OS introduces new features like BlackBerry Priority Hub, BlackBerry Natural Sound, and BBM now in any app that will help you be more productive and stay better connected when it counts. Plus, with hundreds of new refinements, BlackBerry 10.2 makes the things you do every day faster and easier. Here are just some of the new features you’re going to love in BlackBerry 10.2:
    BlackBerry 10.2 Highlights:
    Priority Hub
    Keep your important conversations closer than ever with the new Priority Hub. Always at your fingertips, Priority Hub learns what conversations are most important to you and automatically puts those messages at the top of your inbox, helping you to stay focused on the critical items. On top of that, the new attachment view helps you organize files and documents across your messaging accounts and within specific message threads.
    BBM Video with Natural Sound
    BBM Video has always allowed you to have a live face-to-face conversation with anyone, anywhere. Now, with Natural Sound, BBM Video and Voice conversations between BlackBerry 10 smartphones sound more natural and realistic. It’s the next best thing to being in the same room. We’re able to accomplish this because BlackBerry Natural Sound captures a wider sound spectrum, so you can hear subtle nuances that are lost in most cellular calls.
    Instant Previews of BBM, SMS and Email from any app
    Stay in the flow. BBM, SMS and E-mail messages now find you no matter what you are doing on your BlackBerry. See email, BBM and SMS message previews appear in any app – you can even respond to your BBM or SMS messages in any app or go to the BlackBerry Hub with a single swipe to respond to your email. Perfect for keeping the conversation going while you browse the web, watch a video, or use other apps. Of course, you can tailor these notifications to the way you work to ensure you’re only notified as much as you want to be.
    BlackBerry Keyboard
    The smartphone keyboard that knows your next move just got even smarter. With personalized next word suggestion, auto-correction, and the distinctive BlackBerry keyboard layout, we’ve built this keyboard to help you have conversations with speed and accuracy. And on the BlackBerry Z10 and BlackBerry Z30, improved audio feedback with distinct tones for specific keys like backspace, and shift helps you type more confidently because you’ll have more reassurance you’ve hit the right key.
    Copy and Paste Enhancements
    Copy and paste just got easier. Not only does BlackBerry 10.2 offer more precise cursor control, text selection is now easier. Once you select text, a pop up menu gives you editing options and direct sharing with BBM, Facebook and Twitter – so you can quickly copy, paste and share
    Faster, Easier Sharing
    BlackBerry 10.2 learns how you share and who you share with, helping you reduce the number of steps and amount of time it takes to get your files, photos, or documents to where they need to go. Touching “share” in any app provides suggestions on who and how to share your files based on how you’ve shared in the past, and the feature only gets smarter the more you use it.
    Lock Screen Notifications
    When the red light on your BlackBerry 10 smartphone is flashing, you don’t have to unlock the phone to see your message. Notifications on the lock screen now let you take a peek at the latest email, text, BBM, or notification to see if that’s the message you’ve been waiting for or one that can wait a while. You can customize which accounts appear on the lock screen and scroll over the icons to display the sender and subject line.
    Reply Now
    Reply Now lets you respond to incoming phone calls, even when it’s not a good time to answer the phone. Easily send a response through BBM, SMS or email – choose from a list of standard automated responses or respond with a personalized note. Perfect for ensuring that important contacts are always given your attention.
    Calendar Enhancements
    BlackBerry Calendar now comes with an ‘I’m running late’ function so you can instantly let meeting participants know if you’ll be late. You can even specify a new time in your notification. And, with a redesigned interface that makes adding an event easier, managing your time is simple.
    BlackBerry 10.2 OS gives you a lot of new reasons to love your BlackBerry 10 smartphone, and we haven’t even mentioned the updates to Docs to Go, a new BlackBerry Hub icon, camera enhancements—but the best way to experience all BlackBerry 10.2 has to offer is to try it for yourself. Remember to back up before updating
    BlackBerry OS 10.2 is expected to start rolling out in the following regions pending carrier availability:
    Africa: Starting this week
    Asia Pacific: Starting this week
    Canada: Starting this week
    Europe: Starting this week
    Latin America: Starting in November
    Middle East: Starting this week
    US: Starting this winter
    How to update to BlackBerry v10.2
    When the update becomes available on your carrier, here’s how you can update for free:
    To update your BlackBerry smartphone to BlackBerry 10.2 software, look for the alert in the notifications section of the BlackBerry Hub. You can also check for software updates through the System Settings menu and selecting Software Updates. The download will happen in the background, so your information remains safe and you can continue to use your smartphone as it downloads. As always, we recommend you make a current backup of your BlackBerry 10 smartphone. For more information on how to update your BlackBerry 10 smartphone, visit http://www.blackberry.com/update
    Be sure to let us know what you think in the comments below.
    *Not all carriers will be releasing this update.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

    The unlocked part really doesn't come into play.
    It's controlled by the SIM card in the device, and by removing the SIM card you might be able to upgrade, per the directions here:
    How to Reload your Blackberry10 OS
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Professional Calibration for the Powerbook Pro with LED Monitor

    This is what I have discovered: The new LED monitor/screen is a better technology for graphics pros because it's brighter, doesn't need to warm up like CRT and LCD, and it's more efficient. I have also discovered that the current Powerbook Pro with LED is not possible to calibrate with a spyder-type device because the computer itself doesn't allow the user to control overall R G and B levels at all...so as to achieve a prcise initial white point setup. Once RGB levels are balanced, only then can a spyder with it's assoc software continue it's recordings with precision. Other problems exist: Apparently the graphics cards in the Powerbook Pro (I have the newest machine, bought Nov 2008, with LED screen) are not able to permit any software (like Monaco Optix) from adjusting the brightness or color levels. As well, to my knowledge, there are not currently any spyders with software which offers LED as an option initially. I tried setting it to LED and LCD with my LED monitor, just to see the difference....and there was a huge one...so it's futile even to use the spyder if the software hasn't been developed with the LED screens in mind.
    *What I did was this: I calibrated my LaCie electronBlueIV 22" professional monitor with the sypder...using Monaco Optix and it's XR spyder. Once that was established, I opened a photoshop sample image which has a blue sky, green pine trees, green/yellow grass, a red boat and some white snowcapped peaks. Made a duplicate of it....and placed one copy on the LaCie and the other on my powerbook's monitor just below (I'm running 2 monitors at the same time). Then I went through the "professional" mode of Apple's calibrator. Unfortunately it's not an exact science as one might think. No, you can't work it back and forth until the colors match because of certain ways in which Apple has made their calibrator function. For example, you only set the degrees kelvin at the end...which totally changes all the color levels you have done up until that point....it's complicated to explain, but if you go through it once, you will understand what I'm talking about. Anyhow, so what I did was go through it all the way.....then right before saving the profile....I would go back again (you can go backwards and forwards and it keeps the adjustments you've made already...luckily) and tweak these various adjustments...all the while...*keeping an eye on my 2 images...trying to nudge my powerbook colors/brightness/contrast as close as possible to my calibrated LaCie. Finally, I used the final adjustment (D50/5500/D65 etc....) to put some more warmth into the powerbook's monitor which seems to be much too cold if you only use the calibrator and have no other monitor for reference. I set mine around 5,200......when normally I would be at 5,500 with any other monitor.
    It seems I did get my LED monitor pretty close to the values of my calibrated LaCie....as close as I could visually...considering, to my knowledge, there is no current device/software that will calibrate this LED monitor. We're waiting!!
    *Just a friendly note to Apple*
    Dear Apple,
    For years you are aware that it is the creative professionals (photographers, graphic designers, visual artists, printers, architects, etc...) who have been the loyal backbone of your small market share. We have been the ones investing and reinvesting in Apple computers and peripherals since the beginning...before the ipod and the iphone when all of the other yahoos jumped onboard. Also please understand...we love the new generation of powerbooks but we're tired of having to drag around an extra monitor to insure correct colors for printing/color-matching. I'm a professional photographer who is always traveling internationally...and away from my calibrated monitor in my office. Yet, many times I have to retouch on the go and get the images to my clients..and it's just not possible to work on a calibrated monitor at these moments. Yet my work is precise work and the color values are critical to my clients in the world of fashion and beauty.
    Realizing this point.....knowing your core clients are concerned with critical color values....why is it that you continue to create portables with absolutely no precise color controls?!!!!!!!! Would it be so difficult to add a utility which allows the user to digitally control RGB levels, contrast, and brightness (withe their associated numeric levels, (for example: brightness=78.3%.) As well, your own calibration assistant..."professional" mode??? HARDLY. Why not build onto this model with another mode...let's call it "super professional" mode (lol) which allows us to access overall RG&B....as well as brightness and even contrast???
    That's what I know at this stage. If anyone has any advice which adds to what I have said, or maybe someone can educate me with a more accurate way to calibrate my monitor....I'm all ears...and I'm sure I'm not alone in this quagmire.
    S,
    Lawrence

    I've had the same concerns about the lack of any monitor controls (unless there's something I'm missing), but afraid I don't have any answers myself yet. Just wanted to ask do you mean "Powerbook Pro" or are you talking about a MacbookPro?

  • Can't install Flash Player 11.8; also crashes in Google Chrome

    Hello!
    I'm trying to update to Flash Player 11.8 within Google Chrome, but am unable to. I know Chrome automatically updates its internal version of Flash, but this didn't happen with the latest version. I have tried disabling the internal version and installing the external application, but it doesn't work. I can download the program just fine. When I go to install it, I click Run and nothing happens. Also, the installer file disappears from my downloads folder after I click Run.
    Also, when I try to run anything having to do with Flash in Chrome, the plugin crashes. I have tried many of your suggestions (enabling the NPAPI version and disabling the PPAPI version, uninstalling the whole program, disabling Trend Micro Internet Security 2012, disabling SuperANTISpyware, along with reinstalling (which also crashes as described above)). This only happens on one laptop and I know the settings between my two laptops are the same. I'm also getting a message about having to log into Windows as an Administrator even though I've already done so.
    Specs for the laptop with issues:
    Late 2011 Macbook Pro
    15.4-inch (diagonal) LED-backlit glossy display (1440 x 900)
    AMD Radeon HD 6770M graphics processor with 1GB of GDDR5 memory
    Intel HD Graphics 3000 with 384MB of DDR3 SDRAM shared with main memory
    Automatic graphics switching
    Full-size backlit keyboard with 78 (U.S.) keys, including 12 function keys and 4 arrow keys (inverted “T” arrangement)
    Multi-Touch trackpad for precise cursor control; supports inertial scrolling, pinch, rotate, swipe, three-finger swipe, four-finger swipe, tap, double-tap, and drag capabilities
    2.4GHz quad-core Intel Core i7 processor with 6MB shared L3 cache
    8GB (two 4GB SO-DIMMs) of 1333MHz DDR3 memory
    750GB 5400-rpm Serial ATA hard drive (split into two partitions of 375GB each)
    OS X Mountain Lion and Windows 7 Professional 64-bit SP1 (installed via Bootcamp)
    Google Chrome 28.0.1500.72
    The version of Flash Player installed on here is 11.8.800.97 (PPAPI). I current have this disabled.
    I'm not sure how to fix this issue as the internal Flash installation for Chrome was stuck at 11.7 and would not update. I would really love to get this to update and work properly as I'm tired of seeing the "new version of Flash Player available for install" popup when I boot up the computer. Any help would be greatly appreciated. Thank you!!!

    raptorsama wrote:
    Just trying to figure out why it's not working so I don't have to switch OS's all the time. ^^;;
    That IS a pain, isn't it?
    http://productforums.google.com/forum/#!topic/chrome/inEvyXAFD2Y
    That link tells how to keep your bookmarks and passwords when reinstalling. I'd say save them per the instructions, uninstall Chrome altogether, and redownload it. It should have the updated version of Flash in it. If not, download the Adobe Flash Player installer directly by clicking the following link.
    Flash Player Plug-in (All other browsers)

  • Macbook Pro 15" Retina Display for $900??!!

    Thinking of buying a Macbook pro 15" Retina from a seller online through local ads. She is selling it for $900 brand new in box, under warranty and everything. Payment goes though Amazon Payments..is this legit or does it seem fishy?
    This is what is listed on the ad:
    Here is a brief summary about the laptop:
        • Processor: 2.6 GHz Intel Core i7 (Quad-Core) with 6MB shared L3 cache (Turbo Boost up to 3.6GHz),
        • Memory: 8GB (two 4GB SO-DIMMs) of 1600MHz DDR3L SDRAM; supports up to 16GB,
        • Display: 15.4-inch 2880-by-1800 resolution Retina Display (LED-backlit display with IPS technology),
        • Graphics: Intel HD Graphics 4000 and NVIDIA GeForce GT 650M with 1GB of GDDR5 memory with automatic graphics switching,
        • Video: Built-in 720p FaceTime HD Camera,
        • Audio: Stereo speakers with subwoofers, omnidirectional microphone, audio line in minijack (digital/analog), audio line out/headphone minijack (digital/analog),
        • Hard disk drive: 512 GB Flash Storage,
    • Ethernet: Built-in 10/100/1000BASE-T (Gigabit),
        • Built-in AirPort Extreme Wi-Fi (based on IEEE 802.11n draft specification); built-in Bluetooth 4 + EDR (Enhanced Data Rate) wireless technology,
        • Input/Output: Apple Remote; full-size keyboard; Two Thunderbolt port digital video output (up to 10 Gbps), one HDMI port port (up to 800 Mbps), two USB 3 ports (up to 5 Gbps), SDXC card slot,
        • Trackpad: Multi-Touch trackpad for precise cursor control; supports inertial scrolling, pinch, rotate, swipe, three-finger swipe, tap, double-tap, etc,
        • Hardware accessories: MagSafe 2 Power Adapter, AC wall plug, etc,
        • Mac OS X 10.8 Mountain Lion.
    She also says:
    It was my annual bonus from work, completely brand new and boxed, comes complete with all supplied accessories. I am selling it so low because I urgently needing of money, I want to put the money towards a deposit for a house.
    From the beginning I must say that I live in Kingsville, ON N9Y 3V4, Canada and from here will be delivered to you. The delivery will take 1 to 2 days depending on your location. I am a single mother with 2 children and I don't have time to stay and meet with all my potential buyer's.

    stevejobsfan0123 wrote:
    ... Some sites like eBay have a Buyer Protection Plan.
    True, but eBay's policies are now totally lopsided in favor of buyers. So much, that there are far more sellers getting scammed these days.
    Buyers hold all the cards with eBay.
    Here's an ebay search. The lowest completed listing prices are within 10% of Apple's... about what you can get with an educational discount anyway. After listing / final value fees and Paypal fees, at those prices sellers are losing money.
    Why? Hmm...

  • What's new in AE CC? Free webinar Thursday, 10 AM PST

    Innovation in Motion: What’s new in After Effects CC
    Thursday, June 20th, 2013 at 10:00am Pacific Time
    Take your creativity to new heights with the industry standard for motion graphics and visual effects. After Effects CC will give you the tools to work dynamically in 3D with precision and control in an integrated, collaborative workflow. Create photo-real visual content fast with awesome new advancements, such as the Live 3D Pipeline between After Effects and CINEMA 4D, an enhanced 3D Camera Tracker, and layer and mask snapping for faster composition construction. Save hours of tedious rotoscoping work with the Refine Edge tool. Be more creative, thanks to advancements in stabilization and other refinements for a more responsive workflow.
    Register now: http://www.adobe.com/cfusion/event/index.cfm?event=detail&id=1903730&loc=en_us

    I'm aware of that page, but there is often hundreds of other additions that are never mentioned there, or anywhere on the site at all... for example, all the smart playlists additions in (not so) recent versions were never mentioned there, nor (I think) were the addition of skip counts. There's all kinds of things apple adds into to itunes with every release - which I do appreciate... I'm just saying...
    Imagine if your wife/mom/whatever called your cable company and added channels to your cable package (and paid for them herself), but never told you about it... Sure it was nice of her, but you won't ever notice, until two months later when you are flipping through channels, and you leave it on Showtime long enough to notice there's actually a picture there....
    Message was edited by: Ijmitchell

  • Using 6533 DIO32HS, is it possible to use double buffered output with varying pauses?

    I'm using Level-Ack handshaking to transmit data. Currently, I'm hooked up to a loop-back on the DIO32HS card.
    If I don't use double-buffering, I end up with pauses in data transmission, so I need to use double buffering. Unfortunately, I can't seem to set up a delay in the middle of a double buffered scheme.
    What I need to do is this:
    Transmit 64 packets of data (16 bits each) on group 2 / Receive 64 packets of data (16 bits each) on group 1
    Delay for .2 ms
    Transmit the same packets again / receive
    The delay in the middle will need to be varied, from .2 to 20 ms.
    I'm programming in Visual C++ 6.0 under Windows 2000, with (as suggested above) group1 c
    onfigured as input (DIOA and DIOB) and group2 set up as output (DIOC and DIOD). Due to the speed of transmission (256kHz) and the small size of the data set, the program I wrote, no matter how tight I try to make it, cannot insert the proper delay and start the next send on time.
    Does anyone have any idea if such a pause is possible? Anyone know how to do it, or any suggestions on what to try?
    Thanks!

    .2 ms is a very small time delay to use in software. Windows usually isn't more accurate than about 10 or 20 ms. If you need to have small, precise delays you could either use a real time OS, like pharlap and LabVIEW RT, or use extra hardware to generate the delays correctly.
    I would recommend using a separate MIO or counter/timer board (like a 660x) to generate timing pulses for the DIO32HS. This gives you precise timing control at high speed. If the 32HS is in Level ACK Mode, it will respond to external ACK and REQ signals. This is covered in more detail on page 5-10 of the PCI-DIO32HS User Manual.

  • Touchscreen monitor and photoshop

    I've tried drawing with a stylus on my touchscreen monitor, but it doesn't work on CS6 (it pans instead).  I've been able to draw in previous versions.  Is there a setting I can adjust or anything?

    I looked at an HP touchsceen computer in a local store a few days ago.  The whole things consited of the screen, with CPU, memory etc. and a keyboard.  I thought about doing photoshop with it, and did not like the idea of have to hold your hand up in front of you, and wondered how precise your control might be.  It also occured to me that such a screen would have drivers like an Intuos that could identify which program was active, and be set up to react accordingly.   But I don't see it catching of for Photoshop.  OK I was sold on the idea of the big Ciniq screens that could easily by moved into the horizontal and used like a tablet, but not a regular monitor.  
      Oh dear.  I think I just failed an early test for madness, because I just tied drawing on my monitor with my finger. 

  • Sending trigger output to camera whenever motor has stopped

    Hardware:
    PCI-7340
    UMI-7764
    In my setup, a servo motor performs a routine of moves, rotating a disk.
    There are stops in between the moves, during which a camera or a spectrophotometer scans the disk.
    The routine is defined by moves at different velocity, each for a different amount of time. The motor is run in velocity mode.
    To trigger the camera, I have originally planned to use the breakpoint feature in PCI-7340.
    If I have understood correctly, regardless of the breakpoint mode chosen(absolute,relative,modulo), a breakpoint position is required for the breakpoint output to occur.
    For now, the position of the motor at stop, after each move,is not explicitly known, but it can be calculated from the time and the velocity that the user inputs for each move. However,since the servo motor was tuned for precise velocity control, not for precise position control, it often misses the calculated position, especially at higher RPM.So the original breakpoint idea goes out of the window.
    My question: How to generate a trigger signal when the motor has come to a stop?
    A first guess: writing to a digital output port when Run/Stop status check returns false (axis stopped)?
    To be triggered, the camera needs a 10 microsecond wide 5V pulse.
    Also, is it possible to route the signal generated to the breakpoint pin on UMI-7764, to which my camera's trigger line is connected for another part of the project.
    Any suggestion is appreciated.
    Donna

    Donna,
    it looks like there is no better way than the one that you have suggested. That means that you will have to poll the axis' status and output a digital signal when the axis is stopped. As this needs to be done in software, you will see a non-deterministic delay of several milliseconds between the time the axis was stopped and the time when the digital output is generated.
    The pulse duration will also be several milliseconds, but I don't think that this is a problem, as typically the trigger timing of 10 µs should be the spec for the minimum pulse width, so longer pulses should work fine, too.
    You can use the breakpoint outputs as general purpose digital outputs by calling flex_set_breakpoint_output_momo() (Set Breakpoint Output MOMO.flx isn LabVIEW).
    This method should work, but you will loose several milliseconds at each move, compared to position breakpoint triggering. Please let me know, if this is a problem for you, so we could discuss further ideas which would probably involve additional or other hardware.
    Thanks,
    Jochen

  • Question for Mac users re: slideshows

    I am new to Mac and have used PSE for PC for years. I used to be able to create a slideshow directly from PSE and add music, etc, but I no longer see that ability on PSE for Mac. Can anyone direct me on how to create a slideshow with a soundtrack? Do I have to use iDVD?
    Thanks in advance,
    Dana

    Ken,
    From what I have read from people who are familiar - comparing Premiere Elements and Final Cut Express would be a better comparison. (Yes, I know that PRE costs about $85-100 and you said that FCE is about $200.) So the following comments exclude the capabilities of Premiere Elements.
    Also it seems that you and I have very different opinions about the PSE slide show. Despite the fact that I spend time attempting to help people survive making a slide show using the PSE slide show editor, I would never claim that it is anything but LIMITED and BASIC. I would not recommend that someone make a decision about Photoshop Elements based on its slide show capabilities.
    Perhaps the PSE panning and zooming is better or easier - but even it is limited in control. For audio and transitions, they are a constant source of complaint on these forums and others about how limited they are and when they don't work. For example, mixing music and narration does not work in PSE 6 or 7: timing of any audio in recent versions has been very imprecise (I think it was PSE 4 where there was last some more precise timing control for music/audio)

Maybe you are looking for

  • Error message in IE browser

    Hi, I have a group in my output screen. The group is having three fields. If any field is blank, i am generating an error message using wizard. Problem is, when the error message comes in the top of browser, the group moves down in the IE browser. Th

  • Transfer orders creating 921 storage errors.

    Hi All When we enter two or more parts at a time to transfer in MB1B its create transfer order for material in back ground, Also its create 921 errors that need to be fixed in LT10 or the Workcenter trying to receive the parts as a transfer ends up w

  • GettingRuntime  Error: change w/o enhancem

    Hi All, Actually I am Beginner to ABAP. Issue: When Executing my first program in runtime it is showing the error: operation Id: Change w/o Enhancem  Line num:21 (which is the write statement in my program) Example: DATA A TYPE  I VALUE 20. DATA B TY

  • Define Account Group for Matetial Types

    Hi All, I am trying to understand how Movement types are linked to account assignment. In IMG - MM - Valuation and account assignment - Account determination - Account determination without wizard (OMWN) In this transaction or setting i do not see my

  • Image map mailto

    Hello Is it possible to have an image map or any other clickable region automatically open a mailto href? It would make a very elegant asethetic on the page and prevent me having to use a crude looking font to attach the mailto to. tia.