Route66 navigation license

Hello

My lenovo S660 came pre-loded with Route66. I thought, this meant, it comes with a Route66 navigation license? T it? I have to do something special to activate it?

Thank you

Anand

I think it's a trial version free for 30 days if I'm wrong, you have to purchase a license at the end of the free trial.

Tags: Lenovo Phones

Similar Questions

  • License key free v2 content browser

    All,

    From your comments, we are launching for a limited time, the license key free for the Navigator content v2

    https://www.sonycreativesoftware.com/campaign/contentbrowser

    Concerning

    Peter

    I bought the advanced package of MAINConcept for XDCAM Browser2.0 (MAC), should I buy this pack advanced for the content browser?

  • Tap the Navigation Palette missing in LabVIEW 2009 Panel

    Hello

    I developed an application using LabVIEW 8.6 with the touch panel module and a TPC-2012 (Windows CE). I've now upgraded to LabVIEW 2009 and I'm trying to run my code in a TPC-2512 (XP Embedded), but the 'Touch Panel Navigation Palette' I used previously to be found in the new facility. In my view, there is a new range of "Navigation controls" in 2009, but I would like to avoid having to re - design my app with new controls.

    8.6 navigation controls are no longer supported in LabVIEW 2009 or have I missed something? The TPC is displayed in the Project Explorer and MAX, and I'm able to deploy and run applications on it. But the old vi navigation do not work and as I mentioned before, the palette is not even appear when you try to change the vi on the development computer.

    Any help would be appreciated.

    Thank you

    Hello

    The navigation screw touch panel are not displayed to the top, because you are currently using the TPC-2512. If you take a look in the Help file on the Navigation, it states: 'installed with: Touch Panel Module.» This topic can not match its corresponding palette in LabVIEW depending on your operating system, or the licensed products and the target. "I checked this with both LabVIEW 8.6 and LabVIEW 2009 targets. Due to the different architectures, you get a different set of palette (Windows CE vs XP Embedded).

    -Zach

  • Canon MP Navigator stopped working with scanner. Worked under Vista, not Win 7.

    Scanner Canon Lide 200 worked very well under Vista 64.  I've updated on Win 7 64 and the software interface has stopped working - "MP Navigator EX has stopped working".  That's a BEX error module fault MSONSEXT. DLL_unloaded.  I uninstalled, downloaded the newest and reinstalled, same problem.  Canon had me create a new profile, the program works in this profile.  Canon has written it's rights or licensing of the OS.

    The scanner works with other software.  MP Navigator is a resident program for making copies or copy and email, etc..

    Here are the details of the windows error

    Problem event name: BEX
    Application name: mpnex20.exe
    Application version: 2.0.3.0
    Application timestamp: 488d25b8
    Fault Module name: MSONSEXT. DLL_unloaded
    Fault Module Version: 0.0.0.0
    Timestamp of Module error: 43306199
    Exception offset: 49143a3b
    Exception code: c0000005
    Exception data: 00000008
    OS version: 6.1.7600.2.0.0.768.3
    Locale ID: 1033
    Additional information 1: 0f31
    More information 2: 0f3137665bbf0bb676c8a16f3fa76e52
    Additional information 3: fff8
    Additional information 4: fff84cbc2f915b8472e90c61e476efef

    I had the same problem with Win 7 64. I talked to Support Canon technique and after an hour in which we tested several things, I was told the problem was with Windows and I need to contact Microsoft. I tried to create a new profile that has fixed the problem for about a week, then he came back again! The question may be associated with Windows Update, but I'm not sure. On this last go I created a new profile and then copied to the folders and files from the corrupted profile one at a time to see when the problem would be to start over. After carefully copy of files, save, test Mp Navigator, and if necessary to restore the last good configuration I discovered that the following file was the cause of the problem:

    C:\Users\\App Data\Roaming\Microsoft\Windows\Network Shortcuts\My Web Sites on MSN

    Note: This file was not present in my new profile. In addition, the icon has the shortcut on that marker, but explore announces that it is a folder. There is no file extension.

    I then copied ALL the other bad profile data to the new and MP Navigator still worked! I then deleted the file in question from the wrong profile and MP Navigator started working there too!

    I then reconfigured all my software and IE etc for the first time by looking at the network shortcuts folder. The file in question has not yet reappeared. I made a shortcut to this place, I can keep an eye on it to see when it appears again.

    I hope someone at CANON or Microsoft will fix this issue of profile "corrupt."

    Sincerely,

    David Witteried

  • Navigating the screens using signals

    New thread, forget the old.

    /*
     * Copyright (c) 2011-2013 BlackBerry Limited.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import bb.cascades 1.2
    
    NavigationPane {
        id: navPane
    
        function pushFunction(){
            // here you can push page
            navPane.push();
        }
    
        onCreationCompleted: {
            quoteApp.clickedButtonDone.connect(pushFunction)
        }
    Page {
        Container {
            id:rootContainer
            // Strips out non numeric characters allowing only 0-9 and '.'
            function numericOnly (textin) {
    
                var m_strOut = new String (textin);
                m_strOut = m_strOut.replace(/[^\d.]/g,'');
    
                return m_strOut;
    
            } // end numericOnly
            background: Color.Red
    
            layout: DockLayout {
    
            }
            topPadding: 100.0
    
            TextField {
                inputMode: TextFieldInputMode.Text
                autoFit: TextAutoFit.Default
                maximumLength: 5
                textStyle.textAlign: TextAlign.Center
                preferredWidth: 205.0
                horizontalAlignment: HorizontalAlignment.Center
                hintText: ""
                id:txtAmount
                onTextChanging: {
                    txtAmount.text = rootContainer.numericOnly(text);
                }
    
            }
            Button {
                text: "Submit"
                onClicked: {
                    quoteApp.clickedButton(txtAmount.text);
    
                }
    
                horizontalAlignment: HorizontalAlignment.Center
                verticalAlignment: VerticalAlignment.Center
    
            }
    
        }
    
    }
    
    }
    

    This is main.qnml, how can I push hi .qml t ILO?

    my class application.cpp and application.hpp

    .cpp

    /*
     * Copyright (c) 2011-2013 BlackBerry Limited.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    using namespace bb::cascades;
    
    AbstractPane *root;
    NavigationPane *myNavi;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app) :
            QObject(app)
    {
    
        // prepare the localization
        myNavi = new NavigationPane;
        m_pTranslator = new QTranslator(this);
        m_pLocaleHandler = new LocaleHandler(this);
    
        bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));
        // This is only available in Debug builds
        Q_ASSERT(res);
        // Since the variable is not used in the app, this is added to avoid a
        // compiler warning
        Q_UNUSED(res);
    
        // initial load
        onSystemLanguageChanged();
    
        // Create scene document from main.qml asset, the parent is set
        // to ensure the document gets destroyed properly at shut down.
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
        if (!qml->hasErrors()) {
    
                qml->setContextProperty("quoteApp", this);
            }
        // Create root object for the UI
        root = qml->createRootObject();
    
        // Set created root object as the application scene
        app->setScene(root);
    }
    
    void ApplicationUI::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(m_pTranslator);
        // Initiate, load and install the application translation files.
        QString locale_string = QLocale().name();
        QString file_name = QString("Meter_%1").arg(locale_string);
        if (m_pTranslator->load(file_name, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(m_pTranslator);
        }
    
    }
    void ApplicationUI::clickedButton(QString text)
    {
        qDebug() << "The azimuth is " << text << " degrees.";
        emit clickedButtonDone();
    }
    

    all

    /*
     * Copyright (c) 2011-2013 BlackBerry Limited.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    #ifndef ApplicationUI_HPP_
    #define ApplicationUI_HPP_
    
    #include 
    
    namespace bb
    {
        namespace cascades
        {
            class Application;
            class LocaleHandler;
        }
    }
    
    class QTranslator;
    
    /*!
     * @brief Application object
     *
     *
     *
     */
    
    class ApplicationUI : public QObject
    {
    
        Q_OBJECT
    public:
        ApplicationUI(bb::cascades::Application *app);
        Q_INVOKABLE void clickedButton(QString text);
    
        Q_SIGNALS:
            void clickedButtonDone();
        virtual ~ApplicationUI() { }
    private slots:
        void onSystemLanguageChanged();
    private:
        QTranslator* m_pTranslator;
        bb::cascades::LocaleHandler* m_pLocaleHandler;
    
    };
    
    #endif /* ApplicationUI_HPP_ */
    

    I get this error

    make [2]: Entering directory "" C: / users/krikor/momentics-space work/Navigation/arm ' "
    C:/bbndk/host_10_2_0_15/Win32/x86/usr/bin/MOC.exe-DQT_NO_IMPORT_QT47_QML-DQ_OS_BLACKBERRY-DQT_DECLARATIVE_DEBUG-DQT_DECLARATIVE_LIB-DQT_CORE_LIB-DQT_SHARED - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/share/qt4/mkspecs/blackberry-armv7le-CQS -... /... / Navigation - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/qt4/QtCore - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/qt4/QtDeclarative - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/qt4 - I...-Io.le-v7-g/.moc/SRC - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/freetype2 - i. - D__QNXNTO__... / SRC/applicationui. HPP o o.le-v7-g/.moc/moc_applicationui.cpp
    .. / SRC/applicationui. HPP (50): parse error in the 'virtual '.
    CQS-Vgcc_ntoarmv7le-Wno-psabi-lang-c ++-fstack-protector - fstack-protector-all - mcpu = cortex-a9 - g - Wno-psabi-wall-W-D_REENTRANT-DQT_NO_IMPORT_QT47_QML-DQ_OS_BLACKBERRY-DQT_DECLARATIVE_DEBUG-DQT_DECLARATIVE_LIB-DQT_CORE_LIB-DQT_SHARED - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/share/qt4/mkspecs/blackberry-armv7le-CQS -... /... / Navigation - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/qt4/QtCore - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/qt4/QtDeclarative - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/qt4 - I...-Io.le-v7-g/.moc/SRC - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include - Ic: / bbndk/target_10_2_0_1155/qnx6/usr/include/freetype2 - i. x - c ++ - header - c... Precompiled.h o o.le-v7-g/.obj/Navigation.gch/c++
    make [2]: * [o.le-v7-g/.moc/moc_applicationui.cpp] error 1
    make [2]: * waiting unfinished...
    make [2]: leaving directory ' C: / users/krikor/momentics-space work/Navigation/arm.
    make [1]: * [debug] error 2
    make [1]: leaving directory ' C: / users/krikor/momentics-space work/Navigation/arm.
    make: * [Device-Debug] error 2

    Okey is

    NavigationPane {
        id: navPane
    
        function pushFunction(){
            var blogpage = goToWebView.createObject();
            navPane.push(blogpage);
        }
        attachedObjects: [
            ComponentDefinition {
                id: goToWebView
                source: "hello.qml"
            }
        ]
        onCreationCompleted: {
            quoteApp.clickedButtonDone.connect(pushFunction)
        }
    

    This did

  • WCS with Navigator company

    Hello

    I have the Enterprise WCS for 10000 AP license, the license is including WCS Navigator,

    now I would like to know what is the best practice to implement the WCS Navigator,

    I have 4 Windows 2003 2 corporate servers as active and 2 as secondary servers.

    Can I install Navigator on the WCS Server WCS?

    What server I need to install WCS Navigator?

    I have to install the browser as a separate server?

    I'm a bit confused with the design, kindly let me know if you find best practices,

    Not sure if you are aware (it is a fact that many people hurt including) but a 'sleep' WCS can be redundant for several active WCS "primary". So, you could have 2 active WCS and 1 backup. And WCS backup resumes with the correct database of active WCS which came down.

    So 2 WCS backup is really redundant :-)

    As far as I know, it's still not possible to have the browser in HA.

    And even! Browser does not really support WCS HA servers. This means that when the primary WCS are down, you then need to add the 'secondary' WCS, who took over from Navigator. This is no blocking, but it would have been nice to monitor the status of the WCS HA pairs in the browser. It is currently a feature request which is being developed for Navigator.

    Not sure if I understand the other part of your question but yes it is mandatory to have the 'secondary WCS' servers on separate physical servers as the primary. First because otherwise it is better the purpose of HA a bit and on the other hand because if a secondary is active, it can not be on the same server as one already active WCS.

    Nicolas

  • EBS R12.2: How to check which modules are license activated?

    Hi all

    I want to know which modules are licensed activated in on ebs.

    I got to:

    -Navigation:
    the responsibility of "system administrator" > License Manager


    By I don't see here License Manager

    Capture.PNG


    Help, please...


    Thank you

    MK

    Hello

    Please see:

    Thnaks,

    A H E E R X

  • How to UN-license an image I accidentally under license.

    Hello team Adobe,

    I really like the images of the reserve of the navigation and there are a lot of choices. But due to the reversal of the image, I accidentally licensed the first image in the search results.

    Although the #92574029 image is a beautiful image, is not exactly what I wanted.

    Thank you for your support.

    RS

    Hi Tokyoskies

    It is not possible to the United Nations, an image license, but I have added a picture credit to your account so that you can select a different image to use instead.

    Hope this helps!

  • Adobe would please a definition more preview claire between save and licenses

    I'm new to the stock of Adobe and on Friday, I made a rather ridiculous mistake, but I feel while I was certainly to blame that the interface of the website could be better, so I was wondering where I could suggest this?

    I'm an avid user of Web sites like pintrest etc for inspiration tag etc, and when it comes to stock Web sites, I would like to pin/save images possible quickly while browsing, then later or select the ones I want to license/download show them to my client for them to choose.

    What I found out is you can do this in Adobe stock, create a library and name it for a specific project and then save in this library, but what I noticed while navigation is that it was not quite clear if you were just save or licenses actually fact, the default + button displayed above the thumbnails of license actually it , and there is no confirmation, so I added a bunch of images possible in a library and only realized I was licenses actually them when I ran out of credits.

    Adobe was kind and 8 pictures I accidentally licensed gave me 5 of these credits back once I removed the images from the library (would have preferred to get all 8 back whereas I had not downloaded them) but it was at least a compromise because it was my fault.

    Looking back, if I had to do it properly then every image potential I want to record in a library to buy later, I have to go through a drop down on the tile, and frankly I think it might be better designed, even if she has added to a shopping cart which confirmed you later if you want to allow would be better...

    Hello

    Thank you for your comments - I passed your comments to our product manager.

    Kind regards

    Bev

  • How can I transfer all licenses/product information from 2002 to this day with a new email/AdobeID account?

    I work on my Mac IIci (System 7), PowerMac G3 (MacOS 9), iMac G5 (Leopard), Intel, PowerBook (Tiger), Intel iMac (Snow Leopard) and Mac Mini (Snow Leopard). I do not put any new Apple garbage level based on how they treat the legacy clients, mangle and bug - infested computer and thrive on planned obsolescence.

    So, my live 2002 far Adobe products. I totally understand the changes that adobe did, and also how they support us software engineers "gray hair". On that note, I need a little help in two areas.

    (1) I dumped Comcast and created my own domain specifically for email and so need to transfer all the previous account, the license and product information in my new email address.

    (2) I do a full 'clean' reinstall on my Mac Mini (Snow Leopard) and cannot find my Adobe PSE6 under license or a disk file DMG to save. I couldn't not prevailed of pre-7 downloads.

    I have my license and product information s/n, as well as all the doublets of my previous account.

    Please notify. Thank you.

    C.Gray

    'frankfenderbender '.

    To change your email:

    Click here to access your account Adobe ID online and sign in with your Adobe ID and password.

    In the navigation pane that appears, click on Manage account to open the page to manage the account.

    (You may be prompted to check your password.)

    Use the tabs at the top of the page to view your plans & products, change your email and contact details, change your password or update your profile and communication preferences.

    The download links for the old PSE6 are no longer available online.

  • VMs migration from one to another on ESXi 5.1 data store (free license)

    I'm under ESXi in my lab (for the Cisco voice servers and a few Windows virtual machines). Virtual machines are on a datastore iSCSI hosted by a Netgear ReadyNAS Pro Business. Due to major problems with iSCSI on the ReadyNAS platform and the inability of Netgear to resolve problems (blocking NAS requiring a hard reset), I decided to buy a QNAP TS - 569 L and use it to host my ESXi data store. Now, I'm migrating my VMs from the iSCSI data store hosted on the ReadyNAS to the iSCSI data store hosted by QNAP.

    My VMs are supplied thin, and I want to preserve thin provisioning after migration. The data store Navigator ESXi can move (or copy) machines virtual data to another store, but thin-set in service virtual machines become thick-set service once they have been moved (or copied). Somebody advised Veeam to that end, I've installed and configured. Unfortunately, Veeam-error with the message that the current license does not have the migration of virtual machines from a data store to another. Just today, I learned that he must have at least the ESXi Essentials ($500) license to allow this type of migration of Veeam.

    I also tried OVFTool (the MMware command line utility), using the following syntax:

    . / ovftool - ds QNAP-iSCSI - dm = vi thin: / / vi [email protected]/CUCM-Pub: / / [email protected]

    where:

    QNAP-iSCSI is the name of the data store on the QNAP

    192.168.200.10 is the IP address of my box of ESXi that is connected to two data stores iSCSI (the one organized by the ReadyNAS and the other by the QNAP).

    CUCM-Pub is the name of the virtual machine on the ReadyNAS iSCSI data store I'm migrating to the QNAP iSCSI data store.

    However, I get the following error message:

    Error: Unexpected Option: vi: / / [email protected]/CUCM-Pub

    This is probably due to the same issue - free ESXi license does not allow this type of VM migration. So, what are my options with free ESXi license? I'm not willing to pay $500 for the license of the essential at this stage.

    Thank you!

    A few options, I can think of are:

    • export to the FVO and re - import
    • use VM explore Trilead and backup/restore virtual machines
    • Use the vmkfstools command to copy the virtual disks

    André

  • "Hide the top navigation in mode folio bar", are not!

    Hello

    I have a pro license for a magazine with a new number of montlhy for sale or thrue subscription and I did exactly that: by selecting the 'Hide mode folio top navigation bar' option on the application details > Advanced Options page.

    But now people who have downloaded the 2nd issue of my magazine, cannot go back to the 1st or the library in general.

    So if you have a from time to time magazine, do not select this option!


    My question: I changed it back of course then the navigation bar would be visible again, but I have no idea how long it will take before he is active again. People are more angry at me, so no idea how many days it will take? And there will be an update of the application, or it will automatically?


    Thank you.

    Eddy paesschezoone - pix

    You must rebuild the application with this option off and submit a new version to Apple. The problem will remain until Apple approves new version of the app.

    This option is designed for publishers who want to create their own navigation in each article. As you have noticed, it is not a good idea to disable the top navigation bar, unless you manually provide a way to return to the library.

  • WebCenter of licensing.

    I have a few questions about webcenter licenses.

    1 is the right forum to ask? If this isn't the case, please guide me the right one?

    We have built an ADF/WebCenter application. We use webcenter mainly to the creation of Menu (navigation hierarchy model), Page (Pages.xml) security, content presenter RIDC API to interact programmatically with the AAU.

    Our goal is to reduce the cost of webcenter license, based on some configurations. Client sets a flag in the database table (say USE_WEBCENTER_FEATURE = "Y/N"), based on its value, we would like to use webcenter or not.

    1. for example content-presenter, I'll put a condition on the task workflow content-presenter link and turn it on only if the customer has configured. My project libraries webcenter and I think to operate correctly on client instance, maybe I need to ask them to extend their server weblogic with webcenter. To sum up, we will have libraries but do not use their project. It will also cost licensing fees.

    2 belongs to RIDC webcenter library or I can use it without webcenter?

    3. is free license with ADF WebCenter?

    4. what all the licenses that we must take, weblogic? ADF?, WebCenter?

    5. is there a way to deploy ADF/Webcenter application server JBoss? If so, what license would I need to buy?

    Thank you

    Sanjeev

    announcement 1. If you deploy libraries of the WebCenter Framework on a server, you need to their license. You may, however, modify your application so that it deploys libraries only if the option is enabled. I would also recommend to go with an ASFU rather than the full license or non-use model. Contact your local Oracle sales reps (or channel managers) and discuss it with them.

    AD 2. CRMI is included in the WebCenter, not licenses WebCenter portal content. WCP contains only a limited license of the WCC, so if you want to communicate with WCC directly (without going through the WCP), you will need license WCC as well. There is also a license of the suite that contains everything, called WebCenter Suite Plus.

    Ad 3. # WebCenter framework is an add-on for ADF and if you want to use (as the composer mentioned) you need a license.

    Ad 4. AFAIK, Weblogic Server (which contains the ADF) is not included in the license of WebCenter portal, so you have Enterprise Edition, WebCenter Portal WLS, possibly WebCenter content or simply WebCenter Suite Plus

    ad 5. N ° some WebCenter products like WebCenter content also run on Websphere. JBOSS is on the roadmap, but for the moment only Weblogic provides the platform for the entire stack.

  • Disable the license of OAM Manager under system adminstorator resp. ' ty

    Hi Experts,

    Asked me to assign responsibility for system administrator for users without licensing under the OAM.

    Could someone please help me to show me a work-around to activate and to deactivate this option I would this exclude the responsibility of the system administrator.

    Thanks in advance!

    966140 wrote:
    Hi Experts,

    Asked me to assign responsibility for system administrator for users without licensing under the OAM.

    Could someone please help me to show me a work-around to activate and to deactivate this option I would this exclude the responsibility of the system administrator.

    Thanks in advance!

    You have 2 options here:

    Option 1: Create a new responsibility with a new menu (like 'Menu administrator Oracle Applications Manager') and exclude the "License Manager" of this new menu function

    Option 2: Create a new responsibility with the same menu system - system administrator GUI "Navigator Menu" administrator and exclude the "License Manager" function of the (security > responsibility > set) screen

    Thank you
    Hussein

  • How can I target the navigation bar at the exact location?

    Hello!

    I made a bar navigation scrolles fixed to a div when clicking on links (home, hoe het works?, France @ VINDDIT)

    Now the view work, but it will on the content rather than above it.

    I used someone else's javascript, so I have no idea how to solve this problem.

    you can also check it out on: http://vinddit.nl/

    (Please note I also have an odd empty space above my navigation bar (you notice when scrolling down)? no idea where that came from!)

    Pictured from fist below how this works now:

    Schermafbeelding 2014-03-01 om 15.12.59.png

    And this it is how should work:

    Schermafbeelding 2014-03-01 om 15.13.13.png

    pls find below my javascript code:

    /**

    * SmoothScroll

    * This script to help created by DWUser.com.  Copyright 2012 DWUser.com.

    * Double-under license GPL and MIT.

    * All the individual scripts remain property of their copyrighters.

    * Date: 10-Sep-2012

    * Version: 1.0.1

    */

    If (! window ['jQuery']) alert (' the jQuery library must appear before the smoothscroll.js file.)  The plugin will not work property. ") ;

    /**

    * jQuery.ScrollTo - only simple scrolling using jQuery.

    * Copyright (c) 2007-2012 Ariel Flesler - aflesler (at) gmail (dot) com: http://flesler.blogspot.com

    * Double licensed MIT and GPL.

    * @author Ariel Flesler

    * @version 1.4.3.1

    */

    ; (function ($) {var h = $.scrollTo = function (a, b, c) {$(window) .scrollTo (a, b, c)}, h.defaults = {axis: 'xy', duration: pa rseFloat($.fn.jquery) > = 1.3? 0:1, limit:true}; h.window = function (a) {return $(window) ._scrollable ()};$.fn._scrollable=function() {return this.map (function () {var a = this, isWin =! a.nodeName | $.inArray (a.nodeName.toLowerCase (), ['iframe', '#document', 'html', 'body'])! = - 1; if(!isWin) return a; var b = (a.contentWindow | .document has) | a.ownerDocument | a;})}}) (Return/WebKit/i.test (navigator.userAg ent) | b.compatMode == 'BackCompat'? b.body:b.documentElement})}; $.fn.scrollTo = function (e, f, g) {if (typeof f == 'object') {g = f; f = 0} if (typeof g == 'function') g = {onAfter:g}; if (e == 'max') e = 9e9; g = $.extend ({}, h.defaults, g); f = f | g.Duration; g.queue = g.queue & & g.axis.length > 1; if (g.queue) f / = 2; g.offset = both (g.offset); g.over = both (g.ov er); this._scrollable () .each (function () return {if(e==null) return; var d = this)} , $elem = $(d), targ = e, toff, attr = {}, win = $elem.is ('html, body'); switch (typeof targ){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)? (PX) | %) ? ($/ .test (targ)) {targ = the two (t arg); break} targ = $(targ,this); if(!targ.length) return; case 'object': if (targ.is |) {Targ.style) to ff = (targ = $(targ)) .offset ()} $.each (g.axis.split (»), function(i,a) {var b = a == 'x'?'}) (Left) ': 'Top', pos is b.toLowerCase, key = "scroll" + b, old = d [key], max = h.max (d, a); If (tof f) {attr [key] = toff [pos] + (win? 0:old-$elem.offset () [pos]); if (g.margin) {attr [key]-= parseInt (your rg.css ('margin' + b)) | 0; parseInt (targ.css ('border' + b + 'Width')) = attr [key] | 0} attr [Key] += g.o ffset [pos] | 0; if (g.over [pos]) attr [key] += targ [a == 'x'?' width ': 'height'] () * g.over [pos]} else {v ar c = targ [pos]; attr [key] = c.slice & & c.slice(-1) == '%'? parseFloat (c) / 100 * max} {: c} if (g.limit & & / ^ \d+ $/ .test (attr [key])) attr [key] = attr [key] < = 0? 0:Math.min (attr [key], max); ({if (! I & & g.queue) {if (old! = attr [key]) animate (g.onAfterFirst); delete attr [key]}}); animate (g.onAfter); {({function animate (a) {$elem.animate (attr f, g.easing, & & function() {a.call (this, e, g)})}}) .end ()}; = function(a,b) h.max {var c = b == 'x'?'} (Width) ':'Height',Scroll='scroll'+c;if(!$(a).is('html,body')) has [scroll]-$(a) [() return c.toLowerCase]; {var d = 'client' + c, html is a.ownerDocument.documentElement, body = a.ownerDocument.body; return Math.max (html [scroll], [scroll] body) - Math.min ([d] html, body [d])}; ({int both (a) {return typeof == 'object'? a: {top: a, left:a}}}) (jQuery);

    /**

    * jQuery.LocalScroll

    * Copyright (c) 2007-2010 Ariel Flesler - aflesler (at) gmail (dot) com: http://flesler.blogspot.com

    * Double licensed MIT and GPL.

    * Date: 05/31/2010

    * @author Ariel Flesler

    * @version 1.2.8b

    **/

    ; (function (b) {function g (a, e, d) {var h = e.hash.slice (1), f = document.getElementById (h) | document.getElementsByName (h) [0]; if (f) {a & & a.preventDefault (); var c = b (d.target); if (!)}}}) (d.Lock) & & c.is(":animated") | d.onBefore & &! 1 = d.onBefore (a, f, c))) {d.stop & & c._scrollable ().stop(!0); if (d.hash) {var a = f.id == h?}} ' ' ID ': 'name', g = b("<a>_</a>").attr (a, h) .css ({position: 'absolute', top: b (window) .scrollTop (), left: b (window) .scroll Left()}); p [a] = " » ; location = e.hash; g.Remove (); p [a], b("body").prepend (g) = h} igger c.scrollTo(f,d).tr ("notify.serialScroll",

    {([f])}}} var i=location.href.replace(/#.*/,""),c=b.localScroll=function(a){b("body").localScroll(a)}; defaults = {duration: 1E3, axis: "y", event: "click", stop:! 0, target: window, reset:! 0}; c.hash = func c tion (a) {if (location.hash) {a = b.extend ({}, c.defaults, a); a.hash =! 1; if (a.reset) {var e = a.duration; delete a.duration;b(a.target).scrollTo(0,a);a.duration=e}g(0,location,a)}};}}} b.fn.localScroll = func tion (a) {function e() {return! This.href & &! {This.hash & & this.href.replace (this.hash,"" ") == I & &(!a.filter||_b_(thi_s).is (a.filter))}

    a = b.extend ({}, c.defaults, a); ({{return a.lazy? this.bind (a.event, function (d) {var c; c = b([d.target,d.target.parentNode]).filter (e) [0] & & g(d,c,a)}): this filter .find ("one, ' area') (e) .bind (a.event, function (b) {g(b,this,a)}) () () .end .end}}) (jQuery);

    Initialize all .smoothScroll links

    jQuery (function ($) {$.localScroll({filter:'.smoothScroll'});});)})

    var menu = $('#banner'),

    POS = menu.offset ();

    and my html code:

    < div id = "banner" class = "menudefault" >

    < h2 >

    < a href = "index.html" > < img src = "images/Schermafbeelding 2014 - 02 - 25 om 10.09.52.png" width = "220" height = "76" alt = "logo" / > < /a >

    < a href = "#container" class = "smoothScroll" > HOME < /a > |

    < a href = "#leftcollum" class = "smoothScroll" > HOE HET WORKS? < /a > |  < a href = "#leftcollum2" class = "smoothScroll" > d @ VINDDIT < /a > |

    < a href = "#mainbox2" class = "smoothScroll" > PRICES < /a > |   < a href = "over_ons.html" > ON < /a > ONS |     < a href = "contact.html" > CONTACT < /a > |

    < / h2 >

    < / div >


    lisavs12686 wrote:

    I copied this .js file full of a person on the internet.

    Is it not true?

    the addition of ofset as mentioned above does not work

    No, it isn't, I tested it myself. Try the smooth roll on the next page. You can add the offset to it:

    http://CSS-tricks.com/snippets/jQuery/smooth-scrolling/

    http://CSS-tricks.com/examples/SmoothPageScroll/

Maybe you are looking for