book catalog error #1010, u can give me some advice please

Hi, this is my .fla, some images of book file and catalogue xml with 6 pounds (2 for the political class, romance, and science)

testing123. Pondi.hr/Books/Catalog.zip

and you can download it to see and try.

his simple book subject list dynamically file Ext. xml as you can see on

http://testing123.Pondi.HR/books/index.html

problem: when you click on the category on the right button, sometimes nothing happens, you have to click several times until you get result (list of books according to the corresponding category) and after that everything goes well, as you see... when publish you in flash and make this category button by clicking on, you can see error th output that says :

TypeError: Error #1010: a term is undefined and has no properties.
function / < anonymous >)
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()

PS: If anyone can give me some advice on this (img probbably charger difficulties) I would be so grateful and blessed

THIS CODE from the EAST (I'm a bit new to this so have mercy with your comments ):

Stop();
flash.net import. *;
import flash.events.EventDispatcher;
Import fl.containers.UILoader;
Import fl.containers.ScrollPane;
import flash.display.MovieClip;
import flash.display.Shape;
import flash.events.MouseEvent;
import flash.events.Event;

var myScrollPane:ScrollPane = new ScrollPane();
var arrUILoaders:Array = new Array();
var fontStyleAlignL:TextFormat = new TextFormat();
var fontStyleAlignR:TextFormat = new TextFormat();

STYLE OF FONT FOR ALL PRICES (ALIGN = LEFT)
fontStyleAlignL.size = 11;
fontStyleAlignL.color = 0xAAAAAA;
fontStyleAlignL.font = "Tahoma";

FOR THE PRICE (ALIGN = RIGHT) FONT STYLE
fontStyleAlignR.size = 11;
fontStyleAlignR.color = 0xAAAAAA;
fontStyleAlignR.font = "Tahoma";
fontStyleAlignR.align = 'right ';

politics_mc.addEventListener (MouseEvent.CLICK, workWantedCat);
romance_mc.addEventListener (MouseEvent.CLICK, workWantedCat);
science_mc.addEventListener (MouseEvent.CLICK, workWantedCat);

function workWantedCat(event:MouseEvent):void {}

myScrollPane.refreshPane ();

var xPlacement:int = 10;
var yPlacement:int = 0;
var distance: int = 15;

var wantedCat:String = "";

Switch (event.target.name) {}
case "politics_mc": wantedCat = "policy";        break;
case "romance_mc": wantedCat = "romance";        break;
case "science_mc": wantedCat = "Science";        break;
}

var myXML:XML;
var url: URLRequest = new URLRequest ("catalog.xml");
var loader: URLLoader = new URLLoader (url);
loader.addEventListener (Event.COMPLETE, onLoadComplete);

function onLoadComplete(event:Event):void {}

var rowShape:Sprite = new Sprite();

If {(loader.data)
myXML = XML (loader.data);
var books: XMLList = myXML.book;
}

for (var i: uint = 0; i < Books.length (); i ++) {}

If (Books [i].category.toString () == wantedCat) {}

FORM FOR EACH LINE OF THE BOOK
rowShape.graphics.lineStyle (1, 0 x 333333);
rowShape.graphics.drawRoundRect (xPlacement, yPlacement, 820, 15, 15, 15);

SUPPORT FOR THE LEFT IMG THUMBNAIL
var newUILoader:UILoader = new UILoader();
arrUILoaders.push (newUILoader);
arrUILoaders [i] .source = .photo books [i];
arrUILoaders [i] .scaleContent = true;
arrUILoaders [i] .setSize (12,12);
arrUILoaders [i] .visible = true;
arrUILoaders [i] .x = xPlacement + 4;
arrUILoaders [i] there = yPlacement + 2;
arrUILoaders [i] .buttonMode = true;
arrUILoaders [i] .addEventListener (MouseEvent.MOUSE_OVER, ToolTip);

TEXT FIELD FOR THE TITLE OF THE BOOK
var titleField:TextField = new TextField();
titleField.text = books [i]. Title;
titleField.x = xPlacement + 20;
titleField.y = yPlacement-1;
titleField.selectable = true;
titleField.wordWrap = false;
titleField.setTextFormat (fontStyleAlignL);
titleField.width = 250;
titleField.height = 17;

TEXT FIELD FOR THE AUTHOR OF THE BOOK
var authorField:TextField = new TextField();
authorField.text = .author books [i];
authorField.x = xPlacement + 275;
authorField.y = yPlacement-1;
authorField.selectable = true;
authorField.wordWrap = false;
authorField.setTextFormat (fontStyleAlignL);
authorField.width = 150;
authorField.height = 17;

