Mouse panning issues in Flipview

Hi,
I have a problem in mouse panning issues in WinJS Flipview control.
Here is my sample:
https://skydrive.live.com/redir?resid=533F417A2E04AEC4!1009
My problem is: I can zoom images in flipview and panning, zooming or scrolling them via finger touch.
So, is there a simple way to enable mouse panning, scrolling?
I think it is useless to zoom if the user cannot drag image by mouse if there is no touch device.
Thanks so much.
Nick

I think adding MSGesture is a fine idea. What you're experiencing here is just a difference in the native workings of touch and mouse, so you have to manually compensate for these differences.
Because panning and pinch/zoom in touch mode give you behaviors that are not directly translatable to mouse actions, the mouse does not interpret similar actions unless you ask it do.
Panning with a finger is the most natural thing to expect for touchmode, but it does not directly translate into click and drag, and for that reason, mouse does not pan.  However, you can just add the event so that you get the same behavior.  It's
extra work, but you have to take into account that not all developers want the same behavior.  For example, I expect that someone will say "I don't want to pan when I touch the screen, I want to draw a line, like I can with a mouse.  How do
I disable this behavior?"
I hope this clears things up for you.
Matt Small - Microsoft Escalation Engineer - Forum Moderator
If my reply answers your question, please mark this post as answered.
NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
objects and unknown namespaces.

