SelectionManager blinking i-beam removal

I have an application that for all intents and purposes can
be considered similar to the Pagination example.
I do not want the end user to be able to edit the document
however I need to do certain operations when the end user interacts
with the text, such as perform some actionscript when they click a
LinkElement, or create a hover box over certain ParagraphElements
and DivElements on mouseover.
Therefore I have created a superclass to SelectionManager to
handle the text events and the mouse events.
The side effect of this design is that when the end user
hovers the mouse over any old text, the mouse pointer is almost
always an i-beam insertion point, giving the impression that
editing is available, even though they cannot in fact edit.
If I find an alternate way of doing the events and eliminate
the SelectionManager altogether, then I dont get the handy ability
for my users to select a section of text and copy it to the
clipboard.
Surely there must be a way, when using a SelectionManager to
have the cursor be the arrow when hovering over arbitrary text and
a hand pointer when hovering over a LinkElement rather than the
i-beam, however, I cannot figure out how to make this happen on my
own.
If anybody out there can help me with this, I will surely owe
you my gratitude.
Thanks,
Tim
Anyone?

longlostbigelow ,
Thans for your reply.
I must have done that 100 times, but just couldnt get it to
work..... then you inspired me to try one more time, with one
slight change...
In my mouseOverHandler, I was doing some processing, and in
general, if nothing special was happening i would return
super.mouseOverHandler(e).
Well, that was what was doing me wrong....
super was overriding the mouse cursor.
Thanks for taking the time to peek at this. You really made
my app much prettier with one simple change.
Thanks,
Tim