TEXT FIELD FOR THE BOOK EDITOR
var publisherField:TextField = new TextField();
publisherField.text = .publisher [i] books;
publisherField.x = xPlacement + 430;
publisherField.y = yPlacement-1;
publisherField.selectable = true;
publisherField.wordWrap = false;
publisherField.setTextFormat (fontStyleAlignL);
publisherField.width = 125;
publisherField.height = 17;

TEXT FIELD FOR THE YEAR OF THE BOOK
var yearField:TextField = new TextField();
yearField.text = books [i]. Year;
yearField.x = xPlacement + 560;
yearField.y = yPlacement-1;
yearField.selectable = true;
yearField.wordWrap = false;
yearField.setTextFormat (fontStyleAlignL);
yearField.width = 50;
yearField.height = 17;

TEXT FIELD FOR THE COMMENT BOOK
var commentField:TextField = new TextField();
commentField.text = books [i]. Comment;
commentField.x = xPlacement + 615;
commentField.y = yPlacement-1;
commentField.selectable = true;
commentField.wordWrap = false;
commentField.setTextFormat (fontStyleAlignL);
commentField.width = 150;
commentField.height = 17;

TEXT FIELD FOR THE PRICE OF THE BOOK
var priceField:TextField = new TextField();
priceField.text = [i] books list;
priceField.x = xPlacement + 770;
priceField.y = yPlacement-1;
priceField.selectable = true;
priceField.wordWrap = false;
priceField.setTextFormat (fontStyleAlignR);
priceField.width = 50;
priceField.height = 17;

ADD TEXT FIELD CHILDS TO LINE SHAPE
rowShape.addChild (arrUILoaders [i]);
rowShape.addChild (titleField);
rowShape.addChild (authorField);
rowShape.addChild (publisherField);
rowShape.addChild (yearField);
rowShape.addChild (commentField);
rowShape.addChild (priceField);

SETTING LINES AND FIELDS TXT PLACEMENT
yPlacement = yPlacement + distance;
}
}

ROWSHAPE SETTING IN SCROLLPANE
myScrollPane.source = rowShape;
myScrollPane.setSize (865, 500);
myScrollPane.move (30: 20);
addChild (myScrollPane);
}
}

FUNCTION OF THE TOOLTIP FOR IMG THUMBNAIL MOUSE_OVER
var bookImg_tt:UILoader = new UILoader();
function tooltip(event:MouseEvent):void {}
var imgPath:String = event.currentTarget.source;
bookImg_tt.enabled = true;
bookImg_tt.source = imgPath;
bookImg_tt.scaleContent = true;
bookImg_tt.startDrag ();
bookImg_tt.x = mouseX;
bookImg_tt.y = mouseY;
bookImg_tt.visible = true;
event.currentTarget.addEventListener (MouseEvent.MOUSE_OUT, noTooltip);
addChild (bookImg_tt);
}

WITHDRAWAL OF TOOLTIP FOR IMG THUMBNAIL MOUSE_OUT FUNCTION
function noTooltip(event:MouseEvent):void {}
bookImg_tt.enabled = false;
bookImg_tt.source = "";
bookImg_tt.visible = false;
removeChild (bookImg_tt);
}

TNX A LOT

The problem occurs when you move a series of books in the list and is located mainly between those lines...

