Change selfview Position/location in Touch device

Hello

Is it possible to change the position of selfview/location using the touchscreen device by just hold & drag the icon of right-left-top-down, so it appears even on screen.

I just try this on an EX90 running TC6.3 and here's how it works - in the call, if you click on the free view button, you can hold and drag the window discovers on the touch screen to another location and it moves on the screen and the display (see the screenshot of my touch screen while moving the selvfiew).  The six boxes around the enge of the screen are possible locations for placing the selfview window.

Wayne

--

Remember the frequency responses and mark your question as answered as appropriate.

Tags: Cisco Support

Similar Questions

  • Where are offline files stored (to be synchronized)? Can we change the default location?

    Dear
    I use Vista Ultimate.
    Where are offline files stored (to be synchronized)? Can we change the default location?
    concerning
    Maurin

    Hi Maxim P,.

    Sync Center is the place to go to synchronize your computer with network folders, mobile devices and compatible programs. Sync Center can keep automatically your files and folders synchronized in different places.

    Open Sync Center by clicking the Start button, tap all programs, accessories, and then clicking on of Sync Center.

    Sync Center is a feature of Windows that allows you to keep information synchronized between your computer and files stored in folders on network servers. They are called offline files because you can access them even when your computer or the server is not connected to the network.

    You can see the link below for more information about changing the location of the CSC files.

    How to change the location of the CSC folder by configuring the CacheLocation registry value in Windows Vista

    http://support.Microsoft.com/kb/937475

    For more information, see work with network files when you are offline.

    See the links below for more information on synchronization.

    Sync Center: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/Sync-Center-frequently-asked-questions

    How to maintain your information is synchronized

    http://Windows.Microsoft.com/en-us/Windows-Vista/how-to-keep-your-information-in-sync

    Sync Center: recommended links

    http://Windows.Microsoft.com/en-us/Windows-Vista/Sync-Center-recommended-links

    Please post back and let us know if it helped to solve your problem.

    Kind regards

    KarthiK TP

  • Get the location of the device

    I had my application built with HTML5 for OS7, I build for BB10 and I decided to go with a feel more native and waterfalls. I must admit however, the old WebWorks documentation was much wasier and friendly, you had a small example of using each feature.

    I'm having a problem getting the location of the device, I went through the sample application "Diagnoses of the situation", but it's really complicated (he has 3 classes of objects with a ton of features to get the location).

    I'm just trying to find the location of the device, using cell towers, every two minutes. I want to create and the entire class for this? Also, how to trigger this function of the part of Cascades?

    I'd appreciate any help!

    Hello

    Here's a simplified example of code. These files are from the empty project template by default in the IDE of Momentix (file-> New-> project-> BlackBerry Project-> Application of stunts-> empty project Standard). They have been updated to include cellsite positioning updates every two minutes. The output will simply through cost.

    applicationui.h:

    // Default empty project template
    #ifndef ApplicationUI_HPP_
    #define ApplicationUI_HPP_
    
    #include 
    
    #include 
    
    using ::QtMobilitySubset::QGeoPositionInfo;     // so the SIGNAL()/SLOT() macros can have matching signatures.
    
    namespace bb { namespace cascades { class Application; }}
    
    /*!
     * @brief Application pane object
     *
     *Use this object to create and init app UI, to create context objects, to register the new meta types etc.
     */
    class ApplicationUI : public QObject
    {
        Q_OBJECT
    public:
        ApplicationUI(bb::cascades::Application *app);
        virtual ~ApplicationUI() {}
    
        void startCellSiteUpdates();
    
    public Q_SLOTS:
        void positionUpdated(const QGeoPositionInfo & pos);
        void positionUpdateTimeout();
    
    private:
        QtMobilitySubset::QGeoPositionInfoSource * _source;
    };
    
    #endif /* ApplicationUI_HPP_ */
    

    applicationui.cpp

    // Default empty project template
    #include "applicationui.hpp"
    
    #include 
    
    #include 
    #include 
    #include 
    
    #include 
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app)
    : QObject(app)
    {
        // create scene document from main.qml asset
        // set parent to created document to ensure it exists for the whole application lifetime
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
        // create root object for the UI
        AbstractPane *root = qml->createRootObject();
        // set created root object as a scene
        app->setScene(root);
    
        // Instantiate the default QGeoPositionInfoSource
        _source = QtMobilitySubset::QGeoPositionInfoSource::createDefaultSource(this);
        if ( _source ) {        // connect to the QGeoPositionInfoSource's signals, to get the position info and/or error status
            connect(_source, SIGNAL(positionUpdated(const QGeoPositionInfo &)), this, SLOT(positionUpdated(const QGeoPositionInfo &)));
            connect(_source, SIGNAL(updateTimeout()), this, SLOT(positionUpdateTimeout()));
        }
    }
    
    // call this method to start the position updates
    void ApplicationUI::startCellSiteUpdates()
    {
        if ( !_source ) {
    
            std::cout << "Error getting default position info source" << std::endl;
            return;
        }
    
        // QtLocation allows control over which provider(s) will be queried for position info. NonSatellitePositioningMethods
        // includes wifi and cellsite fix types.
        _source->setPreferredPositioningMethods( QtMobilitySubset::QGeoPositionInfoSource::NonSatellitePositioningMethods );
    
        // On BlackBerry the default QGeoPositionInfoSource allows finer control over the fix type. This extension, and others, take advantage of the Qt property system.
        // Here we are interested only in cellsite fixes.
        _source->setProperty("fixType", "cellsite");
    
        // set the update interval to a couple of minutes.
        _source->setUpdateInterval(120000);
    
        // start the updates, which we expect to receive in ApplicationUI::positionUpdated()
        _source->startUpdates();
    }
    // slot connected to the QGeoPositionInfoSource::positionUpdated() signal
    void ApplicationUI::positionUpdated(const QGeoPositionInfo & pos)
    {
        // print out the position in a convenient format:
        std::cout << pos.coordinate().toString().toLatin1().constData() << std::endl;
    
        // print out the accuracy as well, if available
        if ( pos.hasAttribute(QtMobilitySubset::QGeoPositionInfo::HorizontalAccuracy) ) {
            std::cout << "    horizontal accuracy = " << (double)pos.attribute(QtMobilitySubset::QGeoPositionInfo::HorizontalAccuracy) << std::endl;
        }
    
    }
    // slot connected to the QGeoPositionInfoSource::updateTimeout() signal
    void ApplicationUI::positionUpdateTimeout()
    {
        std::cout << "timeout occurred" << std::endl;
    
        // On BlackBerry more information as to why the device timed out may be available:
        bb::location::PositionErrorCode::Type errorCode = bb::location::PositionErrorCode::None;
    
        if ( _source->property("replyErrorCode").isValid()  ) {
            errorCode = _source->property("replyErrorCode").value();
            if ( errorCode != bb::location::PositionErrorCode::None ) {
                std::cout << "    " << _source->property("replyErrStr").toString().toLatin1().constData() << std::endl;
            }
        }
    }
    

    And main.cpp looks like this:

    // Default empty project template
    #include 
    
    #include 
    #include 
    #include "applicationui.hpp"
    
    // include JS Debugger / CS Profiler enabler
    // this feature is enabled by default in the debug build only
    #include 
    
    using namespace bb::cascades;
    
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        // this is where the server is started etc
        Application app(argc, argv);
    
        // localization support
        QTranslator translator;
        QString locale_string = QLocale().name();
        QString filename = QString( "SimpleLocation_%1" ).arg( locale_string );
        if (translator.load(filename, "app/native/qm")) {
            app.installTranslator( &translator );
        }
    
        ApplicationUI * appUI = new ApplicationUI(&app);
    
        appUI->startCellSiteUpdates();
    
        // we complete the transaction started in the app constructor and start the client event loop here
        return Application::exec();
        // when loop is exited the Application deletes the scene which deletes all its children (per qt rules for children)
    }
    

    Your file bar - descriptor.xml must contain this line to allow approval of the app for location-based services:

        access_location_services
    

    Also to ensure that location-based Services are enabled under settings on your device.

    Your .pro file should contain this line so that the QtLocationSubset library is linked:

    LIBS += -lQtLocationSubset
    

    I hope this helps!

    Jim

  • Is my client using the web browser editor can change the position of text and images, the site was built with muse

    Is my client using the web browser editor can change the position of text and images, the site was built with muse and at first, tell him that he could change the text and images, but he can't change the location of contents of Th.

    Now he wants to paste and copy directly from the web browser Publisher Word and wants to change all of the place itself.

    Does someone have an answer or another solution?

    Philippe

    First of all, to answer your question about moving content. No, that is not supported.

    Then, never advised him to stick to Word what for the web. Word adds a lot of very strange code that can break your page completely. Tell him if he has a Word to add to the site to paste into Notepad or any other text editor, copy and paste to Muse.

  • How to change the position or timing of a video ads in a video player?

    I want to change the "timing" when the ads will be playing in a video player. Currently, there are rollers (played before the beginning of the video), mid-roll (played between the two) and post-rouleaux (played end of the video). To change the position, I am not able to. Help, please!

    Kind regards

    Nandini

    If you use cuepoints, change their location.

  • How do I change the position of reference world-ready paragraph composer?

    Hello

    I imported a MS Word document in ID, but for some reason any line above notes is on the right side instead on the left hand side. I looked at the options, but I can't find anything that allows me to change the position from right to left.

    I use world-ready paragraph compose a bit and there are a lot of transliteration and Arabic script, but I looked at all the options , there are and they all seem to be fine, text running from left to right, world-ready paragraph composition out etc.. Does anyone have any ideas as to how I can move the line to the right to the left?

    Thank you very much!

    ss.jpg

    Thank you very much

    The location of the partition of notes depends on the direction of the story. (Type > story and set the direction of history).

  • Page change of position control buttons

    When I saw the Captivate project page previous/play/pause buttons are at the top of the screen.  When I publish to SWF format and add them to my website, the buttons to keep it from the page.  Is it possible to pin them at the top of the screen?

    You can change the position of editor of the skin game bar. Go to project > Skin Editor. In the Editor window of the skin which opens, select high in the drop Position.

    As a best practice, always preview your project in a web browser (F12). The overview of the project (F4) does not show the complete picture of your project. A lot of devices that work in F4 preview may not work in F12 and vice versa.

    Anthony

  • How to change the position of a window created in the script?

    Hi all

    A window called from another window are the same size. How to change the position of the window from the window of the appellant's appeal?

    You can also use the property frameLocation of the window to get a set the locations of the windows.

  • Change the position of the chart element

    Hi all

    I use graphics in my Web form. I want to change the position of these elements at run time.
    can anyone suggest me how to change running positions. ? .....

    Thank you
    Pavan.

    Hello

    This question has been Laura so many times, and the answer is always the same: No.

    There is no provision of buit - in to deal with graphical objects, located on the Web. All you can do is to place them on a small canvas stacked and then move this outline stacked.

    François

  • Change backuppiece RMAN location

    Hello

    Someone knows how to change backuppiece RMAN location in the repository.
    Here is one of backuppiece I want to change D:\DB_BACKUP\ASSIST\RMANBACKUP\ASSIST_S511_P1 to E:\DBBACKUP\ASSIST\RMANBACKUP\ASSIST_S511_P1.

    Time of accomplishment BS key Type LV size device Type elapsed time
    ------- ---- -- ---------- ----------- ------------ ---------------
    509 full 6.98 G DISK 00:00:00 11 December 08
    BP key: 507 status: EXPIRED compressed: YES Tag: TAG20081211T003232
    Part name: D:\DB_BACKUP\ASSIST\RMANBACKUP\ASSIST_S511_P1

    Thank you.
    RMAN>catalog start with 'E:\DBackup\rmanbackup\ASSIST_S519_P1';
    RMAN>restore database;
    

    Khurram

  • iphone 6plus is configured to use the position landscape, like previous phones. mine does not change its position when changing phone flattened

    I have an Iphone 6plus will not change the position landscape by turning the phone just like my old 5. This can be corrected.

    Make sure that your phone is not locked in portrait mode.

    Slide upward to access the control center and make sure that the icon with the lock and semi circle is not enabled.

  • How can I change a name on my apple devices? I multiply which ARE MINE, BUT THEY ARE ENTIRELY USED BY MY KIDS?

    I HAVE MUTILPY DEVICES, IPHONE 6, IPAD AND MACBOOK AIR AND MACBOOK PRO.  THESE DEVICES HAVE FOR THE MOST PART, SAME NAMES KELLY AND OTHERS FROM THE GRACE AND PHYLLIS THAT ARE CORRECT.  ALL THESE DEVICES ARE UNDER an APPLE ID OF * dot.com, I TRY to CHANGE SOME OF THE DEVICES TO MATCH THE RIGHT PERSON IN THE HOUSEHOLD rather than KELLY OVER AND OVER?

    HE MUST HAVE A SIM CARD [THE WAY TO CHANGE A NAME GIVEN TO A DEVICE, THIS ISN'T A SECURITY PROBLEM WHEN ALL THESE DEVICES ARE UNDER AN APPLE ID ACCOUNT?]

    For iOS devices, go to the settings of-> General-> about-> name.

    You can change there.

    For Mac OSX, go to System Preferences-> sharing-> computer name to change it.

  • Office to change its position

    I opened four desktop computers in Mission control. In the iTunes left office opens in view full screen. In the other three desktops (desktop 1, 2 and 3) on the right are running other applications (for example, Safari).

    From time to time, office 1 and 2 office change their positions. -Does anyone know how this happens? Their all shortcut is that I am pressing without knowing it while I'm using Mission control or change jobs? No El Capitan change their positions for some reason any? Does anyone have the same problems?

    I use Mac OS X Version of El Capitan 10.11.1.

    Take a look in system preferences > Mission Control and try to uncheck

    AutoArrange spaces... If it is checked.

  • When I change the setting by LabVIEW on my device, I see change on the monitor of the device?

    When I change the setting by LabVIEW on my device, I see change on the monitor of the device?

    This question should be addressed to the manufacturer of the device. From your previous posts, I guess you use GPIB or serial. If the unit has received the order, the manufacturer should be able to tell if no indicators on the device to update when the order is received. Based on my experience, however, the device indicators will most likely update on receipt of an order successfully.

  • How to change the positions of xy graph scale label

    LV2013

    Is it possible to change the position of label scale at design time?  The only way I can find to move each program which is not convenient.

    Surely, it should be possible to just catch them and move?

    # You have not to save it.  But do not tell it to replace the original control that exists in the VI.

Maybe you are looking for

  • Firefox adds the extension jpeg for jpg images

    Whenever I have save an image through Firefox for Android, it adds an extension of JPEG, resulting in the FILENAME argument. JPG. JPEG. Since most Android applications don't recognize JPEG, I have to go into a file manager and rename the JPEG in JPG,

  • Re: Satellite A660-1DW - Caddy for second HD

    I would like to swap the DVD drive for a 2nd HD can you please point me in the correct caddy for the Satellite A660-1DW I found various carts but I'm not sure of the correct version for my laptop, as the model was not mentioned Thank you Shaun

  • MS11-011 problems

    I have a computer running Symantec Endpoint protection and WSUS. It is Win 2008 R2. MS11-011 update has been applied, and now in the Server Manager I get an error when viewing roles or features. Needless to say, I can't access WSUS through Server Man

  • 0076WE remove USB-support for Scandinavian keyboards?

    The latest system available update (0076WE) outputs seemes usb support for Scandinavian keyboards, and I get put in English on USB keyboards whatever I do (on the folio from Lenovo and other USB keyboards). The virtual keyboard always takes care of t

  • C3086UA #A8A: Error Message on the laptop computer says driver is not available and device error

    I tried to print from my laptop, a HP Pavilion G7, and nothing happened I went in devices and saw an error message on the PC icon.  He showed me the yellow exclamation point and says driver is unavailable and driver error.  The icon of the printer sh