User Profile

Collapse

Profile Sidebar

Collapse
Tiruak
Tiruak
Last Activity: Jun 22 '07, 05:11 PM
Joined: Jun 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Alright, I found what was wrong with my menu.

    To the first problem, I figured was really the low fps. I changed from 12 (standard for flash I guess) to 30fps, and it started to work much better.

    Second problem was because of a mistake I did. I inserted AS to stop my animation from repeating forever while mouse over, but I did it on the very first frame of my AS layer. So I created a blank keyframe at the end of the OnMouseOver...
    See more | Go to post

    Leave a comment:


  • Ok, about my first problem.

    Searching a bit more into my work, I noticed that changing the document fps from 12 to 30 helped a bit. Not sure if this was the only problem tho.
    I will keep researching and asking around. Any insight will be greatly appreciated
    See more | Go to post

    Leave a comment:


  • Tiruak
    started a topic My menu seems to be heavy and I dont know why. Help?

    My menu seems to be heavy and I dont know why. Help?

    Hi there. Thanks in advance for the people reading and trying to help.

    I'm very begginer using flash and action script, and I tryed to do this one navigation menu. Since I dont have experience doing this, I did things in a way I thought it should work, to create the onmouseover animation of the buttons of my navigation menu.

    After a couple days working on it, I managed it to work almost the way I wanted it to, with 2...
    See more | Go to post

  • Tiruak
    replied to Interface to interact with a CD
    From what I could understand, he wants to create in flash, an user interface to interact with a CD, and he's asking if there is any tutorial that would help him doing that. Probably that would run when windows activate the auto play of the CD.
    See more | Go to post

    Leave a comment:


  • Tiruak
    replied to Movie linking to a new window?
    Thanks, It worked

    Code:
    navigateToUrl(request,"_self")
    See more | Go to post

    Leave a comment:


  • Tiruak
    started a topic Movie linking to a new window?

    Movie linking to a new window?

    Well, thats the second time I post here. This time, it's because the menu I created, when people click on it (it's embed on my webpage), it's opening a new window, even tho I double checked and there is no reference to _blank or other window name on my code. Any insight? The code is as it shows below:

    Code:
    function callCompany(event:MouseEvent):void {
    	var myrequest:URLRequest = new URLRequest("company.html");
    ...
    See more | Go to post

  • Well, actually i got it to work.
    What was missing is the function definition as a mouse event. So correct code is:

    Code:
    b_1.addEventListener(MouseEvent.CLICK, callCompany);
    function callCompany(event:MouseEvent):void {
    	var myrequest:URLRequest = new URLRequest("mycompany.html");
    	navigateToURL(myrequest);
    }
    Thanks anyways.

    I just dont understand...
    See more | Go to post

    Leave a comment:


  • Thanks Motoma, it has a nice explanation on the link, but I'm still having problems.

    im using the following code:

    Code:
    b_1.addEventListener(MouseEvent.CLICK, callCompany);
    function callCompany():void {
    	var myurl:String = "http://www.geekavailable.com";
    	var myrequest:URLRequest = new URLRequest(myurl);
    	navigateToURL(myrequest);
    }
    And I'm receiving...
    See more | Go to post

    Leave a comment:


  • Linking buttons to URL. Something is wrong. Please help!

    Ok, from the title you can probably tell im a beginner to Flash.
    I'm using CS3, and am trying to create a "menu" to this one webpage.

    I did 4 animated buttons, but now im having problems making them link to my pages. I will describe with details what I did:

    First, I thought about select the button, and go to the Action panel and enter the script over there. For my surprise, when I try to type it in the...
    See more | Go to post
No activity results to display
Show More
Working...