Mouse follower in specific area?

I'm not sure if I can explain this clearly enough because I'm
not familiar with all of the terms but I will try.
I have created a flash banner to act as a meter. The 'brain'
logo is to move up and down the mercury of the thermometer
according to the placement of the mouse on the text a long side the
banner.
Right now I have the 'brain' logo set as a tween in that
area; however this is not what I want. I also have a 'brain' logo
follower which is pointless that I only made trying to figure this
stuff out.
If someone could please point me in the right direction, I
would really appreciate it.
For an idea of what I'm talking about the flash banner is
located
here.
Keep in mind that it is only a concept right now.
Thanks.

Thank you again but I found the answer I was looking for
somewhere else.
actionscript for follower in straight up and down line -
var speed:Number = 5;
function follow() {
this.onEnterFrame = function() {
brain._y += (_ymouse-brain._y)/speed;
if (Math.abs(_ymouse-brain._y)<1) {
dot._y = _ymouse;
delete this.onEnterFrame;
trace("middle");
if (dot._y>line._y+line._height) {
dot._y = line._y+line._height;
delete this.onEnterFrame;
trace("bottom");
if (brain._y<line._y) {
brain._y = line._y;
delete this.onEnterFrame;
trace("top");
onMouseMove = function () {
follow();

Similar Messages

  • Mouse tracking always reset to a specific area point

    Hi,
    My iMac mouse always reset to a specific area of my screen every time I move it.
    I thought that it was the magic mouse tracking that was bugging but it's not : the same problem occurs when I'm using the ScreenSharing app with my computer on sharing mode.
    I tried to restart the computer, empty the PRAM after unplugging the computer but nothing worked..
    Here's the specs of my iMac :
    iMac 27-inch, Late 2012
    3,4 GHz Intel Core i7
    32 Gb of ram
    NVIDIA GeForce GTX 680MX 2048 Mb
    OS X Yosemite 10.10.1
    Someone could help me please?

    Everything is ok finally : I haven't seen that the pen of my graphic tablet was layed down on it..! -_-

  • OIM11gR2 - Is it possible to create a direct link to a specific area in the oim plattform?

    hi,
    is it possible to create a direct link to specific area in the oim self service plattform? for example a link to the users account list, or a link to a specific resource account?
    br,
    max

    Hi,
    Yes, Its very much easy in R2 as compared to R1. You can use following link to achieve your requirement:
    http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/uicust.htm#BABIDJAB
    ~J

  • How to darken a specific area in iPhoto for Mac?

    Hi. I am trying to darken a specific area (not the entire picture) in iPhoto on my Mac. How should I do that? Thanks!

    Nitin, the link you provided is a bit better than nothing, but it refers to the AVPlayer object in applications, rather than iOS delivered data.  In our experience currentTime is a settable property for the native video player in mobile Safari, using a normal progressive uploaded stream, as the documentation shows:
    http://developer.apple.com/library/safari/#documentation/AudioVideo/Reference/HTMLMediaEle mentClassReference/HTMLMediaElement/HTMLMediaElement.html
    The question is "Are there browser based methods that seek AMS delivered streams more quickly or with better accuracy?" 
    Everyone is aware that mobile is exploding.  On some of our videocentric apps the share for iOS is approaching 20%.  PM Kevin Towes, what are you doing to accomodate this need???

  • How to mask out specific area in a specific time?

    Hi,
    I want to make a mask on a specific area of the footage in a specific time. I drew the mask and all the frame went black,so I clicked on Mask-> invert and only the specific area I masked went black,which is exactly what I wanted.
    Now I want to make it happen in a specific time, not on all timeline, but I can't find a way to do it. I thought about lowering down the mask opacity to 0% and a frame later bringing it to 100%, but if I lower down the opacity of the mask, it lowers down the opacity of the whole frame, same as
    lowering down the opacity of the frame by intention, which seems weird, cause I did inverted the mask, and as I understand it, it should affect the opacity of the mask and not the whole frame...
    any ideas...?
    I'm using CS4.

    Put a copy of the footage on the timelime below the one you masked. Use opacity like you doing and it will reveal the track below.

  • I recently downloaded a 10.6.8 update and a game program has now been reduced in size.  It's specifications are set for full screen, but it is about 1/4 of the size.  Any ideas how to fix?

    I recently downloaded a 10.6.8 update and a game program has now been reduced in size.  It's specifications are set for full screen, but it is about 1/4 of the size.  Any ideas how to fix?

    Hi, I have got the same problem but all is 1/4 the size have you fixed it?

  • Follow-on documents are not visible in MIRO in TEST server, awsys = PRD300.

    Dear Experts ,
    The Test Server was refreshed around mid-June 2011 with data of
    Production Server. The follow-on documents are not visible for the
    invoice documents in MIRO in TEST server due to value in tables
    BKPF,RBKP : field : AWSYS = PRD300 .
    The newly created Purchase Orders after the refresh, the accounting
    documents can be seen for the Goods Receipt (MIGO_GR-display) and
    Invoice documents (MIRO).
    we had already raised this issue in March & got the feedback from SAP
    as shown below.
    accordingly we have developed & run the program "zzlogsys2" which
    updates the Logsys/Awsys field from PRD300 ( of production server ) to
    that of the current server i.e. TST300 as required.
    after which the FI documents for the material documents are visible in
    MIGO,but follow-on documents are not visible for the invoice documents
    in MIRO.
    we have Checked notes 781498 and 28958 to see if the logical system is
    correctly assigned , where we found that in table RBKP after entering document number, Fiscal Year , the
    Field AWSYS is "PRD300" & not "TST300" as it should be. We will take up the activity of updating table RBKP
    also as we are currently doing for tables MKPF & BKPF.
    But to have clear picture as to what we are doing is correct , pl
    advise about the following :
    1) Is it a correct process done by our SAP-Basis team , that every time
    any Server ( e.g. Test or Quality ) is refreshed with Production server
    data, the Field AWSYS in various transaction tables gets value as
    "PRD300" which then is required to replaced by running program such as
    ZZlogsys.
    REPORT ZZLOGSYS.
    TABLES: T000, MKPF.
    DATA: NEW_SYS LIKE MKPF-AWSYS.
    PARAMETER: OLD_SYS LIKE MKPF-AWSYS.
    SELECT SINGLE * FROM T000 WHERE MANDT EQ SY-MANDT.
    NEW_SYS = T000-LOGSYS.
    CHECK NOT NEW_SYS IS INITIAL.
    UPDATE MKPF SET AWSYS = NEW_SYS
    WHERE AWSYS = OLD_SYS.
    WRITE:/ 'Number of updates: ', SY-DBCNT.
    2) if the above process is correct & normal , then which are the other
    tables in a particular server ,apart from tables MKPF,BKPF,RBKP , which
    needs to be updated the value of field "AWSYS" in the same way
    replacing value "PRD300".
    3) if the process in point no. 1 is not correct , then what is the
    correct process that the Basis team can do while refreshing any target
    server with production data so that target server retains its value in
    Field AWSYS & not showing "PRD300".
    With 3 servers TEST,DEV & Quality , recently refreshed with production
    server to bring all servers in Sync for a HR patch application, we have
    this situation now in all 3 servers .
    Thanks in advance ,
    Anil Shanbhag

    It is appropriate to move this thread from ERP-MM to [Enterprise Resource Planning (ERP)|Enterprise Resource Planning (SAP ERP);
    Edited by: Jeyakanthan A on Jul 7, 2011 4:56 PM

  • Following Media Files Are Not Optimized For Final Cut Pro

    I'm sure you've seen this before and I've tried to search for a thread on it here and fell asleep, so sorry if this is a repeat.
    I have edited projects in Premiere Pro (on my PC) and I have tried to transfer them in FCP. It worked with the exception of two things:
    1. the error message, "Following Media Files Are Not Optimized For Final Cut Pro"
    2. the quality *****! watching it on the playback in FCP it looks great, but then when I burn it to Disc it's pixelated in spots and generally has a lower quality picture.
    I know that it's Standard Def. and can't expect the best, but I've done it before (once or twice) and it didn't seem this bad.
    Can someone suggest anything to help the quality? Should I run my AVIs through MPEG Steamclip to make it a QT file and if so what is the best format in that since there are many to choose from and most I'm not familiar with?
    Thank you,
    Crayton

    I did compress them to DV NTSC then burned it to DVD and the result was no bueno.
    I thought what I would do is try compressing them again before I send them on over to DVDSPRO. Here is a simplified break down of the situation:
    - I have edited the raw footage in Premiere Pro on my PC. They were recorded and captured as SD.
    - I rendered them in Premiere, then transfered the rendered AVI file to FCP.
    - When went to place the files in FCP, I received the warning message; "Following Media Files Are Not Optimized For Final Cut Pro" but I went forward anyways and it allowed me to do so.
    - Originally I went ahead and compressed them from FCP to QT Movie as a DV NTSC, which ended up poorly.
    - Therefore my question is, should I compress them using another file type (other then DV NTSC)? Which leads me to another program that I have called MPEG Streamclip, which offers tons of file types of which I am unfamiliar with most. I want the best quality of course but don't know what file type is the highest going from AVI to a format that can be accepted by FCP and ultimately DVDSPRO. Keeping in mind that I only have FCP5 and do not have Prores.
    Did that make sense?
    Thank you again,
    Crayton

  • When using the "Fill & Sign PDF" feature, is there a way to stretch to size the text box, for a specific area on the page...instead of it going on in one straight long line...?

    When using the "Fill & Sign PDF" feature, is there a way to stretch to size the text box on a specific area of the page...instead of the text box going on in one straight long line....? I'm not seeing there's an option or ability to do so, just wanting to confirm.

    Improving the handling of multiple line text fields is in our plans, but for now, you will have to add manual carriage returns (Enter).
    Thanks,
    Josh

  • Hyperlink from MY website to a specific area on EXTERNAL website

    i was hoping to use an HTML snippet to accomplish this on iWeb. i've spent several hours on google, and this forum too but found NOBODY addressing this:
    i need to create a hyperlink from MY website to an external url. the external page needs to open at a very specific area on the page. i see that this is done on hand-coded websites.
    most iWeb discussions were about hyperlinking to lower down on the same page or within the same website where 'anchors' can be used. obviously that can't be done when linking to an external website.

    Cyclosaurus i appreciate your quick advice.
    the external site i am targeting is:
    http://www.tcg.org/international/events/festivals.cfm
    scrolling down the page, i want to land on this sub-headline beginning at "Rome, Italy"
    i.e.
    Rome, Italy
    IL VATICANO CADE: The English title of this play by American writer Frank J. Avella is Vatican Falls, but the fi............
    if that site is coded so that it can work, i would so greatly appreciate it if you can indicate the actual HTML to put inside the snippet --- i'm an artist, and the rigid 'science' of code is always a challenge. thanks again

  • Creating links to specific area in a PDF

    I want to create a link to go to a specific text area in my one-page PDF... not allowing anything outside of this specified area to be filled unless you click on this link. Does anyone know how to do this?

    Creating a link to a specific area is very easy. Make a button and set its action to "Go to page view", then go to the area (you can even set the zoom level you want) and set the link.
    Preventing the user from leaving that area is not possible.

  • On my ipad, is it possible to use stylus or fingers to copy and paste a specific area on a document, PDF., web page, etc... It would be great to pull specific areas out of a PDF. And paste into a note app I'm thinking of downloading.  Thank you.

    On my ipad, is it possible to use a stylus or fingers to draw out a specific area to copy and paste;  I'm looking to copy from a word document, PDF., web page, etc... It would be great to pull specific areas out of a PDF. And paste into a note app I'm thinking of downloading.  Thank you.

    Yes. I do it using Adobe Reader for PDF files, Pages for Word files, I can copy from Safari or iCab Mobile and paste into another app. I use my finger even though I do have a stylus. I rarely use my stylus anymore, but yes it's possible.

  • I cannot shu down my iMac (for days) as I get the following message:Photos are being imported to the photo library.  Now as far as I know there are no photos being imported and even if there were 5 days is crazy.  How can I resolve this please?

    I cannot shut down my iMac (for days now) as I get the following message: "Photos are being imported to the photo library."
    Now as far as I know there are no photos being imported and even if there were 5 days is crazy.  How can I resolve this please?
    JLB284

    Open Activity monitor in Utilities, go to the CPU tab>All Processes, and note any process that would appear to be related to importing photos, such as iPhoto, and use Force Quit. This may only be a temporary fix, as it may start all over again when you reboot. If that happens, we need to do some more investigating.
    Also, close all open Applications, then open Terminal in Utilities and copy/paste and hit return, then post the output of this command.
    lsof -l +L -R -V | grep /

  • Projector Specific Area or Window

    Hi,
    It's possible to connect an projector to a macbook pro, and choose only an area to be projected ?
    I want this because, i need to show only a window...and work with this...but in the bottom i need some notes... because macbook pro resolution is 1920x1080 and the projector is 1025x768 ... i have space to place the notes window out of the presentation window.
    I all ready try extended...but i dont want this...because with this option the only way to see the projector window is looking to the projection area...that is behind me...
    Need a solution... so far.. i am using the iPAD with Evernote to have my notes... while i work in the window...but i need the window in my computer for copy-paste operation etc...
    Thanks.

    Are there any updates on this issue? I'm currently seeing this on a Lumia 822 with WP8.1, and the app has never been published to the store. I've only ever deployed the app from Visual Studio to my device. It worked when deploying the Debug build, then I
    tried a Release build, and it crashed immediately upon launch when trying to register the background task, but then I was able to go back to deploying/debugging the Debug build on the device for awhile. I made more changes, and now neither Debug nor Release
    builds work--both fail on the BackgroundTaskBuilder.Register() call with the error described in the original question:
    "The drive cannot locate a specific area or track on the disk. (Exception from HRESULT: 0x80070019)"
    I've tried changing the Task name during registration, rev-ing the version number of the application, adding the call to BackgroundExecutionManager.RemoveAccess() before BackgroundExecutionManager.RequestAccessAsync(), changing the name of the IBackgroundTask
    concrete implementation and changing the corresponding EntryPoint in the package.appxmanifest (as well as in the BackgroundTaskBuilder instance), and changing the package DisplayName to a new reserved name, all to no avail. The only thing I didn't try
    was associating with an entirely new app in the app store or paving my phone, as these are both fairly undesirable "workarounds."
    Even if this won't affect clients downloading the app from the store, this is a major roadblock during development, as we can essentially only use the emulator to test an app specifically designed to help solve problems involving moving around physically
    in the real world.
    Any more information would be greatly appreciated. If there's any information I can provide, please let me know.

  • Shots with specific area in colour with B&W Background

    Hey guys,
    I'm new to Premiere Pro but understand the basics.
    Ive been googling my way around to finding ways to complete my film project.
    One thing that bothers me and I would really like to know (and learn) is how to color in a specific area. Ive googled this and I don't believe I have found exactly what I need. I have uploaded an image of what I want on this discussion. The shots are all black and white but as you see I want to manually color in the areas that are not black and white and in this case, it's the teddy bear. Thanks for anyone who responds and please describe in step by steps. I'm also using CS4. And also, I do have many Adobe programs so if I need to after effects than that's no problem. I quickly created this picture by photoshoping the colored teddy bear and placing him in the black and white surroundings. Thanks.

    I can't remember if it was here or in the After Effects forum, but I'm pretty sure that somebody posted a tutorial about that.

Maybe you are looking for

  • Iphone will not restore Error 21

    Here is a little background to this problem. I had an original iPhone that the Wi-Fi quit working on this past week. The phone was 2 1/2 months out of warranty and Apple would not, or could not do anything to help me other than sell me a new 3G. I ju

  • Problem call Dll C from procedure

    Hi all, I have dll write by C and with function A(String[] param). I want call this is function from procedure on Oracle. Please help me step to step do it. Thank you so much.

  • DBA_SOURCE / DBA_DEPENDENCIES

    Hi I am trying to find dependencies for package using dba_dependencies. It gives me all the dependencies (tables and objects) used inside the package. Is there a way to find attribute dependency and procedure name in a package table_name / column_nam

  • Sdo_util.polygontoline on polygon with hole - multi line?

    If I run sdo_util.polygontoline on a polygon with hole I would expect it to return a multi line with gtype=2006. Is that right? It doesn't in this case: jot_test@johnot> SELECT * FROM v$version; BANNER Oracle Database 11g Enterprise Edition Release 1

  • Set Apex default language application : called by Oracle Portal

    Hi, I'm trying to find a way to call our Apex application from portal with the right language preference. We have the user language preference in a table. I tried to put that value into :FSP_PREFERENCE_LANGUAGE on new session : after authentication,