Similar Messages

  • Blinking I beam, but still cant fill out form

    I have reader 9. I need to fill out forms.So far I have had two that I have tried, both fillable with allowed access. I have a blinking I beam, but when I hit the keys, I get nothing, the curser just blinks at me in that ha, ha kind of way. Please help me figure this out, it has to be something simple I'm missing. Note:My comp was recently restored, and my PC guys put reader 9 on it for me. Not much else on my comp right now to interfere with it. Let me know. Thanks!

    They probably are not fillable.
    Choose the hand tool. When you mouse over the fields does it turn in to an i-beam? If not then no, they aren't fillable.
    stbway wrote:
    So far I have had two that I have tried, both fillable with allowed access.
    How do you know this? If you are simply looking at what is allowed in Fiule>Properties>Security, all that is saying that IF it were a fillable form, you would be allowed to fill it out.

  • My Battery indicator keeps blinking when the system is switched off.

    HI,
    My battery Indicator keeps on blinking when the system is switched off. When there is a AC power supply this indicattor ceases to blink. I removed the battery pack and put it back but the problem remained.
    As my battery pack was old I also bought a new battery pack and charged it before using but the problem remained.
    thanks...

    I will be really helpful if someone can help me out in this.

  • Spark Blinking issue

    Hi,
        I am creating a folding animation in flex. For the folding animation I am adding and removing sprites to a spark group. Using the tween class I tweened the sprites and on animation complete I am removing the current sprites from the group and adding the new set of sprites to tween.
    group.removeAllElements()
    This is used to remove the elements from the sprite
    group.addElement()
    This is used to add the element to the sprite
    But the issue I am facing is a blinking happenning while removing and adding sprites to the group. The thing is this is happening onlly at initial loading of tha application. Tried different ways with no success. Any help will be appreciated.
    Thanks
    Arun Viswanathan

    Understood the probelm. But still not find the solution
    Its not sure that removeAllElements and addElement happens in one update. It may be happen in atleast two updates one for removal and one for addition. The blinking is caused by the brief time frame b/w the two updates.
    Is there any way to make the update at once?

  • Join 3 tables, return records which no match found in table 1 as null

    Hi Gurus,
    I really need your expert advice. I am stuck in below query.
    I have joined 3 tables,
    table 2 is an information reference (to get the process code and process name)
    table 1 have and table 3 have daily data (which will have the process code and its values/qty)
    all values return from table 1 and 3(rtrwip00 and prdyld01) should refer to code in table 1.
    There can be a scenario where on a day, a process was stop, so it dont have values/qty in table 1/3,
    The problem is my query will return only rows which have records in table 1/3.
    While I want all the records in table 2 to be returned no matter have data or not in table 1/3, in case no data in table 1/3, return qty as '0'.
    Please advice me..thanks in advance :)
    Select lot.rw_oper,
    lot.rw_area_grp,
    lot.rw_oper_name,
    proc_out.proc_out,
    lot.rw_qty
    from
    ( SELECT UNIQUE a.rw_oper,a.rw_area_grp,a.rw_oper_name,SUM(CASE WHEN a.rw_qty_unit = 'CM' THEN a.rw_qty*10 ELSE rw_qty END )as rw_qty
    From rtrwip00 a, oprinf99 b
    WHERE a.rw_facility='MIPOPRD'
    AND b.oi_facility = a.rw_facility AND b.oi_oper = a.rw_oper
    GROUP BY a.rw_area_grp,a.rw_oper,a.rw_oper_name
    ORDER BY a.rw_oper,a.rw_area_grp) lot,
    ( SELECT py_oper, SUM(CASE WHEN py_out_unit1 = 'CM' THEN py_proc_out1*10 ELSE py_proc_out1 END) proc_out
    FROM prdyld01
    WHERE py_facility = 'MIPOPRD'
    AND py_trs_time between TO_CHAR(SYSDATE-1,'YYYYMMDD')||'070000' AND TO_CHAR(SYSDATE,'YYYYMMDD')||'070000'
    group by py_oper
    )proc_out
    where lot.rw_oper NOT IN ('2900','6700' ,'9100' ,'9920' ,'9921','9940','9941','9300','9500','6700','8910', 'REJT')
    and lot.rw_oper = proc_out.py_oper
    order by lot.rw_oper

    CREATE TABLE PRDYLD01
    PY_FACILITY VARCHAR2(12 BYTE) NOT NULL,
    PY_TRS_TIME VARCHAR2(14 BYTE) NOT NULL,
    PY_LOT VARCHAR2(11 BYTE) NOT NULL,
    PY_OPER VARCHAR2(4 BYTE) NOT NULL,
    PY_PO VARCHAR2(12 BYTE) NOT NULL,
    PY_PROC_IN1 NUMBER(10,2) DEFAULT 0 NOT NULL,
    PY_PROC_IN2 NUMBER(10,2) DEFAULT 0 NOT NULL,
    PY_PROC_OUT1 NUMBER(10,2) DEFAULT 0 NOT NULL,
    PY_PROC_OUT2 NUMBER(10,2) DEFAULT 0 NOT NULL,
    sample data 1
    PY_OPER     PROC_OUT
    3000     481
    3100     214
    3200     642
    3250     291
    5250     519
    5300     439
    5350     476
    CREATE TABLE RTRWIP00
    RW_FACILITY VARCHAR2(12 BYTE) NOT NULL,
    RW_LOT VARCHAR2(11 BYTE) NOT NULL,
    RW_OPER VARCHAR2(4 BYTE) NOT NULL,
    RW_OPER_NAME VARCHAR2(35 BYTE) NOT NULL,
    RW_PO VARCHAR2(12 BYTE) NOT NULL,
    RW_AREA_GRP VARCHAR2(12 BYTE) NOT NULL,
    RW_QTY NUMBER(10,2) DEFAULT 0 NOT NULL,
    RW_QTY_UNIT VARCHAR2(6 BYTE) NOT NULL,
    sample data 2     
    RW_OPER     RW_QTY
    3000     1248
    3100     324
    3200     133
    3250     357
    4400     424
    4500     821
    4600     909
    5050     689
    5250     2472
    5300     53
    5350     166
    CREATE TABLE OPRINF99
    OI_FACILITY VARCHAR2(12 BYTE) NOT NULL,
    OI_OPER VARCHAR2(4 BYTE) NOT NULL,
    OI_OPER_SEQ NUMBER(5) NOT NULL,
    OI_AREA_GRP VARCHAR2(12 BYTE),
    OI_SHORT_DESC VARCHAR2(10 BYTE) NOT NULL,
    OI_LONG_DESC VARCHAR2(35 BYTE),
    sample data 3          
    RW_OPER     RW_AREA_GRP     RW_OPER_NAME
    3000     MOD     ROD MOUNT
    3100     MOD     WIRE SAW
    3200     MOD     AS-CUT CLEANER
    3250     MOD     BEAM REMOVAL
    4400     POL     ESE-II
    4500     POL     EDGE OXIDE STRIP
    4600     POL     LTO INSPECTION
    5050     POL     DOUBLE SIDE BUFFER
    5250     POL     ACCUMULATION
    5300     POL     FINAL POLISHER
    5350     CLN     POST POLISH CLEANER
    ABove is the DLL for the table and its mock data.
    Sample output should be like below; where when no data found in sample data 1, it will return '0'
    RW_OPER     RW_AREA_GRP RW_OPER_NAME     PROC_OUT     RW_QTY
    3000     MOD     ROD MOUNT     481     1248
    3100     MOD     WIRE SAW     214     324
    3200     MOD     AS-CUT CLEANER     642     133
    3250     MOD     BEAM REMOVAL     291     357
    4400     POL     ESE-II          0 424
    4500     POL     EDGE OXIDE STRIP     0     821
    4600     POL     LTO INSPECTION     0     909
    5050     POL     DOUBLE SIDE BUFFER     0     689
    5250     POL     ACCUMULATION     519     2472
    5300     POL     FINAL POLISHER     439     53
    5350     CLN     POST POLISH CLEANER     476     166
    mY current output is below; only return record that have match to all table.
    RW_OPER     RW_AREA_GRP     RW_OPER_NAME     PROC_OUT     RW_QTY
    3000     MOD     ROD MOUNT     481     1248
    3100     MOD     WIRE SAW     214     324
    3200     MOD     AS-CUT CLEANER     642     133
    3250     MOD     BEAM REMOVAL     291     357
    5250     POL     ACCUMULATION     519     2472
    5300     POL     FINAL POLISHER     439     53
    5350     CLN     POST POLISH CLEANER     476     166
    Really appreciate your response, sorry for taking time to reply.
    Thanks in advance :)

  • TextField Focus

    Hello there,
    I am new to AS3 and trying to figure out how to set a focus to a textfield on the stage. I found out that if I use
    stage.focus = tf; then the tf get the focus and it does, when I type letters they go directly to this textfield.
    Problems are,
    I don't have a blinking cursor in the textfield.
    I added event listener to catch up when the user press the  ENTER  key but it catches the ENTER key ONLY after I click the textfield with the mouse and having a blinking cursor in that textfield.
    Any idea ?
    regards,

    Are you seeing this behavior in the testing environment or when you put the flash into an html page?
    In the testing environment you might want to go to the Control menu and select Disable keyboard shortcuts. That will give you a better representation of how things will actually work when they are standing on their own.
    Also there is some kind of issue around setting the focus. The swf object has to have already received a click before it can set the blinking I-beam into an input text field. It is a "security" type of thing. To prevent a malicious swf from looking like some kind of interactive password field and grabbing someone's password or the like.
    Depending upon what you are doing you can have a "Start" button or something to make sure that the user has clicked the flash before flash can be able to set the focus.

  • Heard the fire smell in my laptop ( T61 )

    Hi everybody , I have a T61 used from 7 in 2008 to the present.  Today, when I attached the adapter to the computer without signal lights. After i remove adapter and attached again , i see the light from the battery and power blinks, then I heard the fire smell, Now, my laptop can't power on, and light from the battery and source blinks continuously, I remove the battery and still heard the fire smell in my laptop ( battery no problem ). I don't think the power adapter because it not  the fire, and I use my laptop with automatic voltage stabilizer . Please tell me about problem with my laptop ? Sorry , because my English not good . Thanks all

    huycreative,
    I agree with lead_org's suggestion to contact Lenovo service and support immediately.  I would strongly suggest you unplug the AC adapter from the wall and remove the battery from the laptop and call service. 
    I recommend against using any of these components again until they are checked out by Lenovo service.
    Here are the numbers to call for support...
    Vietnam
    Vietnamese, English
    For Northern Area and Hanoi City:
    844 3 946 2000 /844 3 942 6457
    For Southern Area and Ho Chi Minh City:
    848 3 829 5160 / 844 3 942 6457
    8:30AM - 5:30PM
    Monday - Friday
    Best regards,
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Pdf settings issue

    So I have a pair of Eaton UPS units with the management cards, I setup IPM/IPP on all my machines and all was well after figuring out the rather cryptic configuration of your software with the help of the very nice people at Eaton over the phone (was genuinely impressed someone helped me with this stuff)recently one of the management cards in one of the UPS' locked up (the heartbeat LED stopped blinking) so I removed the card and reinserted it, it came up without issue (these things take FOREVER to boot btw) now I am getting constantly spammed with Redundancy Lost/Redundancy Restored messages on random IPP servers and on my IPM box too, I am getting SEVERAL per minute... I have tried restarting both cards, restarting the IPM server, I still can't get these messages to stop, finally I had to turn off all the Eaton alerting because my...

    Migrating your database to a new datacenter can be a high-risk and time-consuming process. A database contains state, and can be much harder to migrate as compared to web servers, queues or cache servers.In this blog post, we will give you some tips on how to migrate your data from one service provider to another. The process is somewhat similar to our previous post on how to upgrade MySQL, but there are a couple of important differences.
    This is the seventh installment in the Become a MySQL DBA blog series. Our previous posts in the DBA series include Database Upgrades, Replication Topology Changes, Schema Changes, High Availability, Backup & Restore, Monitoring & Trending.MySQL Replication or Galera?Switching to another service provider (e.g., moving from AWS to Rackspace or from colocated servers to cloud) very often means one would...

  • Xw8600 workstation

    I have a HP XW8600 workstation. There are 5 beeps with 5 blinks in the LED whenever I try to boot it in vain.
    I removed all the RAMs from the slots and still it gives same type of beeps with blinks.
    I put the RAMs back in correct slots and I got same result.
    I removed the battery from the motherboard and put it back and then tried to boot the machine but it still gives the same type of beeps and blinks.
    I removed the connections with the hard disks and put them back and tried to boot it with the same result.
    I am eagerly waiting if anyone can turn up with any solution. Please help me as soon as possible. It's really important to me.

    Hi:
    You may also want to post your question on the HP Business Support Forum -- xw Workstations section.
    http://h30499.www3.hp.com/t5/Workstations-z-series-xw-series/bd-p/bsc-272#.VBST_Th0zGg
    Did you test each stick of memory one at a time the the primary memory slot to see if one of the chips is bad?
    If you tested each one of them individually and you still get the 5 beeps each time, more than likely the motherboard is shot.

  • Officejet 100 (I am going to drop kick it)

    I'm not necessarily sure if it is specifically a networking issue, but I have deduced it's in SOME FASHION probably related. I have a macbook pro, but I've never had an issue with this lil guy before. I'm printing off articles from adobe (which probably could use 12093812083 updates, but i updated it last month so I'm pretty sure its still good), and randomly after one page the power light, continue light, bluetooth light, right cartridge light, and left cartidge light are Blinking incessently. 
    Initial thought was the ink cartridges, which seemed very unlikely, but when opened the lid and shut it, nothing. The only way to get it to stop is to remove the battery, which I then did. When I reattach it and reconnected it, after a lil bit of "uhmmmmm what?" (it paired as if it was the first time), I checked the supplies; totally fine.  So resumed printing, and after an extended pause, I was able to get 1 other page before it resumed its stupid blinking! 
    So removed and connected the battery again, and this time focues on the connection. Turned off all my bluetooth devices in my apartment, which is exactly 2, and opened the printer utility guy who was of no help whatsoever. Ran the test page and just got test writing and colorblocks, all perfectly fine. Now, I have my computer RIGHT NEXT to the printer guy, since he's being sensitive and all, and during my short lil exploration of what's going on, it's been needing to reconnect an awful lot (more than necessary for a bluetooth device). which is kind of why i believe this might have something to do with networking. moving on....
    its saying its got a good connection, I resume printing the article (maybe it just hates this article? haven't tried that). I get about 3 pages. andddddddd were back to blinking. As I wrote this almost unnecessarily long query, the printer made noises similar to those when its finished a printing job. The blinking is still going strong.  
    Make it stop please. 
    Again, I've never had a problem before and everything else is fine. its just giving me attitude and I dont appreciate it. 

    Hello jrizzelybear,
    I understand the frustration with the Officejet 100 Mobile, before you drop kick it let's go ahead and try to give it an attitude adjustment. Please follow the link below so we can begin troubleshooting No response from printer.
    Some steps in this document you may have already tried, like using the printer guy.  Please go ahead and do all steps mentioned so we can get you back up mobile printing.
    I hope this is helpful, please let me know if you require more assistance.
    Thank you in advance,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Regarding printer issue

    I install both new cartige black and color.after installation power up the printer and the ink indicator is showing one is full  i.e. left side and another one is blank which is right side and the ambar color esclamation sign is blinking.If i remove any of one cartige then get print out.i replace cartige but problem remain same 

    Hi,
    It is AIX server. How to give print from OS. Use this command:
    $ lp -d <printer_name> -n<copies> <file_name>Note: 784640.1 - Any EBS Requirements For Local or Remote Printers
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=784640.1
    lp Command
    http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.cmds/doc/aixcmds3/lp.htm
    And also how do i know it is valid printer or not.If printing from the OS works properly, check your printer setup from the application (System Administrator responsibility > Install > Printer > Register).
    Regards,
    Hussein

  • I have a 1st Gen Time Capsule 1tb. It turns on, boots up and turns green for 5-10 mins, but then turns solid orange and then blinks orange.  I have removed the hard drive and replaced the power supply . . . still the same problem.  Suggestions?

    I purchased a used 1st Gen Time Capsule with a 1 tb hard drive.
    When I plugged it in and did the initial setup, it worked fine, but gave me a hard drive error.  A few minutes later the green light turned solid orange, then blinking orange, then the status light went off.  The lights in back stayed on. 
    I removed the hard drive and rebooted, it turned green for 5-10 minutes then reverted back to a solid orange, blinking orange, then went off.
    Next I purchased a remanufactured internal power supply, and installed it (without the hard drive in).  It turned green almost immediately.  After about 15-20 minutes, I decided to try to install the hard drive again, booted it up, and tried to erase the hard drive with was working properly according to the software.  It stopped erasing the disc after about 20 minutes and turned solid orange again, then blinking, then no status light  (but back lights were still lit).
    I'm a bit flabbergasted at this point, any suggestions on what to do next?  I think i've pretty much replaced everything except the logic board, but can't seem to find any information on the symptoms of a logic board malfunction. 
    Thanks!!!!!!!

    A Gen3 is identical board to a Gen4 although they have some differences in firmware and wireless card was updated on every model.. but a Gen3 is substantially faster than Gen1, Gen2 which also have identical boards.
    You can with careful shopping get a Gen3 pretty cheap.
    Most use a delta power supply which I think is a lot better than the flextronics used in most Gen1/2
    You can sell back the parts to ebay.. people still would buy the power supply etc. Even just the case can be useful to a repairer.
    But if the board is gone.. it is hard to repair.. not impossible.. but hard.
    Gen 3 and Gen 4 are not without faults.
    See this page.
    https://sites.google.com/site/lapastenague/a-deconstruction-of-routers-and-modem s/apple-time-capsule-repair/new-issue-with-a1355-gen-3-tc
    I have fixed it a different way.. by using the small converters you can buy in bulk from ebay for $1 each.. KIS3R33 .. they produce 3.3V at 2A peaking at 3A.. amazing.. I keep using them to replace onboard power converters by removing the inductor and simply power directly.. the end result has worked great. You can simply change the resistors around and get any output from 1v to 20v depending on input.
    Is it worth doing it .. no of course not.. it will waste many more hours than $50 is worth.. but it is kind of fun that you can actually make things work again.
    Here is a pic of the Gen 3 totally powered by me. All onboard power removed.
    This was to track down the fault in the Gen3.. but I am kind of pleased that it ended up neat enough and reliable enough to work for more than a year.. the Gen3 still serves as a way to get Netflix via network for a friend running 24/7.
    The units supply (from left to right)
    1v, 1.1v, 3.3v, 5v, 1.8v
    It is feed by 12v supply which is also directly connected to the hard disk.
    So it is possible to fix.. !! Only got to be a bit crazy.

  • Removing Blinking Text from video footage

    Hi Helpers:
    I recently recorded a service at my church where we have three mounted cameras.  One of the cameras was malfunctioning and the word "Backup" is blinking in the top 1/3 of the frame for the entire service.  As luck would have it the malfunctioning camera is the only one that can capture faces as people enter during the mass procession.
    I knew this was happening while recording but couldn't remedy the situation at that time.  I was able to frame most lf my shots so that the vital subject of the angle is below the blinking text in case I need to crop the video (which unfortunately will result in a blurry picture from that camera).
    Is anyone aware of a way that I can use Premiere (CS4) to somehow remove the blinking text or perhaps other options aside from cropping? 
    It is a 50/50 blink cycle (12 frames on and 12 frames off) so there are a lot of frames that are good if there is some way to normalize the picture.  There are so many cool tools and features in PS and Premiere that I want to think there is something that can help me.
    Thanks in advance for any ideas or assistance you have !!
    Ned

    Ned,
    Welcome to the forum.
    Unfortunately, if the camera has "burned in" the "backup" message, the best solution would be to use the Fixed Effects>Motion>Scale, and probably Motion>Position to effectively crop out that message, by the Frame Size. Just Scale up to the minimum to get that message off-screen (Positioning if necessary), and living with a slight bit of quality degradation. Scale to the minimum to get that message off-screen.
    Now, depending on the background, surrounding the message, you might be able to use AfterEffects, and its Clone Tool, to clone some of that background, over the message, but this will require a bit of work, especially if there is much camera movement.
    Good luck,
    Hunt

  • Removing the DVD drive fixed my 5x blink boot issues

    Hey,
    in the past few months or so i increasingly ran into the problem of my Probook 6470b refusing to boot and blinking 5 times which points to a system board malfunction.
    I have had this PC for 1.5 years now, and in the beginninig this ocurred maybe once in a month, so i didn't care much about it. This increased drastically lately - statistically speaking my laptop refused to boot every fifth time or about every 20th when trying to force it by powering it up and down continuously.
    The issue can be described as the following:
    Caps Lock and Num Lock flashing in patterns of five, the screen displaying the HP logo and the DVD drive making some intense noises. After two minutes the PC usually continued to boot through. Alternatively one could remove the battery and try it again.
    Due to the drastically increased occurances of this i contacted my countrys HP support and the store, but both refused to look into it because of the german 'revisal of the burden of proof' after six months. So i deciced to look into it myself.
    This issue seems to be quite common accross a wide range of HP laptops, with some weird suggestions on how to fix it on the internet. In my opinion you have to differentiate between faulty soldering connections or burnt through chips and my described issue.
    Similar accounts can for example be found here: [1] [2] [3] [4]
    As this issue occurs on business laptop variants still on sale i think HP should be quite interesting in fixing this.
    After a long preamble, here's the fix i found:
    because the DVD drive made some noises usually not heard when booting as expectedi removed my Drive.
    I tried powering the laptop on 30 times directly afterwards without problems and have been running this for 1.5 weeks or 25 successful power ups now (i kept a tally list). If it should fail eventually i will update this post.
    Without the dvd drive the laptop looks a bit ghetto and is quite prone to dust, but i am thinking of buying a dummy drive that can be used to mount a second HDD.
    As this issue increased after time my guess is that this is because of some BIOS update that assumes an error when the DVD drive isn't responding fast enough on boot.
    Could a HP engineer please look into this?
    I have the B6P73EA variant running BIOS 68ICE Ver. F.61 of 01/21/2015 with a DVD Drive manufactured in January 2013 by PLDS; P/N 6757534-HC1
    Thanks very much!<script src="chrome://YTAutoHDDE/content/YTAutoHDDE.js" type="application/javascript" charset="UTF-8"></script>

    Probook 6470B is the model. 
    As part of the POST process the computer will poll the drives and it is not unexpected that a bad optical drive will cause the whole process to hang before the computer boots. That is normal behavior. This is a peer to peer Forum by the way and the HP Engineers (other than those who choose to participate) are not monitoring the activities here.
    I am glad you figured out the problem. A replacement DVD drive should not be too expensive or, as you suggest, you can use an optical to hard drive adapter. I believe HP also makes a blank for that space which ought to be really cheap. 

  • How do i remove a blinking light? CC 2014 Premiere Pro AE / Mocha ?

    I have been trying to figure out the best way to do this and it seems harder than I first thought.
    There's a blinking message light on a phone in a shot (very small) that I need to remove. I've tried various ways of inserting a photo and tracking the motion etc but they're all jumpy and inconsistent. Can someone tell me the best way?
    the shot does move a bit since the camera was on track.
    the phone button is dark them bright orange then dark.
    help?
    thanks!

    you could try "change to color" effect or something similar, to remove the bright orange, but that might have its own problems as the light changes.   if you are unable to manually track your picture over the video frame, you will probably want/need AE. you can use its motion tracker or mocha.  there are plenty of tutorials on these on youtube.  if the picture you have doesn't work as the camera moves on its track thru the shot, you may need to recycle moments of the video where the light on the phone is off.

Maybe you are looking for

  • Lion has crashed my MacBook Pro

    Help!!! I did an upgrade to Lion tonight. Did a back up to Time Capsule prior to download. Download, install and crash. I get an error message that the hard drive is "locked" and cannot be upgraded. I tried to restore a back up...states file is corru

  • Mail Queue filling up with DSN failures

    So my Exchange 2010 queue viewer keeps filling up with failed DSNs. There is no sender (except for [email protected]). I have done some searching and the first thing that everyone usually mentions as a cause is SPAM. It's not SPAM.  I know this for t

  • Change a white ipad to a black ipad

    i am not sure if this is the right place to ask this question. so here it is, i just got a white new ipad as a gift from my uncle. i havn't open it. can i just walk in to apple retail store and replace with a black one? (and there is no way to find t

  • How to open Facebook in china using MacBook Pro?

    hello, please to resolve on how to open facebook in China using MacBook Pro. Many thanks to all!

  • Can't record Acrobat 6 editing

    I'm using Captivate 3 to record a document work flow (using web-based "Documentum" software). At one point the user clicks a link within Internet Explorer to launch Acrobat 6 Pro in order to put comments on a file. Clicking the link opens another IE