Similar Messages

  • Mouse clicking issues

    For the last 2 weeks or so I all of a sudden have mouse clicking issues on a 2009 iMac. The mouse (I have tried 3 different ones from apple and Logitech) seem to be able to open files etc. on a click. I have to click repeatedly to get it done. When I run the disc utility it mostly goes away. Now, I run the disc repair every morning to make it go away. Annoying. I have seen other people having similar issues - it sounds like a OS issue????

    This same scenario has happened to me sporadically over the past few months and seems to be increasing. I have the Logitech Cordless Optical Mouse for Notebooks. Got it 3 years ago for use with my G4 PowerBook (1.5 GHz, 2 GB RAM, OS 10.4.8). First I thought it was the batteries, but then realized that if I'd just wait a few minutes the problem would usually go away. Nothing new electrical on my desk that would cause it. Gets really annoying. The mouse becomes sluggish and the clicks are non responsive (a right click will open a sub-menu window, but then no other clicks work. Trying to move the mouse around on the screen gives spotty results - stops and starts - as if I'm moving it on a reflective surface. After multiple clicks the window goes away. I can disconnect the USB transmitter and have complete control with the mousepad.
    Sometimes the problem won't occur all day long. Other times it comes and goes multiple times during an hour. A restart will usually get it out of that overly annoying loop.
    I bought a new Logitech Mouse a few days ago, thinking mine was wearing out, but the same thing happened within minutes.
    I can only think there's some conflict with an OSX update. VERY frustrating. I don't want to go back to a wired mouse.
    So I, too, am eager for a solution.
    Thanks,
    -Scott
    PowerBook G4, 15 in., 1.5 GHz   Mac OS X (10.4.8)   2 GB RAM; 2 LaCie 250 GB FW drives; 1 LaCie 500 GB FW drive

  • Mouse Focus Issues

    hi,
    Are there any known mouse focus issues in r12 (r12.6) ?
    we have couple of users who have these problems. this isn't with all but few of them.
    thanks,
    jazz

    Jazz,
    Review the following documents, and see if it helps.
    Note: 457136.1 - On R12 Application, Randomly The Mouse Navigation Stops Working
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=457136.1
    Note: 468724.1 - Rel 12 : Mouse Cursor Is Frozen (Loss Of Focus In Applet) After Minimizing And On Restoring the Form To Normal Size
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=468724.1
    Note: 824000.1 - Unable to Use Mouse Cursor After Accessed on Folder Tools box
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=824000.1
    Regards,
    Hussein

  • Panning issues and seemingly random loss of all audio. ***.

    i've been using logic for a few years now, and i just created a new project exactly as i've done about 30+ times.... only for some reason none of the pan settings on the individual tracks are working.  the pan dial looks just like it normally does, except everything is mono, straight down the gorramn middle.  the one track that will allow panning is the output 1-2 track (and probably the master, although i didn't really mess with that one), but i don't think that having the entire audio field set slightly to the side will make this sound very great.
    also, i'm losing all audio for what seems an awful lot like no reason at all.  i press play and i can see everything moving as it should. each channel is doing it's thing and seems to be receiving, processing, and sending a signal, but i'm getting nothing in the headset.  i had to restart logic to regain audio.
    i appreciate any and all help, and i realize that the fault probably lies in my court as usual. 
    thanks

    @pancenter - nope. that is still checked.
    @chorleyman - out 1-2 is still in stereo, and now i've switched all the individual tracks to stereo just to be sure, but it doesn't seem to be helping.  let me describe my project a bit more.... i've got six guitar tracks, and all of them being bused to an aux.  that aux won't pan either, although if i hard pan it L or R and then hard pan an individual guitar track in the opposite direction, i hear nothing from that track.
    i've got one vox track bused to another aux. same story there.
    and i've also got two software instruments (a kick and a snare) that go straight to out1-2, and those won't pan either.
    let's see... other equipment... not a very extensive list.  for recording i used a usb guitar cable which i don't have plugged in for the mixdown, although the panning issues began before i unplugged that.
    other than that i have some headphones plugged into the headphone jack on the mac.
    regarding the loss of audio, i've gotten this message a few times, although it didn't pop up the first couple times i lost audio so i'm not sure the answer lies here:
    Error while trying to synchronize Audio and MIDI.
    Sample Rate 42098 recognized.
    Check conflict between Logic Express and external device.
    thanks to both of you for responding!

  • Mouse panning

    hi... my mouse panning not working properly..
    my script is---
    onClipEvent(load){
        thwidth = this._width;    //Variable for image width
        stwidth = Stage.width;   //Variable for stage width
        speed = 30;
    //    The above variable is speed.
    //    The higher the value, the slower the image moves.
    onClipEvent(enterFrame){
        this._x -= (_root._xmouse-(stwidth/2))/speed;
        //Above line moves the image
        if (this._x>=(0+(thwidth/5))){
            this._x = (0+(thwidth/5));
        //If image reaches the end, then stop it.
        if (this._x<=5){
            this._x =5;
        //Same for opposite side.

    The following enterFrame should work if the registration for the movieclip is in the upper left corner:
    onClipEvent(enterFrame){
        this._x -= (_root._xmouse-(stwidth/2))/speed;
        //Above line moves the image
        if (this._x>=0){
            this._x = 0;
        //If image reaches the end, then stop it.
        if (this._x<= stwidth-thwidth){
            this._x = stwidth-thwidth;
        //Same for opposite side.

  • Please fix mouse acceleration issue

    Is Apple doing anything to fix the mouse acceleration issue? Do they know and care? I found Windows 7 even XP mouse acceleration to be great. I really wish Apple can fix something so basic.

    I have adapted this advice from a post by nycruza
    "VOLUME Control Procedure"
    http://discussions.apple.com/thread.jspa?threadID=1020767&tstart=1065
    1. Obvious but indeed there are some that forget to remove the plastic covering.
    2. Go into settings and move the volume software sliders all the way to the RIGHT. These can cap the max volume allowed of various sound outputs. If you've capped the max output, then attempt to turn your earpiece up...it won't be too loud.
    3. AFTER you have done step 2 above, use the rocker switch on the left side of the phone and push the upper side of switch. (this is ringer volume)
    4. DURING A CALL, use the rocker switch on the left side of the phone and push the upper side of switch. (this is earpiece volume)
    Note that the behavior in #3 and 4 is standard to how many cell phones operate.
    IF after doing all 4 above and your earpiece or speaker is still low or muffled you probably have a defective device.

  • Scroll pane issues

    I hope someone can help. I have designed a site and on
    certain pages there are scroll panes with jpgs. When I preview the
    movie on my computer everything seems to work fine. When I upload
    it to the server and look at the page the content that is supposed
    to be in the scroll pane is all out of whack. Then I reload the
    page and everything is fine. This only happens in Internet
    Explorer. It works fine in Firefox. Please look at the site
    www.gastropod.ca/new site/index2.html
    This is occurring mostly in the food menu and drink menu.
    Any help would be wickedly appreciated!!!!
    Thanks in advance.
    Ryan

    @sjmphoto0300: I have a Dell XPS 15 502X laptop (running Win 7 Home) and had the same scrolling issue as you in LR 3.6 when in the Library module only (the Develop module sidebar scrolling works fine). I could not scroll using my touchpad on the left or right pane unless my cursor was directly over either thin grey scroll bar or on the actual sidebar headings (e.g. "Catalog," "Folders," or "Quick Develop"). Mousing over the latter would only enable me to scroll until the cursor was no longer over the heading which was pretty useless.
    I have Synaptics TouchPad v7.4 installed. While I don't have an option in my Mouse properties to specify certain programs that don't scroll properly as mentioned in another post, I did find a solution that works for me!
    I had to do TWO things to get scrolling in the sidebars working properly:
    1) In this thread (http://forums.adobe.com/message/3888114#3888114) it was mentioned that the Synaptics scrolling graphic that appears (see screenshot below) interferes with scrolling and the scrolling graphic can be disabled with a registry tweak and then restart the Synaptics applications (2) or reboot.
    2) Right-click an empty spot on the desktop and go to Personalize > Change Mouse Pointers > Device Settings (Synaptics logo on tab) > Settings. Click on Scrolling on the left of the Synaptics Properties window > Scroll item under pointer. Click Enable.
    That got sidebar scrolling working without having to keep the cursor hovering above the skinny scrollbars. It seems like the Synaptics software doesn't recognize what area is always scrollable in Lightroom when "Scroll selected item" is selected.
    Hope this helps someone else out there.

  • "Mouse Over" issues in Logic Pro - Mountain Lion

    Hi,
    Since I upgraded to Mountain Lion, I spotted an issue with Logic Pro (Logic 9).
    In the Arrange window, when pointing the mouse at the end of a region, the pointer icon doesn't change to the looping (upper right corner of the region) or resize (lower right corner) icon.
    As a result, those functionalities (looping and resizing regions) are gone.
    Anyone having the same issue?
    Is there a way to solve this or do we need to wait for a Logic Pro update to get these back?
    Thanks in advance,
    A nice day everyone,
    Vince

    Vlvl wrote:
    As it's the only problem I have noticed since the upgrade, and as I mentioned in my last post, looking like a minor problem to me, I will keep Mountain Lion.
    But anyway, thanks for the advice, Ivan.
    Vince
    No problem, as a professional musician using Logic I learned that lesson the hard way first time around. Hard as it was to not have the toys I soon learned that stability ruled the day....

  • Bluetooth Mouse Driver Issues after updating to SP1

    Greetings!
    After upgrading to SP1 my bluetooth mouse stopped working.  The dongle I'm using is being detected fine, and when I scan for the mouse I can find it, but when I try to connect to it I get a "Locate driver" message from Vista.  When I let it scan for the driver it is unable to find anything compatible, so when I tell it to scan the CD that came with it again it finds nothing.  It's like the Bluetooth HID Device driver is no longer working.
    This is the dongle:
    http://us.kensington.com/html/9403.html
    This is the mouse:
    http://us.kensington.com/html/12635.html
    Some of the things I've tried:
    Uninstalling and reinstalling the WIDCOMM Bluetooth stack.  I've tried using Vista's Bluetooth stack instead of the WIDCOMM stack, with no luck.
    I've also tried the Bluesoleil drivers with no luck there either, in fact those seem to break the dongle and Vista is no longer able to detect it.
    I've tried the install CD that came with the mouse, but it seems that is for Windows XP only.
    I've tried another Bluetooth mouse that produces the exact same results, with a CD that is for Vista.
    Anyone else having this issue?

    Just wanted to update this with an answer.
    I'm pretty sure that running vsp1cln.exe was the reason why my Bluetooth and iPod stopped working.  I reinstalled Vista and upgraded to SP1 without running that tool to clean up the install files and both bluetooth and my iPod are working again.  It must clean up the driver files that they were using and the new files are not compatible or something.  Not sure really.

  • Mouse moving issue in sql developer 3.2

    Hi,
    I'm using sql developer 3.2 in vmware .I'm facing issue  when i try to select the package/procedure from left side tree structure with mouse,mouse pointer  is moving to some other place.
    If i try to click on one object name(procedure/package/function) then  mouse pointer is moving to other object name automatically.It is very difficult to work .Can some advice why it is ? And how i can resolve?
    And at the same time no issue with  sql developer 1.1 .
    Environment:
    In side vmware
    Os:Xp
    Sql developer  Version 3.2.20.09

    Enable security descriptors = Allow virtual applications full write permission to the virtual file system.
    Here is how it looks like:
    https://twitter.com/packageologist/status/462180503995813888/photo/1

  • Lenovo G550 - Keyboard/Mouse/Pointer Issues - PLEASE HELP Tech suppport couldn't.

    I spent over an hour on the phone with Lenovo tech support last week to try to solve this issue and it is not solved. The guy had never heard of it and kept researching how to fix it.  I personally  have this feeling that it's a very very simple issue but I can't figure out how to correct it.  I've changed mouse/pointer settings and it still isn't working.  I love my new laptop in every other way but i'm getting so frustrated with it I'm ready to send it back because of the problem with the mouse/pointer.  So if anyone could help me I'd appreciate it greatly.
    I will be typing and out of nowhere the cursor will move to wherever the mouse is...or it will highlight everything I just typed and delete it.  I've had to type much slower and keep moving the mouse but when i'm working on my projects and typing away and highlighting/editing, I get into the work and it's a pain in the rear when the cursor suddenly moves a paragraph up and I am still typing away and sometimes don't realize it until i've typed another two sentences.  Hence the typing slower.
    Today it deleted discussion posts I had typed up for my online classes before I had hit submit. Causing me to waste another 30 minutes trying to retype what I'd already done.  I was ready to throw this laptop in the garbage.
    I decided to not do that and post in this forum in the hopes that someone will be able to help me.
    Thank you,
    Komal

    @ shelagh
    try to un-install touchpad drivers,restart your computer and check if issue persists.
    and/or try to flash bios update ( for bios update, read readme file first )
    http://consumersupport.lenovo.com/us/en/DriversDownloads/drivers_list.aspx?CategoryID=600154

  • Preview Pane issue for Microsoft Word 2010

    This issue came up from our customer. Please find the details below.
    OS : Windows 7 Enterprise SP1
    Microsoft office professional Plus 2010
    Issue : When previewing files in Windows explorer, the "Down Arrow" key, when pressed, navigates from one file to another (expected behavior). In between, if we have a Word file of multiple pages, the key stroke is shifted to Preview pane. The
    pages in the word file (@ preview pane) starts scrolling down.
    This is not the case, when you have Microsoft word running at the background. When I tried the same, after opening Microsoft word, the "Down Arrow" key navigates from one word file to another (as expected).
    Why is this happening? Kindly suggest.
    Note: I checked a similar question in http://social.technet.microsoft.com/Forums/windows/en-US/337932b2-0c00-4ac0-8ab7-0c6bf4be5e64/preview-pane-pain?forum=w7itproui. But that did not help

    Hi,
    You can directly paste the screenshot by
    Or upload the picture in OneDrive, you can refer to this link
    http://www.wikihow.com/Use-SkyDrive
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Yolanda Zhu
    TechNet Community Support

  • Mouse Coordinate issues caused by Scaling Components in a JScrollPane

    Hi All,
    I've been attempting to write a program that includes a simple modeler. However, I've been having some trouble with being able to select components when attempting to implement zoom functionality - when I "zoom" (which is done via scroll wheel) using the scale Graphics2D method, while it zooms correctly, the mouse location of components do not seem scale.
    I've tried one of the solutions found on the forums here (create a custom event queue that adjusts the mouse coordinates) and while it seemed to work initially, if I zoom in and adjust the current view position using the scrollbars, certain components contained in the JPane will become un-selectable and I haven't been able to work out why.
    I've attached a SSCCE that reproduces the problem below - it implements a JScrollPane with a JPane with a few selectable shapes set as the Viewport. The zoom is done using the mouse scroll wheel (with wheel up being zoom in and wheel down being zoom out)
    Any help in order to fix the selection/de-selection issues on zoom would be greatly appreciated! I've spent some time reading through the forums here but have unfortunately not been able to find a workable solution around it.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class Tester extends JScrollPane
        public Tester() {
            this.setViewportView(new Model());
        public static void main (String[] args) {
            JFrame main = new JFrame();
            main.add(new Tester());
            main.setSize(500,300);
            main.setResizable(false);
            main.setVisible(true);
    class Model extends JPanel implements MouseListener, MouseWheelListener
        private GfxClass selection = null;
        private static double zoomLevel = 1;
        // zoom methods
        public void setZoom(double zoom) {
            if( zoom < 0 && zoomLevel > 1.0)
                zoomLevel += zoom;
            if( zoom > 0 && zoomLevel < 5.0)
                zoomLevel += zoom;
        public static double getZoom() { return zoomLevel; }
        public void resetZoom() { zoomLevel = 1; }
        public Model() {
            super(null);
            addMouseListener(this);
            addMouseWheelListener(this);
            MyEventQueue meq = new MyEventQueue();
            Toolkit.getDefaultToolkit().getSystemEventQueue().push(meq);
            for(int i = 0; i <7; i++) {
                double angle = Math.toRadians(i * 360 / 7);
                GfxClass oc_tmp = new GfxClass((int)(200 + 150 * Math.cos(angle)), (int)(125 + 100 * Math.sin(angle)), "Element"+i);
                add(oc_tmp);
            repaint();
        public void paint (Graphics g) {
            Graphics2D g2 = (Graphics2D) g.create();
            AffineTransform oldTr=g2.getTransform();
            g2.scale(getZoom(),getZoom());
            super.paint(g2);
            g2.setTransform(oldTr);
            setBackground (Color.white);
            super.paintBorder(g2);
        private static class MyEventQueue extends EventQueue  {
            protected void dispatchEvent(AWTEvent event) {
                AWTEvent event2=event;
                if ( !(event instanceof MouseWheelEvent) && (event instanceof MouseEvent) ) {
                    if ( event.getSource() instanceof Component && event instanceof MouseEvent) {
                        MouseEvent me=(MouseEvent)event2;
                        Component c=(Component)event.getSource();
                        Component cursorComponent=SwingUtilities.getDeepestComponentAt(c, me.getX(), me.getY());
                        JPanel zContainer= getZoomedPanel(cursorComponent);
                        if (zContainer!=null) {
                            int x=me.getX();
                            Point p=SwingUtilities.convertPoint(zContainer,0,0,(Component)event.getSource());
                            int cX=me.getX()-p.x;
                            x=x-cX+(int)(cX/getZoom());
                            int y=me.getY();
                            int cY=me.getY()-p.y;
                            y=y-cY+(int)(cY/getZoom());
                            MouseEvent ze = new MouseEvent(me.getComponent(), me.getID(), me.getWhen(), me.getModifiers(), x, y, me.getClickCount(), me.isPopupTrigger());
                            event2=ze;
                super.dispatchEvent(event2);
        public static JPanel getZoomedPanel(Component c) {
            if (c == null)
                return null;
            else if (c instanceof Model)
                return (Model)c;
            else
                return getZoomedPanel(c.getParent());
        private void deselectAll() {
            if(selection != null)
                selection.setSelected(false);
            selection = null;
        public void mouseClicked(MouseEvent arg0)  {    }
        public void mouseEntered(MouseEvent arg0)  {    }
        public void mouseExited(MouseEvent arg0)   {    }
        public void mouseReleased(MouseEvent arg0) {    }   
        public void mousePressed(MouseEvent me) {
            Component c1 = findComponentAt(me.getX(),me.getY());
            if(c1 instanceof GfxClass)
                if(selection != null)
                    selection.setSelected(false);
                selection = (GfxClass)c1;
                selection.setSelected(true);
            else
                deselectAll();
            repaint();
            return;
        public void mouseWheelMoved(MouseWheelEvent e) { // controls zoom
                int notches = e.getWheelRotation();
                if (notches < 0)
                    setZoom(0.1);
                else
                    setZoom(-0.1);
                this.setSize(new Dimension((int)(500*getZoom()),(int)(300*getZoom())));           
                this.setPreferredSize(new Dimension((int)(500*getZoom()),(int)(300*getZoom())));     
                repaint();
    class GfxClass extends Component { // simple graphical component
        private boolean isSelected = false;
        private String name;
        public GfxClass(int xPos, int yPos, String name) {
            this.name = name;
            this.setLocation(xPos,yPos);
            this.setSize(100,35);
        public void setSelected(boolean b) {
            if( b == isSelected )
                return;
            isSelected = b;
            repaint();
        public boolean isSelected() {
            return isSelected;
        public void paint(Graphics g2) {
            Graphics2D g = (Graphics2D)g2;
            if( isSelected )
                g.setColor(Color.RED);
            else
                g.setColor(Color.BLUE);
            g.fill(new Ellipse2D.Double(0,0,100,35));
            g.setColor(Color.BLACK);
            g.drawString(name, getSize().width/2 - 25, getSize().height/2);
    }Edited by: Kys99 on Feb 22, 2010 9:09 AM
    Edited by: Kys99 on Feb 22, 2010 9:10 AM

    Delete your EventQueue class. Change one line of code in your mouse pressed method.
    public void mousePressed(MouseEvent me) {
        Component c1 = findComponentAt((int) (me.getX()/getZoom()),
                                       (int) (me.getY()/getZoom()));
    }

  • Lightroom and Windows mouse focus issues.

    In one aspect Lightroom have been always behaving different from other Windows application: Its speed of grabbing mouse focus and moving window to the foreground is exaggerated. This problem will be observed only by people using their WinXP computers in "X11 mode", like with Unix, what allows to perform interaction with processes associated with windows without ever clicking on, or raising such window. Should you be working on large computer clusters as I do, this focusing feature its a blessing.
    This how you can reproduce: Use Tweak UI to adjust the mouse behavior. Select "Mouse," step down to "X=Mouse" and check "Activation follows mouse." Do not select "autoraise."
    Now your WinXP will behave similar to the real X11 xterm with mouse having the "no raise selection" policy. Its not quite identical to xterm, but it really works perfectly in most cases.
    Except... well, except with Lightroom. Lightroom grabs the pointer and pushes the window to the foreground in splits of a second. For example, go to
    "Help|About Adobe Lightroom" to see the credit window. It appears than as usual, but since the help menu will be dismisses, the pointer stands on the main Lightroom window, what makes the credits window vanish in split of a second. No chance to see it!
    Another case: Assume that Lightroom uses almost the entire desktop down to the task bar, and your browser window is smaller. Select the browser on the taskbar and try to move mouse to it. No chance! Lightroom will take over and pop itself to the foreground again. The only solution is to minimize Lightroom. And than sometimes something happens that Lightroom will not restore itself anymore! The "Restore" operation is grayed out, one can only Maximize it. We have reported this numerous times before.
    I am aware that this problem relates only to WinXP users with X11 mouse mode, but with Lightroom reaching now a high degree of maturity, maybe we could take a look at this problem as well?

    In order to overcome most of the known navigation and/or focus issues you need to be using the following:
    <li>Forms 10.1.2.3 or newer (latest is 11.1.2). If/when you are using 10.1.2.3 you would also need to install patch ID 9593176 as this contains additional fixes for focus issues.
    <li>JRE 1.6.0_26 or newer (latest is 1.6.0_30). The latest is always recommended as it contains the most up to date fixes for both technical issues and security issues.
    Patches are only available on MyOracleSupport: http://support.oracle.com

  • Magic Mouse connectivity issue

    Magic Mouse after power on button is switched on, no light indication at all. Frequent connection timed out before it becomes totally unusuable. I bought the Magic Mouse only for 7 months and had changed the mouse once. I had also changed the batteries to alkaline ones but didnt help reviving the mouse. Is this a hardware quality issue or setup issue? please advise.

    HellO:
    No light at all seems to indicate a faulty mouse.  I suggest you contact Applecare (or an Apple store) for a warranty replacement.
    Barry

Maybe you are looking for

  • File adapter polling location changing in between the process

    Hi, One more scenario, Say File adapter is polling for files in C:\. In between the process, the polling location needs to be changed to D:\. How to do this. Please help. ~rps

  • HDD for Mac and Windows?

    I have to deliver about 300Gigs of photo and video to a client. I was thinking with the cost of HDD being so cheap these days I will just buy a drive and overnight it to them. What type of drive should I be looking at. I am thinking USB transfer is g

  • Trying to reduce and organize photos on my Hard Disk

    For the most part I have been keeping my photos on my working hard disk with only certain collections off line, but the hard disk is filling up more than I want. I have duplicates and unneeded photos. 1. Must I delete them only from the "PHOTOS" at t

  • How do I turn airplay off when the icon is missing?

    I have my iPad hooked up to a projector, and want to play streaming video. A message from the app i am using said I have to turn off airplay, but i cannot find the airplay icon. I swiped the task bar, and its not there. Help

  • Java Desktop ... change "My Computer" lable

    Solaris 10 03/05, with first recommended patch cluster on a SunBlade 1500. In the JDS desktop, there is an Icon labeled "My Computer", and the user (our IT director) wants that to be the host name of the SB1500. But the Rename option is grayed-out, w