Is there a way for my Mac to store MORE than 8 Personas? I downloaded a bunch of Personas yesterday and I can't find but 8 of them.

I'd like to know how to save '''Personas''' to my computer so that I can save the Personas that I want to use. I downloaded a number of '''Personas''' yesterday and my FireFox has saved ONLY 8 Personas.

Try:
* Personas Plus: https://addons.mozilla.org/firefox/addon/10900/

Similar Messages

  • HT1040 Is there a way to place an order with more than one item at a time? For example I am going to make a few books and have them all shipped to me.  Do I have to order and pay shipping for each one individually?

    Is there a way to place an order with more than one item at a time?  for example I am making a few books and having them all shipped to me.  Do I have to order each one separately and pay shipping each time?

    You have to order each book separately, if the books are different. Only multiple copies of the same book can be ordered in the same order, see here
    Regards
    Léonie

  • Is there a way to put an item under more than one calendar at the same time?

    I use the calendar to keep track of not only my schedule, but my entire family's. For years I had a calendar labeled 'kids.' Now as they're getting older it would be easier to have an individual calendar for each child. Easier for me to track where they are and they could have they're own calendar on their iphone or iphone touch since we all share one cloud account. However, frequently more than one is at the same activity. The calendar program will only allow me to select one calendar to place an event under; as soon as I select another, it deselects the first. Is there a way to place an event under more than one calendar?
    (Since I'm still the one driving that needs to know date, time, place, etc type details I don't want them adding it to their own schedule - maybe -  on their devides and synching through cloud)

    You can create many calendars. Here's the tip:
    Example: you have 1 son and 1 daughter.
    In iCloud ( https://www.icloud.com )
    Create 1 calendar called Son ( Choose a color to tell them apart )
    Create 1 calendar called Daughter ( Ditto )
    Create 1 calendar called Kids
    Since you are the creator, you get to see all calendars combined.
    Send invitations to each of them
    Son gets Son and Kids calendars
    Daughter gets Daughter and Kids calendars
    So if there an event for Son, just put in that calendar
    If it's for both then enter it in the Kids calendar
    Likewise for daughter.

  • I have bough Indesign for Mac yesterday and I can't find my serial number any where. Who can help ?

    I have bough Indesign for Mac yesterday and I can't find my serial number any where. Who can help ?

    You have purchased CC, the order is still under transaction
    The CC does not needs any serial number, it is based on Adobe ID.
    In case you are being asked for serial number then you can refer to.
    Creative Cloud applications ask for serial number
    Re: Invalid serial number?
    Regards
    Rajshree

  • Is there a datatype that allows me to store more than one item at a time

    Hello Everyone,
    Is there a datatype that allows me to store more than one item at a time , in a column in a row?
    I have to prepare a monthly account purchase system. Basically in this system a customer purchases items in an entire month as and when required on credit and then pays at the end of the month to clear the dues. So, i need to search the item from the inventory and then add it to the customer. So that when i want to see all the items purchased by a customer in the current month i get to see them. Later i calculate the bill and then ask him to pay and flushout old items which customer has purchased.
    I am having great difficulty in preparing the database.
    Please can anyone guide me! i have to finish this project in a weeks time.
    Item Database:
    SQL> desc items;
    Name Null? Type
    ITEMID VARCHAR2(10)
    ITEMCODE VARCHAR2(10)
    ITEMPRICE NUMBER(10)
    ITEMQUAN NUMBER(10)
    Customer Database:
    SQL> desc customerdb;
    Name Null? Type
    CUSTID VARCHAR2(10)
    CUSTFNAME VARCHAR2(20)
    CUSTLNAME VARCHAR2(20)
    CUSTMOBNO NUMBER(10)
    CUSTADD VARCHAR2(20)
    I need to store for every customer the items he has purchased in a month. But if i add a items purchased by a customer to the customer table entries look this.
    SQL> select * from customerdb;
    CUSTID CUSTFNAME CUSTLNAME CUSTMOBNO CUSTADD ITEM ITEMPRICE ITEMQUANTITY
    123 abc xyz 9988556677 a1/8,hill dales soap 10 1
    123 abc xyz 9988556677 " toothbrush 18 1
    I can create a itempurchase table similar to above table without columns custfname,csutlnamecustmobno,custadd
    ItemPurchaseTable :
    CUSTID ITEM ITEMPRICE ITEMQUANTITY
    123 soap 10 1
    123 toothbrush 18 1
    ill just have it as follows. But still the CUSTID FK from CustomerDB repeats for every row. I dont know how to solve this issue. Please can anyone help me.
    I need to map 1 customer to the many items he has purchased in a month.
    Edited by: Yukta Lolap on Oct 8, 2012 10:58 PM
    Edited by: Yukta Lolap on Oct 8, 2012 11:00 PM

    You must seriously read and learn about Normalization of tables; It improves your database design (at times may increase or decrease performance, subjective cases) and eases the Understanding efforts for a new person.
    See the below tables and compare to the tables you have created
    create table customers
      customer_id       number      primary key,
      fname             varchar2(50)  not null,
      mname             varchar2(50),
      lname             varchar2(50)  not null,
      join_date         date          default sysdate not null,
      is_active         char(1)     default 'N',
      constraint chk_active check (is_active in ('Y', 'N')) enable
    create table customer_address
      address_id        number      primary key,
      customer_id       number      not null,
      line_1            varchar2(100)   not null,
      line_2            varchar2(100),
      line_3            varchar2(100),
      city              varchar2(100)   not null,
      state             varchar2(100)   not null,
      zip_code          number          not null,
      is_active         char(1)         default 'N' not null,
      constraint chk_add_active check (is_active in ('Y', 'N')),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    create table customer_contact
      contact_id        number      primary key,
      address_id        number      not null,
      area_code         number,
      landline          number,
      mobile            number,
      is_active         char(1)   default 'N' not null,
      constraint chk_cont_active check (is_active in ('Y', 'N'))
      constraint fk_add_id foreign key (address_id) references customer_address(address_id)
    create table inventory
      inventory_id          number        primary key,
      item_code             varchar2(25)    not null,
      item_name             varchar2(100)   not null,
      item_price            number(8, 2)    default 0,
      item_quantity         number          default 0,
      constraint chk_item_quant check (item_quantity >= 0)
    );You may have to improvise and adapt these tables according to your data and design to add or remove Columns/Constraints/Foreign Keys etc. I created them according to my understanding.
    --Edit:- Added Purchases table and sample data;
    create table purchases
      purchase_id           number        primary key,
      purchase_lot          number        unique key  not null,     --> Unique Key to map all the Purchases, at a time, for a customer
      customer_id           number        not null,
      item_code             number        not null,
      item_price            number(8,2)   not null,
      item_quantity         number        not null,
      discount              number(3,1)   default 0,
      purchase_date         date          default sysdate   not null,
      payment_mode          varchar2(20),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    insert into purchases values (1, 1001, 1, 'AZ123', 653, 10, 0, sysdate, 'Cash');
    insert into purchases values (2, 1001, 1, 'AZ124', 225.5, 15, 2, sysdate, 'Cash');
    insert into purchases values (3, 1001, 1, 'AZ125', 90, 20, 3.5, sysdate, 'Cash');
    insert into purchases values (4, 1002, 2, 'AZ126', 111, 10, 0, sysdate, 'Cash');
    insert into purchases values (5, 1002, 2, 'AZ127', 100, 10, 0, sysdate, 'Cash');
    insert into purchases values (6, 1003, 1, 'AZ123', 101.25, 2, 0, sysdate, 'Cash');
    insert into purchases values (7, 1003, 1, 'AZ121', 1000, 1, 0, sysdate, 'Cash');Edited by: Purvesh K on Oct 9, 2012 12:22 PM (Added Price Column and modified sample data.)

  • I am trying now for more than a week to download the free trial of photoshop and still was not succe

    I am trying now for more than a week to download the free trial of photoshop and still was not successful

    Well, since youi did not provide any system info or other details, you might as well try for another week. We know nothing about your operating system, what browsers you use, what network connection and so on. Start here:
    Direct Download Links for Adobe Software
    Troubleshoot Adobe Download Assistant
    Mylenium

  • Folder is empty on second computer. I have installed adobe CC on two different computers for same account so I can work at two different places. I uploaded files to it yesterday and I can't find it on the CC folder on second computer. What can I do?

    I have installed adobe CC on two different computers for same account so I can work at two different places. I uploaded files to it yesterday and I can't find it on the CC folder on second computer. What can I do?

    Hi DeafScientist,
    Please try the below mentioned links.
    Creative Cloud Help | Browse, sync, and manage assets
    Error: "Unable to sync files"
    Creative Cloud File Sync | Known issues
    Kindly revert if you are unable to sync files.
    Thanks,
    Atul Saini

  • Is there a way to open CSV files with more than 255 columns?

    I have a CSV file with more than 255 columns of data.  It's a fairly standard export of social media data that shows volume of posts by day for the past year, from which I can analyze the data and publish customized charts. Very easy in Excel but I'm hitting the Numbers limit of 255 columns per table. Is there a way to work around the limitation? Perhaps splitting the CSV in two? The data shows up in the CSV file when I open via TextEdit, so it's there. Just can't access it in Numbers. And it's not very usable/useful for me in TextEdit.
    Regards,
    Tim

    You might be better off with Excel. Even if you could find a way to easily split the CSV file into two tables, it would be two tables when you want only one.  You said you want to make charts from this data.  While a series on a chart can be constructed from data in two different tables, to do so takes a few extra steps for each series on the chart.
    For a test to see if you want to proceed, make two small tables with data spanning the tables and make a chart from that data.  Make the chart the normal way using the data in the first table then repeat the following steps for each series
    Select the series in the chart
    Go to Format sidebar
    Click in the "Value" box
    Add a comma then select the data for this series from the second chart
    Press Return
    If there is an easier way to do this, maybe someone else will chime in with that info.

  • Is there a way to use locations to do more than just basic network config?

    Hello,
    I'm trying to figure out if the network location can be used to do more than just the basics. For example, is there a way to automatically connect to network drives when I'm at a particular location? Trying to connect to them all the time (as a login item for example) makes the computer slow down whenever I'm at a different location. Also, is there a way to change the default printer or even sharing of pictures or music? It doesn't make sense to have a default printer something that's not available anymore at my new location, right?
    What would be the best way to automatize all this (if it's not already supported?)
    Many thanks in advance,
    Adrian

    You can create many calendars. Here's the tip:
    Example: you have 1 son and 1 daughter.
    In iCloud ( https://www.icloud.com )
    Create 1 calendar called Son ( Choose a color to tell them apart )
    Create 1 calendar called Daughter ( Ditto )
    Create 1 calendar called Kids
    Since you are the creator, you get to see all calendars combined.
    Send invitations to each of them
    Son gets Son and Kids calendars
    Daughter gets Daughter and Kids calendars
    So if there an event for Son, just put in that calendar
    If it's for both then enter it in the Kids calendar
    Likewise for daughter.

  • Is there a way to have iDVD have accommodate more than one iMovie project on one DVD?

    Looking for a way to have more than one iMovie Project burned to one DVD through iDVD.  Any assistance is greatly appreciated.

    Hi
    YES - But do not use "Share to iDVD" in any version of iMovie as this will degrade the final result - BUT
    Share to Media Browser - and as Large (Not HD or other resolutions as this too degrades the final DVD)
    Now when Your movies are Shared. Close iMovie
    Open iDVD and import movies from Media button/Movies (down to the right)
    And You can add up to 99 movies - or 60/120 minutes (reg encoding quality chosen)
    Time is = Movie duration + MENU DURATION (can take 15 minutes or more if elaborated)
    (I keep it as simple possibly)
    Yours Bengt W

  • Is there a way to erase contents in cells more than one, without deleting the formatted background?

    When using Numbers on iPad (Numbers '09, v2.3 on iPad, iOS v6.1.3), I want to erase contents in an area with more than 1 cell, e.g. 10 cells, without erasing/deleting the formatted background colour.
    Using a right click on cells using Numbers on a Mac (Mac, OS X v10.8.4) you can differentiate between "delete content of cell" (where the background is maintained) and "delete all" (where both the content AND the background is deleted).
    Please, I need help.
    Kindly,
    Henning154

    Just select the cells you want to delete and hit the delete button.
    That works on my machine (Macbook Pro).
    The background remains unchanged.

  • Is there a way to get vmmark score with more than 8 VMs/ tile?

    I want to run VMmark tool not only with 8 standard workload VMs but few more VMs added to that. Is it possible to get scores for those VMs as well, can anybody please provide some help on to how to do that?
    Is there any reference document available, to customize VMmark?

    What kind of "extra" VMs are you considering?  Remember that any runs where you change the workload mix will be non-compliant and cannot be used for public disclosure.

  • I have two Ipod's one of my Ipod's won't sync the library over to my Mac. So i'm stuck with the songs I bought from Itunes. And I can't find a way to put them over.

    A year ago I bought an Imac to replace my broken Laptop. I have two Ipod touches. They both shared the same Library of CD and Itunes music. Until I synced the Ipod to my Itunes account on my Imac. And it wiped the CD songs from that Ipod, and just uploaded the Itunes songs. Uploading the songs Via CD isn't an option any more as I moved quite a bit, so CD's are all scratched like mad. I still have all the CD songs left on one Ipod, and when connected to Itunes I have access to the CD songs. But can't transfer them over to my Library. I'm too scared to Sync it incase I lose all my CD songs forever. Help

    The music sync is one way - computer to ipod.  The only exception is ituens purchases.  The ipod is not a backup device.
    Copy everything from the old computer or your backup copy of your old computer, to the new one.

  • Is there a way to type the genre into more than 1 song at a time?

    I have a list of songs and they are all the same genre.  is there anyway to select all and type the genre once and have it fill in all selected?

    Hold down command key to select multiple songs, then "Get Info", and you will modify all fields at the same time.

  • Is there a way for the CC desktop app to recognize already installed software?

    Is there a way for the CC desktop app to recognize already  installed software? Initially the CC app had all my installed software  listed but since one of the patches it no longer  knows what I  have installed. I can still use everything but I'm worried I will  encounter issues if I am unable to change this situation. I have already looked through multiple discussions looking for an answer so if I have missed the solution my bad.
    Cheers
    Kelly

    You would have to run teh Cleaner tool and reinstal lfrom scratch. Something botched your installer database.
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

Maybe you are looking for

  • Unable to load pictures on my new Nano

    Hello, I got my Nano yesterday! Been having some troubles with it, but I used my free techincal support call to resolve most of them. This particular problem occured when I tried to use iTunes to load photos on my Nano. This is the process that I fol

  • Silent Installation For Crystal Reports Runtime Engine

    Hi I am now using vs2010 and I had created a setup package for my project. I had added the merged module CRRuntime_13_0_1.msn into the setup project. After building the setup package, I got the following items: Project.msi setup.exe So, by executing

  • Have to startup database every time I reboot Windows

    Hi, I have installed Oracle XE on Windows 2003 Server. Every time I reboot Windows, I have to logon as sysdba with SQL and startup the database. Is it possible to have Oracle do this automatically after Windows startup? Thanks, Frank

  • Artwork Frustration! Anyone know a fix?

    I've read many threads on this but cannot find a fix. I, too, have the same issue where I can't seem to manually add artwork to many full length albums, all singles, and full length albums with few songs (7 songs or less). I've tried the old way of j

  • Compounding Attribute Issue

    Hello Experts, I have the following scenario and need some guidance/feedback on this. ZOCDIPN Masterdata IO has ZOCDSTTEM as Nav.attribute. ZOCDSTTEM has 0SOLD_TO compounded to it. I wasn't sure why this was modeled in this way earlier. But, now the