Follow mouse without going out of the flash document

hello everybody!! I have a movieclip (a line) that follows my
poiner horizontally but i have some problems when my pointer gets
_x = 0 because my movieclip gets (half of it) out of the document.
Is there any way to control the movieclip to not to get out of the
flash document? I hope i have explained it well. xD
PS: Sorry for my english

Investigate the optional arguments for mc.startDrag(). I seem
to recall there being some that limit the area a movie clip can be
dragged in. If you limit your clip's movement to only the areas
where it is completely visible, that should solve the
problem.

Similar Messages

  • I can no longer open attachments in Yahoo email on the same email page without going out to the downloads section to view

    I used to be able to click on download file and the picture would open in the same screen. Now it downloads, but I need to go to the bottom of the screen, click on downloads, and then view the picture.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r124
    Update the [[Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • Flash animations are out of the flash window limit ...

    When I place a flash animation in power point using breeze
    presenter, and I publish the presentation it is possible to see the
    animations that are out of the flash window limit …
    What can I do to make the breeze respect the flash limits and
    hide the animations outside those limits?
    Thanks!

    Just out of curiosity....is it possible that you've got
    elements in flash that begin OFF the flash stage and then animate
    ONTO it?
    There was a *funky* artifact of creating flash animations
    that played very strangely when imported into Breeze; there was a
    tech note about this, but I haven't found it recently. If your
    flash animation *must* be 200 x 200, then what I'd try is this:
    In flash, create a mask layer and be sure to have all other
    layers become masked by it. I realize that without seeing your
    animation, that it's probably "easier said than done"... However,
    the thing to note here is that by masking the stage in flash (and
    thus all the elements animated within it), you'll effectively kill
    the visibility of all visual elements that are off the stage.
    For what it's worth, I'd be happy to assist if you need
    further help. Just drop me a note using the private message
    function, or email me at [email protected]
    HTH,
    Rob

  • Is there a way to view earlier messages in a thread without going through each day? Also, can you make a photo album from the same text thread without going back to the beginning?

    Is there a way to view earlier messages in a thread without going through each day? Also, can you make a photo album from the same text thread without going back to the beginning?

    Turn Settings > General > Accessibility > Zoom to ON.

  • How can I have one thing open in Safari on my MacBook Pro and search for another thing in Safari without closing out of the other? For instance, How can I leave Pandora playing while I search Facebook?

    How can I have one thing open in Safari on my MacBook Pro and search for another thing in Safari without closing out of the other? For instance, How can I leave Pandora playing while I search Facebook?

    With Safari open use the Command + T keyboard shortcut to open a new tab.
    Or, Command + N to open a new window.

  • How can I get out of the flashing Apple screen on Iphone 3 ?

    How can I get out of the flashing Apple screen on Iphone 3 ?

    Turn it off.  While pressing and holding the Home button, connect it to your computer with iTunes open.  Hopefully you will be able to restore it after that.  If not, it requires service.

  • Motion Tracking An Object That Goes Out Of The Sceen?

    Hi i am quite new to after effects i have only been using it for a few months im using after effects cs4,here is my problem i am trying to track a picture frame but when the picture goes out of the scene,the motion tracking path just goes crazy. It works great when the picture frame is in the scene
    example
    the camera is pointing straight at the picture frame, works perfect, but when the camera turns right , and the picture frame is no longer in the scene, my track path just goes wrong.
    How do i stop this?
    Do i have to make a seperate motion tracking null object? or is it something to do with backwards tracking?
    Any help on this would be great i have serched youtube,adobe for the answer but i cannot find it anywhere
    Thanks
    Mike

    Yes, that's just how it is. AE has no way of knowing where those markers might be and even tracking points separately and in segments can only take you so far. You'll have much better luck trying such things with mochaAE, which comes with the main program. IUt assumes that all points would be part of a plane. If even that isn't enough, then probably 3D matchmoving tools like SynthEyes are your only option...
    Mylenium

  • If I am going out of the country will turning roaming off work or will I still be busted with a big phone bill?

    I am going out of the country tomorrow and was wondering if I turn off roaming will it work or will I be getting a nice big phone bill ? I have heard of some people getting charged with a lot and others turn airplay mode on but don't recieve messages when they are connected to wifi or when they turn airplay mode off. Help please ?

    Hello, Quinny56. 
    Thank you for visiting Apple Support Communities.
    Here is some information that you may find helpful with your question.
    iPhone and iPad: Using cellular networks while in another country
    http://support.apple.com/kb/ht1807
    Cheers,
    Jason H.

  • How can I find out in the billing document, who creat the billing.

    how can I find out in the billing document, who creat the billing.
    thanks.

    On  VF03 -Enter billing document number>>press on enter button>>you will get overview of billing document item>> select menubar>>Goto>>header>>header parthner>>you will get full screen with Name "Created By".
    Thanks&Rgds,
    Rajesh

  • JTable not getting latest data (unless mouse is focussed out of the cell)

    Hi,
    I am using JDK 1.4.2. I am having a basic problem of reading the data present in a JTable.
    JTable table = new JTable(9, 9);
    JButton solveButton = new JButton("Solve");
    solveButton.addActionListener(new DumpListener(table));The dump listener just dumps the data in the table.
    I have a 6*6 jtable where each value is a number. Now i focus the mouse on say square (1,2) and enter some data, then on square (5,5) and enter data say "4". There is a button in this panel, and which on being clicked, gets the table data and does some operation on it.
    Problem is when i use the "getValueAt" API, it gives correct data for square(1,2) but not for (5,5). This is because the mouse focus is still on square (5,5). However if i focus out of square (5,5) using my mouse (to some other random square) then the data comes up properly. Am i missing something here?
    I understand it is to do with the data model getting altered only when the mouse if focussed out? But this seems to be very trivial. Is there a way of getting the data out without focusing the mouse out of the cell?

    My solution uses a JFrame instead of a JApplet.
    But I think the effect is the same.
    First of all, the setVisible(true) should be put after all components are added.
    Secondly, when you retrieve data in the table, you'd synchronized() the model.
    Thirdly, I didn't find any problem when I call stopCellEditing(). Perhaps I'm using Java 5. Anyway, please try whether the following code works.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.TableModel;
    public class DummyFrame extends JFrame {
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        DummyFrame frame = new DummyFrame();
                        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        frame.pack();
                        frame.setVisible(true);
         public DummyFrame() {
              JTable table = new JTable(9, 9);
              JButton data = new JButton("DATA");
              data.addActionListener(new SimpleButtonListener(table));
              JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              panel.add(table, BorderLayout.CENTER);
              panel.add(data, BorderLayout.SOUTH);
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(panel);
    class SimpleButtonListener implements ActionListener {
         JTable table;
         public SimpleButtonListener(JTable table) {
              this.table = table;
         public void actionPerformed(ActionEvent e) {
              synchronized (table) {
                   if (table.isEditing()) {
                        System.out.println("Is Editing!");
                        table.getCellEditor(table.getEditingRow(), table.getEditingColumn()).stopCellEditing();
              printArray(getData());
         String[][] getData() {
              synchronized (table) {
                   TableModel model = table.getModel();
                   synchronized (model) {
                        String[][] question = new String[9][9];
                        for (int i = 0; i < 9; i++) {
                             for (int j = 0; j < 9; j++) {
                                  question[i][j] = model.getValueAt(i,j) == null ? null : model.getValueAt(i,j).toString();
                        return question;
         void printArray(String[][] question) {
              int rows = question.length, columns = question[0].length;
              for (int i = 0; i < rows; i++) {
                   for (int j = 0; j < columns; j++) {
                        System.out.println("[" + i + ", " + j + "] -> "
                                  + question[i][j]);
    }And ... please don't forget to give me the 5 Duke dollars if it works.
    Thank you!
    Asuka Kenji (UserID = 289)
    (Duke Dollars Hunting now ...)

  • Disable window focus follows mouse without click

    I've noticed that I can scroll a window without clicking on it by moving the mouse cursor over that window.  For example, this Safari window has focus, and I'm typing in it, but if I move the cursor to another application (Terminal or another application), I can scroll that other window without having to click on it.  This gets me into trouble, because I can scroll around the other window then start typing, thinking that I'm in that other window because I'm actively doing something to it (scrolling), but the text goes to the window which really has the focus.  For example, Mail has focus, then I scroll around a Terminal looking for something, and I type the delete key forgetting that I'm in Mail.  This has an advantage in that one can scroll a window that is not on top, but there are drawbacks.
    Is there a way to require the click in a window in order to scroll in that window?
    Thanks,
    ==Leonard

    Cool! Thanks for Window Wrangler! That's a pretty neat program. Not what I was looking for exactly, but it'll do just fine.
    I now see what you were trying to show me with the zoom. That's not what I'm looking for.
    What I'm looking for is focus follows mouse. What it does is as you put a mouse over a window, that window gets focus. But does not raise to the top.
    So say I have a web browser open, and my IM client open. I'll leave the client at the bottom of the screen and have the browser sized up just enough to see the text field and the first two lines of conversation of the chat.
    Now, on my linux system to reply all I have to do is put the curser over the IM window and I can type into it without having to click on it and bring it to the top.
    For that example, it isn't a huge deal. But when you have 5 or 6 windows open all organized with each on the right level, bringing one to the top will screw it up.
    I'm liable to have a few terminal windows, IM, email, IM, some programming ide, etc open at once. It's especially useful for web development. I can have the source file open and edit it, but not bring it over the browser window so I can have an idea of what I'm doing with the source.

  • I have an ipod touch that i first recieved in the united states, now i am currently residing in canada. my question is can i have an itunes account from both countries without wiping out all the songs and apps. on my ipod??

    please help, i am wondering if i can have both an itunes account from the usa and canada on the same ipod without wiping out my music and apps.???

    You can retain the apps and music for the USA account.  However, you can only use the iTunes store in the country you are physically located.  Thus, you can't update the USA purchased app when in Canada.  See the following too:
    iTunes: How to share music between different accounts on a single computer

  • SCEP going out to the internet after being migrated to SCCM 2012 and saturating facility MPLS.

    I was unaware of the fact that SCEP was gonig out to the internet to pull down 120 megs worth of data each time a client is migrated. I'm trying to determine the easiest or best way to avoid this. I've done some research and it looks like bundeling the SCEP
    policy with the migration package might work. I also saw some tool that you can use to add a SCEP update rollup to the package. Ultimately if i could just get the exact URL the clients are going out to our networking team could apply QoS to this URL. Unfortunately
    though it appears in the MPCMDRUN.log to go to go.microsoft.com/fwlink, but on the networking side in pathview i seen the client ends up going to Akamai.
    I'm assuming MS offloads their web traffic to Akamai and that first link is redirected, if that is even the right link. Does anyone know a way i can prevent this while still getting the client up to date. This entire time I thought the clients would pull
    what they needed from the SCCM 2012 env. I'm using ADR to push the definitions and that seems to be working fine except for 2 situations. One a client is migrated, or 2 the client comes online after being offline for more than 7 days and goes out.
    Either way if someone could provide me with the URL for throttling or a better method for deploying I would be very grateful. So far we've migrated about 8 thousand clients and have about another 10 thousand to go. The majority of the clients have local
    pull DPs, and if further details of my infrastructure would be helpful please just let me know.
    Thanks,
    -KR

    Jorgen,
    I appreciate you pointing out the setting and that has helped partially and I was able to track down the URL that is being used by the clients for QoS by networking. Now management has pushed back with why are the clients going to the internet at all. I
    can understand why. If were deploying all the patches why can't the clients pull their SCEP engine from the SUP/WSUS server. I see it finding it in the MPCMDRUN.Log file but it still goes out to Microsoft to pull the 120 meg file. Do i not have any other options
    for pushing the engine to the clients, if ADR is working for current clients what am i missing. I'm sure its something obvious, but my migration is on hold up until I can keep the clients from going to the internet for their new engine and deltas. 
    Any help you could provide i would very much appreciate. Thanks again Jorgen.
    -Sam Kachar

  • Restore My used Device without sign out from the previous ID

    I bought a used iPad Mini  from one of the shops and i do not know the new way about restore without sign out from apple ID of someone else I make a restore for it so it is lucked now with unknown ID and I returned it to the show and advised me to contact you , now my ipad is lucked so I need your support please if you need any information about me I am ready &amp; responsible for any thing .
    Best regards.  

    You've run into iOS 7's Activation Lock:
    http://support.apple.com/kb/PH13695
    Without finding out the credentials (Apple ID, password) of the previous owner, you cannot unlock nor activate the device for use under your own Apple ID. this is to prevent/deter theft of iPhones & iPads.
    You need to contact the place of purchase to find out if they can contact the previous owner to have it removed from their Apple ID so it can be used by yourself. they can do it without having access to the device as outlined here:
    http://support.apple.com/kb/PH2702

  • When I try to open some web sites i am blocked by MOZILLA and redirected to a site I did not want and am unable to close or go back without going back to the home page. Help help help

    I have removed the check from the pop up blocked in the MOZILLA options but still get this problem of not being able to open certain sites. The MOZILLA icon appears with the three options available, but before i can click on one I am automatically redirected to a site I did not want, and when I try to go back it will keep coming back to the site MOZILLA put on the computer. I have to close and go back to the home page and start all over again. I have installed a new virus protection system STOPZILLA and could this have any bearing on the problem. After awhile it becomes very frustrating trying to get on line information and being continually redirected. Any ideas?

    There are other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r32
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

Maybe you are looking for

  • Abap web dynpro and portal events

    First off, a little introduction: My name is Martin Kroppen, I am an Abap developer for SAP Netherlands, and I am currently involved in a project for hospitals to built a portal. For this, I have created 2 Abap web-dynpros, and then impemented the vi

  • Itunes library will not sync with iphone

    sync will not update device playlist to that in itunes.

  • Charging is not supported with this accessory

    Like the title says, I'm getting this error on my iphone 3gs. I've been reading thru some forums and other discussions about this and can't really figure out exactly what happened. I just started getting this after last night after I installed some a

  • Webcenter and ADF

    I am confused. Can webcenter be used for portal? Or it is an ADF environment? What's the benefit of using webcenter?

  • ITunes U will not allow me to subscribe to any course, why?

    So I have an iPhone 4 with the latest iOS. I recently wanted to try out Apple's iTunes U app. I downloaded the app just fine but when I go to "subscribe" to any particular course, it allows me to press it and basically confirm it and then...nothing.