Hi Ana
I haven't forgotten you and your problem with your buttons and gotoAndStop(). Examining your work I thought long and hard how to tell you that your kind of approach, how you build this AIR desktop app leads you into all kinds of problems. In short: you should be the author and maker of texts, graphics, layouts and overall content structure, somebody else should be responsible for programming and development. (whereby I'm really touched by the plight of the Iberian Lynx).
So in a nutshell: I can't really help you with your button/gotoAndStop() problem without taking your work apart and re-organising it completely.
Though, there is still one thing left, your video issue:
"But if you're available I have a harder question... somehow in this project, where I am suppose to add some videos, every time I try to add a video with the playback then I get this error when using the button gotoandstop: "
ReferenceError: Error #1056: Cannot create property __id0_ on flash.display.Stage.
at flash.display::MovieClip/gotoAndStop()
at LinceV1_3_fla::MainTimeline/fl_ClickToGoToAndStopAtFrame_5()[LinceV1_3_fla.MainTimeline:: frame1:60]
When I tried to add a video using the FLVPlayback component I got the same ReferenceError. You know my last Actionscript 3 days are about 5 years ago. It's very rusty these days. It's all HTLM5 Canvas Javascript.
But while reading in the Actionscript 3 Reference for some time to refresh my knowledge it suddenly came to me. There is a problem with the FLVPlayback Component and Fullscreen. Your very first AS3 code starts with
stage.displayState = StageDisplayState.FULL_SCREEN;
Normally videos in the FLVPlayback component are supposed to be Fullscreen, the controls of the video often include a toggle Fullscreen button. But if the AIR or Flash Player document as such is already Fullscreen before the FLVPlayback component appears, this leads to trouble. I had this problem some 9 years ago and found a solution then.
What I did today was comment out your //stage.displayState = StageDisplayState.FULL_SCREEN; statement and then the videos are playeing without an error. So for now it's either Fullscreen but no videos or videos but no Fullscreen.
There's a very old post (2007) which helped me 9 years ago (2010) to begin tackling the problem: full-screen mode and FLVPlayback component conflict.
I suggest you post a new question here and in the Actionsript3 Subforum with the headline Full-screen mode and FLVPlayback component conflict, where you describe the problem like you did to me. Maybe some clever people who are still more into Actionscript 3 can help you with fresher advice that I can give you.
Klaus