for (var i: uint = 0; i

arrUILoaders.push (newUILoader);

arrUILoaders [i] .source = .photo books [i];

If you select the category romance everything first, the value of i is already 4 via the closure, when it is finally found, but because you push() shippers in the table, there is no arrUILoader [4]... There is only arrUILoader [0] as it was the first to be pressed.  If you change the line in bold to be...

arrUILoaders [i] = newUILoader;

You will have the UILoader your search code in all lines that target arrUILoaders [i] that follow.  Otherwise, using push(), you must target the last UILoader pushed, not one designated by I, which would mean that your table would grow whenever you choose a new category.

Tags: Adobe Animate

Similar Questions

  • Pitch bend wheel on my pc - 300 midi keyboard Roland. The Modulation part works but when I try to pitch bend a note using the same logic of wheel just plays a continuous note. Can someone give me some advice please? Thank you

    Hi, I have a problem with my pitch bend wheel on my pc - 300 midi keyboard Roland. The Modulation part works but when I try to pitch bend a note using the same logic of wheel just plays a continuous note. Can someone give me some advice please? Thank you

    It's a delicate issue... like some patches cannot stipulate pitchbend...

    But to quickly test your pitchbend wheel actually works properly...

    Download the free lunch monitor...

    Snoize: MIDI Monitor

    Run and see if it sees pitchbend data sent by your keyboard... and therefore by logic.

  • I want to install windows on my new macbook and I need to create a partition. I have not now what size to make my windows partition. Can someone give me some advice?

    I want to install windows on my new macbook and I need to create a partition. I have not now what size to make my windows partition. Can someone give me some advice?

    1. in what year is your Mac?

    2. What is the size of your storage internal?

    3. what version of Windows?

    4 as a general rule 60-100 GB for W8 + / W10 is recommended. You can also create a minimum Windows (30-50 GB) and use an external drive D: for documents applications for portability.

  • I keep getting installation errors that it can't find some files for installation.

    Original title: How can I stop MSInstaller?  I got errors when reinstalling the CA anti-virus software and it continually seeks to install parts of the show.

    I get installaer error that it can't find some files for installation.  Since she cannot complete the task, I can not install other updates, because he wants the other installation before proceeding with a new.

    Hello
     
    What is the full error message?

    Please follow the steps mentioned below:
     
    Method 1:
    Diagnose and resolve program install and uninstall problems automatically:
    http://support.Microsoft.com/mats/Program_Install_and_Uninstall/
     
    Method 2:
    How to solve the problems when you install or uninstall programs on a Windows computer:
    http://support.Microsoft.com/kb/2438651
  • This guard freezing computer and telling me sqmapi.dll is missing. Can I have some suggestions please

    original title: sqmapi.dll

    This guard freezing computer and telling me sqmapi.dll is missing. Can I have some suggestions please

    Run the System File Checker tool and I hope that it will solve the dll. Learn How to use the System File Checker tool

  • I am trying to add images such as tables, podium, stage, cake table, to a floor plan for a wedding?  Can offer you some advice?

    I am trying to add images such as tables, podium, stage, cake table, to a floor plan for a wedding?  Can offer you some advice?

    Absolutely, do not start with a PDF file. It is quite unsuitable for this type of installation. Use a graphical tool, preferably one designed for floor plans.

  • I have Outlook Express 6. When I try to send/receive my mail I get this error: Protocol: POP3, Port: 110, secure (SSL): no, error number: 0x800C0133 can anyone help with this please

    I went and read a few articles on this I tried to delete the Folders.dbx, renamed server, flip pass and username. I just can't go there. Can anyone help on this.

    Thank you

    It isn't Folders.dbx which is screwed, it's Inbox.
     
    **************************************************
     
    Error number: 0x800C0133 = a corrupt Inbox.
     
    Move any message you want to save to a local folder that you create. Then, remove the problem of Inbox as follows.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder options | View.
     
    With OE closed, find the box of Inbox.dbx and delete it. Another will be created automatically when you open OE.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the processors and causes a multitude of problems such as time-outs and account setting changes. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3
  • Can someone give me some advice on databases?

    Hi all

    I've recently created my first database in phpmyadmin, so I'm new to the whole process. ID like to some how to apply within 60 days to data that are transferred to the table after this id of time as the data to be automatically deleted. Is it possible in phpmyadmin and is this possible without change or make changes to the code in Dreamweaver? Please see the image below to see my database in the table structure.

    Thank you for all the advice!

    screenshot.jpg

    Ness_quick wrote:

    OK I did this and inserted a new data through my 'insert_donations.php' page which has downloaded new data and a date now appears in the column "dateCreated" in my table, all working as it should! I tried to change to yesterdays date via phpmyadmin, but it doesn't seem to like it so ive left and will wait to see if it removes it tomorrow. Fingers crossed!

    You must change the "date" in the query below on the name of column - dateCreated (if that's what you named it) - and YOUR table is called "Gift" NOT "gifts".

    mysqli_query ($con, "DELETE FROM WHERE date gifts< date_sub(now(),="" interval="" 1="">

    Ness_quick wrote:

    BUT the problem I have now is when I opened the "insert_donations.php" security login page (index.php) should load first, but now is not a reason any. It worked fine until I added this code earlier (see above)?

    I'm guessing it's because you have not closed the browser so the "session" is always present.

  • someone made my iPhone 6 I my some advice please can someone help me find

    HoHow I can find my phone. Ibuy in Israel .my phone company orange uses someone how can I find the track number is using my phone please help me imei nomber * some bady for me can end only Greenwich campiny sim card use now

    Greetings khajuraho India mp,

    I'm sure you must be distressed about losing your iPhone. I know it's hard to lose something as personal.

    The following article describes the steps you should take to try to recover your iPhone but also to secure your data, if the phone can not be recovered - If your iPhone, iPad or iPod touch is lost or stolen.

    Thank you for using communities of Apple support, and I hope you recover your iPhone soon.

    Be well.

  • I think that we have been scammed? Can anyone offer some advice.

    My wife had a phone call from someone claiming to be a Microsoft technician helping to get rid of its error messages.

    We are located in Geelong, Australia.

    She went to a www.boot.usa.cc website and has been invited to download and run the program which has been az3qfg.bn1.livefilestore.com...

    A she was the victim of a scam, and what do we have this program?

    Any help on what to do next would be greatly appreciated.

    Thanks everyone for your help.

    Cheers, JFo!

    Yes you have been scammed, MS does not phone people, nor MS of the email of the people except in response to a conversation of e-mail, the individual began

    No idea what the program did, in the worst case, he extracted details log-on/word password for different sites, including the Bank/store cards etc.

    Then to be sure you contact all of your financial institutions to change your password/maps, etc. and change any password on any other site that you use, including email.

    And to be sure you need to recover your PC to factory state using a destructive restore that will destroy everything on the PC

  • My icons on my desktop are frozen. I am new to the computer world. I am currently enrolled in a computer course, did some research and frozen sort my icons, can someone give me some advise how to erase it.

    As I said above, I'm new to the world of computing, and I'm currently enrolled in classes, well, my problem is that I got my frozen unconstitutional office. Could someone give me some advice on how to fix this error.  Thank you very much for your company.

    Hello

    If the system is blocked, you may have to restart. If necessary, you can restart in Mode safe
    by pressing repeatedly F8 as you boot/startup.

    What antivirus/antispyware/security products do you have on the machine? Be one you have NEVER
    on this machine, including those you have uninstalled (they leave leftovers behind which can cause
    strange problems).

    ----------------------------------------------------

    Follow these steps:

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    ==========================================

    After the foregoing:

    How to troubleshoot a problem by performing a clean boot in Windows Vista
    http://support.Microsoft.com/kb/929135
    How to troubleshoot performance issues in Windows Vista
    http://support.Microsoft.com/kb/950685

    Optimize the performance of Microsoft Windows Vista
    http://support.Microsoft.com/kb/959062
    To see everything that is in charge of startup - wait a few minutes with nothing to do - then right-click
    Taskbar - the Task Manager process - take a look at stored by - Services - this is a quick way
    reference (if you have a small box at the bottom left - show for all users, then check that).

    How to check and change Vista startup programs
    http://www.Vistax64.com/tutorials/79612-startup-programs-enable-disable.html

    A quick check to see that load method 2 is - using MSCONFIG then put a list of
    those here.
    --------------------------------------------------------------------

    Tools that should help you:

    Process Explorer - free - find out which files, key of registry and other objects processes have opened.
    What DLLs they have loaded and more. This exceptionally effective utility will show you even who has
    each process.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896653.aspx

    Autoruns - free - see what programs are configured to start automatically when you start your system
    and you log in. Autoruns also shows you the full list of registry and file locations where applications can
    Configure auto-start settings.
    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx
    Process Monitor - Free - monitor the system files, registry, process, thread and DLL real-time activity.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896645.aspx

    There are many excellent free tools from Sysinternals
    http://TechNet.Microsoft.com/en-us/Sysinternals/default.aspx

    -Free - WhatsInStartUP this utility displays the list of all applications that are loaded automatically
    When Windows starts. For each request, the following information is displayed: Type of startup (registry/Startup folder), Command - Line String, the product name, Version of the file, the name of the company;
    Location in the registry or the file system and more. It allows you to easily disable or remove unwanted
    a program that runs in your Windows startup.
    http://www.NirSoft.NET/utils/what_run_in_startup.html

    There are many excellent free tools to NirSoft
    http://www.NirSoft.NET/utils/index.html

    Window Watcher - free - do you know what is running on your computer? Maybe not. The window
    Watcher says it all, reporting of any window created by running programs, if the window
    is visible or not.
    http://www.KarenWare.com/PowerTools/ptwinwatch.asp

    Many excellent free tools and an excellent newsletter at Karenware
    http://www.KarenWare.com/

    ===========================================

    Vista and Windows 7 updated drivers love then here's how update the most important.

    This is my generic how updates of appropriate driver:

    This utility, it is easy see which versions are loaded:

    -Free - DriverView utility displays the list of all device drivers currently loaded on your system.
    For each driver in the list, additional useful information is displayed: load address of the driver,
    Description, version, product name, company that created the driver and more.
    http://www.NirSoft.NET/utils/DriverView.html

    For drivers, visit manufacturer of emergency system and of the manufacturer of the device that are the most common.
    Control Panel - device - Graphics Manager - note the brand and complete model
    your video card - double - tab of the driver - write version information. Now, click on update
    Driver (this can do nothing as MS is far behind the certification of drivers) - then right-click.
    Uninstall - REBOOT it will refresh the driver stack.

    Repeat this for network - card (NIC), Wifi network, sound, mouse, and keyboard if 3rd party
    with their own software and drivers and all other main drivers that you have.

    Now in the system manufacturer (Dell, HP, Toshiba as examples) site (in a restaurant), peripheral
    Site of the manufacturer (Realtek, Intel, Nvidia, ATI, for example) and get their latest versions. (Look for
    BIOS, Chipset and software updates on the site of the manufacturer of the system here.)

    Download - SAVE - go to where you put them - right click - RUN AD ADMIN - REBOOT after
    each installation.

    Always check in the Device Manager - drivers tab to be sure the version you actually install
    presents itself. This is because some restore drivers before the most recent is installed (sound card drivers
    in particular that) so to install a driver - reboot - check that it is installed and repeat as
    necessary.

    Repeat to the manufacturers - BTW in the DO NOT RUN THEIR SCANNER device - check
    manually by model.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    If you update the drivers manually, then it's a good idea to disable the facilities of driver under Windows
    Updates, that leaves about Windows updates but it will not install the drivers that will be generally
    older and cause problems. If updates offers a new driver and then HIDE it (right click on it), then
    get new manually if you wish.

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    Hope these helps.

    Rob - bicycle - Mark Twain said it is good.

  • AS3 Twitter Feed error 1010

    Hello

    I am trying to create a simple Twitter account for a site in Flash.  When I start the flash animation but I get the following messages appear in the output window:

    TypeError: Error #1010: a term is undefined and has no properties.

    at Cinema_fla::MainTimeline/processXML()

    at flash.events::EventDispatcher/dispatchEventFunction()

    at flash.events::EventDispatcher/dispatchEvent()

    at flash.net::URLLoader/onComplete()

    I use Flash CS6 and the AS3 code for my Twitter account is shown below:

    var myXMLLoader:URLLoader = new URLLoader();
    myXMLLoader.load (new URLRequest ("https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=YahooMoviesUK"));
    myXMLLoader.addEventListener (Event.COMPLETE, processXML);

    function processXML(e:Event):void {}
    var myXML:XML = new XML (e.target.data);

    txtTweet1.text = myXML.status [0] .text;
    txtTweet2.text = myXML.status [1] .text;
    txtTweet3.text = myXML.status [2] .text;
    }

    I would be grateful if someone could give me some advice as to why this error occurs.  If you need more information please let me know.

    Thank you

    From what I remember, the text of the xml is extracted as a method rather than a property...

    myXML.item.title [0] .text ();<-----  put="" ()="" after="">

    Continue to use the trace, if things are still wandering.

  • I have this error #1023 What can I do?

    I have this error #1023 What can I do?

    Please send us the .muse to [email protected] file as well as a link to this topic so that we can attempt to reproduce the error. If the file is larger than 20 MB, you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (if you use a service, please include your email address in the body of the message back, given that not all services to include it in the invite sharing they send.) Thank you.

  • Win32 is no more on my pc. I can't open some files because of this. How can I get that back?

    For some reason, I have delete win32.  Just another error, I did since my laptop.  Have tried opening some games and a blue box comes up saying, this application has failed to start because C:\windows\system32\wxvault.dll was not found. Reinstalling the application may fix this problem...   Help! I'm like a kid with a new toy.  It is frustrating not knowing what to do to solve this problem.  Please give me some advice.

    Looks like it's a file belonging to Dell.

    It is not a windows file. Looks like it belongs to the Embassy Trust Suite. I might take a look with teamviewer if you wish. You'll see what I'm doing. According to a site maybe this file in the system32 hard disk folder (but you have to rename it). If you decide to take teamviewer, give me the ID and the password, it gives you. So, I can connect

  • I made an update of firefox now I can't even open firefox - please help

    I did a rest of firefox earlier today and ever since then, so I can't get into firefox. I can't open it, whenever I click on it I get this message "your Firefox profile cannot be loaded. It may be missing or inaccessible. "I honestly spent 5 hours trying to figure this out, I deleted ALL the" profiles.ini"things and have downloaded and reinstalled firefox about 50 times." I'm on a Mac OS X version 10.9.5. Can someone help me or give me some advice? Also, I had everything backed up on my profile and I hope it's still there, but even if it is not (although it would be boring) I get more having only not here. I just want to have firefox again, but whatever, I do, I get this message. Also, I restarted every time and always stop nothing. Thanks for any help you can give.

    You need to open the Profile Manager to create a new profile if you are not able to find the file profiles.ini.

Maybe you are looking for