Push a new file qml via c ++

/*
 * 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

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

        }

    }

}
}

How is that possible? How can I grow new file qml here in this method?

void ApplicationUI::clickedButton (QString text)
{
qDebug()< "the="" azimuth="" is="" "="">< text="">< "="">

}

You have two options

First of all:

Defined for your NavigationPane ObjectName

NavigationPane {
    id: navPane
    objectName: "myNavi"
    .....
}

Use the findChild function in your C++ class

QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);

// Create root object for the UI
AbstractPane *root = qml->createRootObject();

NavigationPane *myNavi = root->findChild("myNavi");

and then use myNavi-> push() on your Boutonclique.

or the second option

Define SIGNAL in your C++ class

signals:
    void clickedButtonDone();

connect to the signal in your file QML

NavigationPane {
    id: navPane

    function pushFunction(){
        // here you can push page
        navPane.push()
    }

    onCreationCompleted: {
        quoteApp.clickedButtonDone.connect(pushFunction)
    }

    ......
}

and in your Boutonclique sound the signal

void ApplicationUI::clickedButton(QString text)
{
    qDebug() << "The azimuth is " << text << " degrees.";
    emit clickedButtonDone();
}

It may be useful

Tags: BlackBerry Developers

Similar Questions

  • Declaring new file c ++ for the new qml file

    I have a qml file, the button I click on function Boutonclique clal

    #include "applicationui.hpp"
    #include "homepage.hpp"
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    using namespace bb::cascades;
    
    AbstractPane *root;
    ApplicationUI::ApplicationUI(bb::cascades::Application *app) :
            QObject(app)
    {
    
        m_pTranslator = new QTranslator(this);
        m_pLocaleHandler = new LocaleHandler(this);
    
        bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));
    
        Q_ASSERT(res);
        Q_UNUSED(res);
        onSystemLanguageChanged();
    
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
        // Create root object for the UI
        root = qml->createRootObject();
        if (!qml->hasErrors()) {
    
                qml->setContextProperty("quoteApp", this);
            }
        // 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("Test1_%1").arg(locale_string);
        if (m_pTranslator->load(file_name, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(m_pTranslator);
        }
    }
    void ApplicationUI::clickedButton()
    {
    HomePage home = new HomePage(this);
    
    }
    

    Homepage.cpp

    #include "homepage.hpp"
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    using namespace bb::cascades;
    
    HomePage::HomePage(bb::cascades::Application *app):
                    QObject(app) {
    
            m_pTranslator = new QTranslator(this);
            m_pLocaleHandler = new LocaleHandler(this);
    
            bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));
    
            Q_ASSERT(res);
            Q_UNUSED(res);
            onSystemLanguageChanged();
                QmlDocument *qml = QmlDocument::create("asset:///homepage.qml").parent(this);
                NavigationPane *myNavi = root->findChild("myNavi");
                if (myNavi == NULL){
                    qDebug() << "Unable find NavigationPane";
                    return;
                }
                Page *new_page = qml->createRootObject();
                if (new_page){
                    myNavi->push(new_page);
                }else{
                    return;
                }
                Application::instance()->setScene(myNavi);
    }
    
    void HomePage::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(m_pTranslator);
        // Initiate, load and install the application translation files.
        QString locale_string = QLocale().name();
        QString file_name = QString("Test1_%1").arg(locale_string);
        if (m_pTranslator->load(file_name, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(m_pTranslator);
        }
    }
    

    Homepage. HPP

    #ifndef HOMEPAGE_H_
    #define HOMEPAGE_H_
    
    #include 
    
    namespace bb
    {
        namespace cascades
        {
            class Application;
            class LocaleHandler;
        }
    }
    
    class QTranslator;
    
    /*!
     * @brief Application object
     *
     *
     */
    
    class HomePage : public QObject
    {
        Q_OBJECT
    public:
        HomePage(bb::cascades::Application *app);
        virtual ~HomePage() { }
        Q_INVOKABLE void clickedButton();
    private slots:
        void onSystemLanguageChanged();
    private:
        QTranslator* m_pTranslator;
        bb::cascades::LocaleHandler* m_pLocaleHandler;
    };
    
    #endif /* ApplicationUI_HPP_ */
    

    I get in homepage.cpp root is not declared in this scope. I want to click on the main.qml button, I go to new file c ++ and call homepage.qml

    Hello
    I highly recommend investing a few weeks in learning C++ before learning the stunts. Specifically, these topics:
    -Advance declaring types
    -Memory management
    -Classes & inheritance (different from Java, a lot)
    -Life management object qt (parent/child, order of destruction of object relationship)

    These are essential, but we can't really help with them in the form of forum.

    On the compile error, this should probably fix:

    Homepage * home = new HomePage (NULL);

    But there are other problems in the statement of homepage. It's the manufacturer probably shouldn't take an instance of class ApplicationUI as the parameter.

  • Is it possible to create a new file using the XML via java Script?

    Hello everyone,

    Is it possible to create a new file using the XML via java Script

    • I have xml information that need to use for file name, size.
    • Based on xml file we can create a new file in InDesign with java script?
    • Kindly help me if anyone has an idea about this.

    I use InDesign CS4 on windows 7

    Sample file is attached below.

    Kind regards

    Siva

    <UpdateAd>
    <AdId>3403699</AdId>
    <Width type="mm">91,79</Width>
    <Height type="mm">80,00</Height>
    <ProductionCategory>4</ProductionCategory>
    <BookedCCIColors>sw</BookedCCIColors>
    <WorkFlowType>PDF</WorkFlowType>
    <CustomerNumber>652224</CustomerNumber>
    <CustName1>Erich Prang</CustName1>
    <Description/>
    <Description2>R</Description2>
    <UpdateIns>
    <Titel>RHZ</Titel>
    <Publication>B2</Publication>
    <RunDate>26-07-2011</RunDate>
    <Zone>H30</Zone>
    <KDDATEN>nein</KDDATEN>
    </UpdateIns>
    <WorkflowStep>IR</WorkflowStep>
    <Proof>No</Proof>
    </UpdateAd>
    
    

    xml.png

    Try this:

    var f =File.openDialog ();
    f.open('r');
    var xml = new XML(f.read());
    f.close();
    
    var myDocument = app.documents.add();
    myDocument.documentPreferences.pageHeight = xml..Height+"mm";
    myDocument.documentPreferences.pageWidth = xml..Width+"mm";
    var rect = myDocument.pages[0].rectangles,add();
    rect.geometricBounds = myDocument.pages[0].bounds;
    rect.strokeAlignment = StrokeAlignment.INSIDE_ALIGNMENT;
    rect.strokeColor = myDocument.swatches.item("Black");
    rect.strokeWeight = 1;
    myDocument.save(File(f.path + "/" + xml..AdId + ".indd"))
    

    Substances

  • Network with Windows Home Server hard drive. With the new files that wouldn't be no automatic update.

    Installed Windows Home Server 2011 on my files allocatted to share on my wireless network, including a hard drive 2 TB external. Worked well able to watch movies, listen to music etc... As several files have been saved on the external hard drive (800G now) he would not recognize the new content (files or movies) previous content is ok, but nothing new would not reconise. Unplug the hard drive from the PC, pluged into the TV via USB and all the files are there, old and new. My PC is 3.2 GHz 1 G RAM and running Windows XP I was wondering if anyone know what would cause this? It would not be because I only have 1 g of ram?

    original title: unable to recognize new files

    Hi Tony,.

    Since the issue is with Windows Home Server, I suggest that you post your question in the Forums Windows Home Server.

    Windows Home Server Forum

  • New files are moving in Windows.Old

    I have a laptop of HP 6930 (second hand) under Win 7 Home Premium which is my "new" computer Previous was a Lenovo laptop running XP. The store where I bought the HP deleted the Lenovo HD permissions and transferred to a new case, so I could access it via the USB port on the HP.

    I also transferred the Lenovo Mozy backup to my RESUME, I thought that the two went to a new folder. But it seems that some files go in the Windows.Old.

    I noticed today when I ran disk cleanup. I saw a box "windows.old" and was about to check it and changed his mind. I went to this folder and noticed new files in there.

    Is it possible to remove or gray on the option delete Windows.old from disk cleanup? There was no option like that on the XP version of disk cleanup.

    This number is part of my problems to move to a new computer.

    I want to continue using many files and folders from the Lenovo, for various reasons.

    Is it possible to merge or move some files and folders from Windows.Old to the new files and folders on the HP?

    Backup your files manually, create a new user account, run disk Cleanup, copy your files manually.

    How to back up and restore your files manually

  • Computer blocks all programs when you try to save a new file or Internet download file, help!

    Hi, recently my PC toshiba laptop windows 7 I have had for many years has had random some software problems, he started with just my internet browser (google chrome) is not able to download any file to any site (when I tried it would just crash before you open the my computer window) then google chrome stopped opening altogether without crashing...

    I managed to use internet explore for firefox that does not crash, but still won't let me download files directly etc, but now is not just to download the internet browser, in each program here I can't "Save" all new open files without it crashing (and save do not) or download whatever it doesn't matter where (programs crashing and not being able to save being the main issue that makes me absolutely anything to do now). I tried a via command prompt sfc scan, reboot / system restore point etc, nothing has worked.

    This happened to someone else before and is the only way to solve this problem for just wipe my computer and reinstall windows or what? Any help appreciated, am panic en masse here!
    So to sum up, I can not open/download the files on line or save or save as / export things all new file I open in ANY program, without blemish and crashing, but the computer itself still works and there is no virus detected etc...

    To solve your problem requires an expert trained to sit in front of the machine. It is not realistic to do that via a forum. I see these options for you:

    • Ask a computer-savvy friend to help you.
    • Have the device repaired.
    • Perform a destructive factory restore, using the hidden disk partition.

    If you choose the third option, then you must back up all personal files, then check first on another machine if the files are readable.

  • How to push a new page after the current pop page

    Hi all

    Is it possible for me to push a new page after the current page to burst?

    For example, main.qml I push page1.qml push page2.qml and pop page1.qml? (so the left in the stack are main.qml-> page2.qml)

    Can any ideas on how I do this?

    Thanks in advance.

    Of course! :-)

    You can use the NavigationPane remove() function...

    http://developer.BlackBerry.com/native/reference/Cascades/bb__cascades__navigationpane.html#function...

  • ListView onTriggered event to push a new page

    Currently, I started to learn and develop applications for bb10. I saw troubled when wants to push a new page when click the item in the listview.

    ListView {
                dataModel: XmlDataModel {
                    source: "model.xml"
                }
    
                listItemComponents: [
                    ListItemComponent {
                        type: "listItem"
                        StandardListItem {
                            title: ListItemData.title
                            description: ListItemData.subtitle
                            status: ListItemData.status
                        }
                    }
                ]
                onTriggered: {
                    var new_page = nextpage.createObject();
                    navigationPane.push(new_page);
                }
    
                attachedObjects: [
                    ComponentDefinition {
                        id: nextpage
                        source: "newqml.qml"
                    }
                ]
            }
    

    The code that I use, I expect to get to the newqml.qml, then click on any point on the listview however is not doing. How can I change the code to obtain the result.

    and if I want it open different page each item in listview how does?

    Thanks in advance.

    Hello

    I'm new on this, but I have a tip that could help: create a new project, select stunts, then on the models page, select ListView.

    This will automatically create a default list that automatically connects your article to an ItemPage.qml of a second!

  • cannot create new files after moving to ext drive, LR4

    I moved all the pictures on a new ext drive (they were on the c drive). reformated my desktop computer; reinstalled LR4.

    Now, there is no file parent under the name of the ext drive on which I can right click and «create a folder inside...» ».  I am able to create new folders in the existing subfolders.

    It is also impossible to synchronize the drive to find a new folder I created via Windows Explorer.

    My filing system is per month and per year, so now with every month that goes by, that I'm not able to put in place a new file.

    Help!

    Can you do a right click on a folder name in the folder Lightroom Panel and select "Show Parent Folder?

    Can you import new photos directly into the folder to the desired location?

  • How can I generate a new file/link static?

    Im trying to figure out how to approach a problem. what I want to do is to generate a new file/link, perhaps using "cffile" or any other way.

    Right now I have cse_newsletter.cfm, which looks like this (type of)

    <html>
    .......
    <cfquery>
    select ....
    </cfquery>
    select ....
    <cfquery>
    </cfquery>
    .......
     <cfoutput>
          <h1>Starburst Star Award</h1>
         <h3>Winner: Department- #highest_dept_name_average#</h3>
         <h3>Average:  #hihest_dept_average# </h3>
         <h4>Runner-up: Department- #highest_dept_name_runnerup# </h4>
         <h4> Average: #highest_dept_name_average_runnerup# </h4>
      </cfoutput>
    </html>
    
    

    the query works and give me I want a correct output. (rigth now I use cfshedule to execute it, but every time I run it will overwrite the old data with the new) what he does, he gives me the data of the past month.

    so every tiime it works should give me the data from last month.

    I would like to do that whenever I click on transmission (maybe there is a better way to do it without submit) it will give me a static link/txt that contains the data.

    I know that with cffile = "Write" he can give me a txt file (and this file can be replaced), but I would preffer so is easier for me a link on cse_newsletter.cfm which will output/display which is on the body now to the cse_newsletter.

    Please give me any tips/suggestions, maybe an article I read online (have not found something that can help me)

    This right is the cfshedule, right now is on the update, so sure it won't work with the update, but I don't think that with what I want, I can accomplish with cffile 'writing '.

    <cfschedule action = "update"
        task = "TaskName" 
        operation = "HTTPRequest"
        url = "cse_execoffice_newsletter.cfm"
        startDate = "04/18/14"
        startTime = "11:19 AM"
        interval = "3600"
        resolveURL = "Yes"
     >
    

    Thank you

    I mean your cse_newsletter.cfm model can be designed to accept parameters to view a newsletter of a certain month and year. If it accepts URL parameters, then you can create a link to it like this:

    http://mydomain.com/cse_newsletter.cfm?month=1&year=2014

    And if the parameters are not passed, you could do that show the user a list of months and years (control for example via the selection list form) so that they can select the month and year they need. That's how he could design in any case. Unless your data is stored somewhere in a database, your model would never work for a scenario (last month), and it's a great limitation because no one can observe beyond newsletters. You may not write files to disc etc, because the model has just need to show correct information letter. You can create any link to the newsletter you need once it has been designed to accept parameters month and year (which are in turn to your CFQUERY tags to get the data).

  • How to put files tif via a script in an indesign document?

    How to put files tif via a script in an indesign document?

    What attribute of the type you use when you build your dialogue?

    myDLG = new Window ("range");

  • The value of PDF file printed via the script name

    Hi people!

    I have a little problem with the generation of a PDF file. First my Workflow:

    I have an InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After it is merged, we need to generate a PDF file. This PDF file is opened in acrobat. In the document, I am looking for one ID for each record so I can split the document to 100 files (each with 6 pages) and name by the ID that I found.

    The Acrobat script is finished and functional. I thought: the InDesign script is over, too. But I was wrong-. -.

    I merged the databasefile with the document and it has exported to PDF. But after export, we noticed that the Acrobat script isn't finding the adressheader where ID is in. The script only noticed the text after this header. The result is, as get-Acrobat always 'null' as ID

    If print us the PDF with our PDFprinter, the header could be read by our script of Acrobat. I don't know why this is... But now, I changed the script to print the files through our PDF printer. Unfortunately I can not set a name for my exported file - do you know if it is possible to print PDF files without asking for confirmation after each other as well as with a via script name?

    Here you can see the old writing for InDesign and after her, the sript Acrobat. Maybe I made a mistake by generating my PDFexport and have no need to use the printer?

    INDESIGN SCRIPT:

    /**
    * invite filebrowser and stores the name and path of the file in variable
    */
    var sourceDocument = File.openDialog ("Bitte Indesign-Dokument Park", "*.indd", false);

    /**
    * stores the only prefix of file name to use as the new file name
    */
    newName var = sourceDocument.name.substr (0, sourceDocument.name.length - 5);

    /**
    stores in folder where the file is stored
    */
    var dbSourceFolder = sourceDocument.parent + "/"; "

    /**
    * guests for databasefile, where production is expected to begin
    */
    var dbstartfile = File.openDialog ("Start-Datenbankdatei of Bitte Park", "*.txt", false);

    /**
    * Gets databasefile basename
    */
    var dbstartfilename = dbstartfile.name.slice (0, dbstartfile.name.search(/_Teil+/));

    /**
    * Gets number of first databasefile
    */
    var i = dbstartfile.name.slice (dbstartfile.name.search(/_Teil+/) + 5) .slice (0, -4);

    /**
    * generates the path and name of the first databasefile to use
    */
    var dbSource = dbstartfile;

    /**
    * set PDF preset to generate PDFS
    */
    var PDFPreset = app.pdfExportPresets.item ("GAG - PDF");

    /**
    * stop throwing alerts
    */
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;

    message will be thrown if databasefile is not existing
    If (dbSource.exists == false) {}
    reboot to launch alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Alert ("File" + dbSourceFolder + dbprefix + "_Teil" + i + ".txt konnte nicht werden found! \n\rBitte starten Sie den procedure Rubis und Sie die right Datenbankdatei one enter.");
    }
    another process begins
    else {}
    even if (dbSource.exists == true) {}
    Opens the document indesign source without displaying
    mergeDocument = app.open (File (sourceDocument), false);
    defines what databasefile should be used for data merging
    mergeDocument.dataMergeProperties.selectDataSource (File (dbSource));
    starts the file database and the indesign document merging
    mergeDocument.dataMergeProperties.mergeRecords ();
    document generated in PDF export
    app.activeDocument.exportFile (ExportFormat.pdfType, File(sourceDocument.parent+"/"+newName+"_Teil"+i+".pdf"), false, PDFPreset);
    farm open indesign document
    mergeDocument.close (SaveOptions.no);
    i ++ ;

    change the name of the database file to get the next file
    dbSource = File(dbSource.parent+"/"+dbstartfilename+"_Teil"+i+".txt");
    }
    }
    reboot to launch alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Alert ("PDF-Generierung sky!");

    SCRIPT ACROBAT:


    /**
    * Path where files should be saved
    * Special characters like spaces must be preceded of--------.
    * If you want to change the folder, use the following form:
    * ' / DriveLetter/foldername /... /LastFolderName/.
    * Be careful not to forget the / before and after the location
    */
    filepath var = "/ c/pdf_split_test / ';

    /**
    * Number of display pages - do not hesitate to change
    */

    pageType = app.prompt var ("Please die Seitenzahl der presentations one gewunschte.", "");
    Alert (PAGETYPE);

    /**
    to search for regular expression
    */

    var idNumber = / 08\d\d\d\d\-\d\d\d\-\d\d\d\d\d-\d\d\d-\d\d/g;

    /**
    * If possible this function gets the number sought as string
    *
    @param string of revenge that is to be found in the document
    * @return null if rematch is not found or a string if the rematch is
    */

    function ExtractFromDocument (reMatch) {}
    try {}
    var Out = new Object();
    for (var i = 0; i < 1; i ++)
    {
    numWords = this.getPageNumWords (i);
    var PageText = ' ';
    for (var j = 0; j < 30; j ++) {}
    var Word = this.getPageNthWord (i, j, false);
    PageText += Word;
    }
    var strMatches = PageText.match (reMatch);
    If (strMatches == null) continue;
    }
    Return strMatches;
    } catch (e)
    {
    App.Alert ("processing error:" + e)
    }
    }

    /**
    * tries to load given filename (excerpt number)
    *
    @param string file name of the file that should be checked
    @param n number of iterate when checking files
    * @return true if the file exists or false otherwise
    */

    function checkIfFileExists (filename, n) {}
    var existingDoc = false;
    try {}
    If (n == 0) {}
    var checkDoc = app.openDoc(filepath+filename+"-000.pdf");
    } else {}
    var checkDoc = app.openDoc(filepath+filename+"-000_"+n+".pdf");
    }
    checkDoc.closeDoc ();
    existingDoc = true;
    } catch (e) {}
    }
    If (existingDoc == true) {}
    n = n + 1;
    n = checkIfFileExists (filename, n);
    }
    return n;
    }

    var pageAmount = this.numPages;
    for (i = 0; I < pageAmount; i + pageType) {}
    var filename = ExtractFromDocument (idNumber);
    fileExistence = checkIfFileExists (filename, 0);
    If (fileExistence! = 0) {}

    this.extractPages ({nEnd:(pageType-1), cPath: filepath + filename + "-000_" + fileExistence + ".pdf"});
    } else {}
    this.extractPages ({nEnd:(pageType-1), cPath: filepath + filename + ""-000.pdf ""});
    }
    this.deletePages ({nStart:0, nEnd: pageType-1});
    }

    Hello

    I have a little problem with the generation of a PDF file. First my Workflow:

    I have an InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After it is merged, we need to generate a PDF file. This PDF file is opened in acrobat. In the document, I am looking for one ID for each record so I can split the document to 100 files (each with 6 pages) and name by the ID that I found.

    Why you are not exporting 6 pages PDF directly from InDesign?

    Robin

    www.adobescripts.co.UK

  • ICloud can save new files iPhone only?

    I recently had an iPhone and uploaded photos from all the previous ones of my phone. These files are already saved and I want to stay on the iPhone, because the phone has a lot of memory (I do not need them in iCloud).

    Now I take new pictures/videos on the iPhone I want save with iCloud but contributed to the maximum my space free iCloud because the old output files. If I delete an old photo from iCloud, it removes also off the coast of the iPhone.

    Is anyway not upload the old photos to iCloud so there is storage space for new files? I do not want to buy more space iCloud and would rather download new photos on the computer manually if there is no work around. Thank you!

    Summary:
    Keep the old photo on the phone files

    Keep the new photo on the phone files

    Only save new pictures/videos on the iCloud

    Can not be completed as there is a sync all or nothing.

  • I installed the provider, but I have no "calendar" under new file.

    I'm running 31.1.1 (update), and I installed the provider of 0.32.
    Each instruction and assistance I can find says the next step is to click on file - > new-> calendar.

    I don't have a calendar on my new file menu.

    Comments? Ideas? Suggestions? Funny emails?

    Thank you.

    You will also need to install Lightning.
    https://addons.Mozilla.org/en-us/Thunderbird/addon/lightning/

  • I have a list of files on the left side and I am trying to create a new file. Whenever I create a new file, it will in a list/topic - as creating a

    All I want to do is create a new file and do appear in my existing list of files instead of a new file under a new title.

    I am trying to create a new file and it appears in the sent column where my files for e-mail are listed. Now he goes over these files under a different title every time creating a new file.

Maybe you are looking for

  • upgraded to iPhone 7 + restore question

    just got my iPhone from 7 + and due to backup my iPhone to my computer 6. After restoring my iPhone 7 everything looks good, but he wants to download all the apps via wifi. my computer not backup applications too? is it better to just redownload all

  • Back of the change in v. 42 Firefox URL bar

    I want to know how to bring back the URL bar to work as if it was on version 42 of Firefox and deleted, as in this case on the screenshot is not suggesting don't get me "sh", but just shows me as the first result on the drop-down list the link 'true'

  • How can I see my icloud files?

    Hello My account says icloud storage is almost full, but when I go on my account it says my files are all empty. How can I access my photos on the cloud? Thank you

  • Weird files in thunderbird

    Asked moderator to take screenshot of files than me the rest of my screen thunderbird so here it is.

  • favicon appears

    I have a demo of pages for a plugin on github. Curiously, I can't favorite icon if displayed in Firefox (try the simple demo page). They appear in the webkit and IE browsers without any problems. The affected pages are 'Hand', 'Simple', 'Developing',