AS :: Web Development - Use Web Navigation In Order To Create Flash-based Websites

Dec 11, 2009

I'm a web designer. In a effort to make Flash-based sites for my clients I have gone over stacks of AS books now for months. I just don't get any of it--and I've tried. Moreover, the books all give abstract examples to do just about anything with AE. My needs are very limited: I need to use AS for web navigation in order to create Flash-based websites. Here's an example of what I'd like my websites to do: [URL]

Can anybody point me to Flash templates, demos, tutorials, AS libraries, websites, videos, classes, that focus on Flash navigation, with specific examples of real life websites? Or blocks of code where all I have to do is replace some lines with my own stuff? Or an AS library comparable to jQuery? I know this has to be doable. I don't know any JavaScript either, but I'm perfectly able to fulfill all my web design needs with jQuery.

View 2 Replies


Similar Posts:


Web Development :: Web Development / Make A Web Based Video Recording?

May 10, 2010

I want to have a web site which switches the web camera of users, makes a video recording and send results to my web server.Is it possible to do that? I think it should be. For example such sites as chatroulette.com starts web camera. Should it be done with the Adobe Flash technologies? Is it hard to do that?

View 1 Replies

Know HTML Todesign Complete Flash Based Websites?

Feb 22, 2010

Is it neccesary to know HTML todesign complete flash based websites ?Ofcourse i know simple things like the index.html and adjusting borders etc within the html code. But i dont know exclusively how to make HTML standalone pages. Im basically a video edit guy and dont have much time to spend on learning HTML webdesigning.I propose to further study and polish my skills only in flash and stick to that area of specialization, ie.designing websites purely based on Flash. Is this OK. Are there designers like this who only specialize in flash websites without venturing into HTML ?

View 8 Replies

AppleScript :: Open URL In Safari Crashes For Flash-based Websites

Jun 4, 2010

I'm trying to open a URL in Safari. It works fine for websites without Flash embedded, but crashes Safari for Flash sites.

Example (this WORKS):

tell application "Safari" to open location [URL]

This CRASHES when Safari is not already running:

tell application "Safari" to open location [URL]

Two things I noticed:

Safari only crashes for websites with embedded Flash The script above only crashes if a new instance of Safari is created (i.e. Safari was not running before)

From the second observation I assume that it could be a permission issue of some sort. Maybe the Safari instance launched from the AppleScript has a problem loading plugins?

View 2 Replies

Flash :: Web Development - Not To Target 10 For A Browser - Based Game?

Oct 25, 2010

There's clearly a bunch of new stuff in Flash 10, I'm seeing a bunch in the Graphics class so far. Struggling a bit to reconcile it with what I know already but it looks useful - render lists and 3D transforms, etc - however I wondered if there are good arguments for targeting Flash 9 since I can definitely manage without all the new stuff I don't know. Like support on non-Windows devices, wide adoption of Flash 9 Vs 10, etc.

View 1 Replies

ActionScript 2.0 :: Create Drawing Effect In Flash That Many Of Us Have Seen On Various Websites.

Jan 18, 2007

I want to create the drawing effect in Flash that many of us have seen on various websites.URL...I have an object already made in Fireworks. It's just a simple rounded rectangle with a 10 pixel stroke. I'm looking to draw the mask which in turn will give the impression to the user that the object is being drawn (because masks work in reverse).Right now, I have a version already done with a frame-by-frame slow erase of the mask. When played, it makes it look like the rectangle is being drawn. The problem is that it's just too shaky and jumpy. I need a more fluid animation which, like most things, can be done much better in ActionScript. I saw the Drawing API tutorial on Kirupa.com, but it doesn't show how to animate it and I definitely don't know enough AS to do it myself.

View 7 Replies

ActionScript 2.0 :: Use Asp And Flash To Create Database Driven Websites?

Aug 13, 2003

how to use asp and flash to create database driven websiteS?

View 1 Replies

Flash Development On MacOSX - Build A Tile Based / Platform Flash Engine?

Mar 7, 2010

I'm familiar with C/C++/Scheme/Java/OpenGL/TCP/IP.I need to learn how to build a tile based / platform flash engine.What tools should I be using? What books should I buy?I strongly prefer tools that let me do things programatically rather than through a graphical UI.

View 2 Replies

Flash :: Best Development Tool For CBT (computer Based Training) / LMS (learning Management System)?

Dec 10, 2009

The CBT involves user interaction, like quizes, quiz progress, licensing etc. Should I go with flex, or should I go with flash?

View 1 Replies

ActionScript 2.0 :: Send A Variable From An HTML Into Flash In Order To Modify It Based On The Value?

Feb 11, 2010

I'm trying to send a variable from an HTML into Flash in order to modify it based on the value. I generally know how FlashVars works in AS3, so I did some quick reading for AS2 and made a test swf.

[URL]

In my swf, the first frame only has this code:

Code:
if (_root.tester == undefined) {
var passed:String = "Nothing Passed";
} else {
var passed:String = _root.tester;
}
texty.text = passed;

According to what I've read and what my code is, this should work. It should read the value of video as the value of _root.tester (check the HTML code), yet it's always listed as undefined.

View 2 Replies

Web Development :: Web Based Web Cam Recording And Uploading Software

Dec 9, 2010

I'm looking for a software that I can incorporate in my website that can record at a click from the users web cam and upload to the website. It would naturally be restricted to a certain length but is there software out there that can do this? Note: I'm not looking for screen capture software.

View 1 Replies

Actionscript 3 :: Component Based Architecture In Game Development?

Oct 1, 2011

I have been thinking of trying out component based architecture for game development. I have read some blog posts and articles about it but I have a few things I have not sorted out yet. When I say component based I mean that you can add components to a ComponentManager that updates all components in its list. I want to try this to avoid getting classes that inherits variables and functions that they donīt need. I really like the idea of having an really simple entity class with a lot of components working side by side without getting bloated. Also, it is easy to remove and add functionality at runtime wich makes it really cool.

This is what I am aiming for.

// this is what the setup could be like
entity.componentManager.add(new RigidBody(3.0, 12.0));
entity.componentManager.add(new CrazyMagneticForce(3.0));
entity.componentManager.add(new DrunkAffection(42.0, 3.0));
// the game loop updates the component manager which updates all components
entity.componentManager.update(deltaTime);

Communication: Some of the components need to communicate with other components I canīt rely on the components to be self-sustaining. Sometime they will need to communicate with the other components.In Unity 3D, you can access the components using GetComponent().I was thinking of doing it like this, but what happens if you have two components of the same type? Maybe you get a Vector back.

var someComponent : RigidBody = _componentManager.getComponent(RigidBody);

Priority: Some components need to update before others

Some components need to update before others to get the correct data for the current game loop. I am thinking of adding a PRIORITY to each component, but I am not sure that this is enough. Unity uses LateUpdate and Update but maybe there is a way to get an even better control of the order of execution.

[URL]

View 1 Replies

As3 :: Game Development - Create - Append And Read A Txt File With Flash

Jan 16, 2012

I am kind of new to Flash and only really know really basic stuff. (Scenario) I have made a local game in Flash CS3 Professional for my Advanced Higher Computing project for school which is almost completely glitch free. But my teacher says it needs a file handling feature, such as a high score feature in it to make it AH standard. I want to make a simple high score feature where it takes the final score, asks the user to input their name, and add it to a .txt file. Since the computers at my school are very limited, I cannot use programs like Adobe AIR or PHP or anything like that so I need it to be simple. (Question) So I really need a full tutorial (where to put the coding, layout and everything) to:

Check if there is an existing .txt file called (for example) "High Score.txt" If there is, load it. If not, create a .txt file called (for example) "High Score.txt" to the desktop. Take the users input and place it with their final score after it. (Optional but not required) Arrange the scores in order of highest to lowest or display the top 5.

View 1 Replies

Flex :: Create A Simple Web Browser That Can Render Websites?

Apr 9, 2010

1) With these technologies is it possible to create a simple web browser that can render websites?

2) Is it possible to run these technologies on the server side? I am guessing no as Flash requires a browser to run within?

View 2 Replies

Game Development - Create A Translations Library Of Flash Symbols For Action Script From An XML File?

Nov 5, 2011

I have a list of 700 words that I would like to convert to symbols in Flash for a flash card game. I'm trying to make a game where a random symbol from a slice of the array of symbols will come into game play until the user performs an action.Basically, I'm wondering how I can create an arrayed/indexed library of symbols from a dictionary, for a downloadable Flash game. Does anyone know how I could start to script this? Also, if I want to pair a 'word symbol' with its translation, do I need to use a database? Obviously, because it's a flash-card type game I'm working on, the translated symbol is just as valuable as the original-language symbol.

View 1 Replies

Web Development :: Web Development - Pause Sound In Flash?

Feb 9, 2011

i'll using this as2 in the pause button

on (press) {
if (pause!=true) {
playing=false;

[code]....

View 1 Replies

ActionScript 2.0 :: Create The Navigation Bar In Flash?

Feb 8, 2011

how can we create the navigation bar in flash AS2.0. i need to create a navigation bar with the slider control. I called some .swf files from external folder. Now i want to add the navigation bar for that external files. That navigation bar should get the bytes of loaded .swf files. Then that navigation bar will animate upto the 100%. If i drag the slider, loaded .swf file should controlled by the slider(forward and backward).

View 2 Replies

ActionScript 3.0 :: Change Order System To Cart Based

Dec 3, 2009

I currently have a system that takes the users order and then sends the data to a php file where the details are then emailed to the shop admin. I accomplish this by using...

ActionScript Code:
//Retreive and pass the information to a PHP page
var variables:URLVariables = new URLVariables();
variables.vItemCode=menu4dynamictext.text;
variables.vBaseColor=basecolorpickertext.text;
var request:URLRequest=new URLRequest("sendmail.php");
[Code] .....

However I need to change this system so that rather than each order being sent automatically, the details are stored in an array so that a cart system can be produced somehow! It doesn't need to be overly secure, the system simply needs to email colour details etc to the admin.

View 4 Replies

Flash :: Create A Simple Navigation With A Set Of Buttons In It?

Nov 10, 2009

I go to create a simple navigation with a set of buttons in Flash. For some reason when I go to type the name of the buttons my font is messed up and not smooth.... I am not sure if this is a setting or what, totally confused.[code]...

View 1 Replies

Actionscript :: Flash - Create A Wheel For Navigation

May 13, 2010

I have been asked to create a wheel for navigation similar to on the Visit Provence website. However, I don't know where to start and my Googling effort have been unsuccessful - I guess that I am searching using the wrong terms. It the the way that the wheel moves and interacts with the other segments around it that interests me.

View 1 Replies

Web Development :: Web Development - Post Flash Exe To Web?

Aug 26, 2010

I've been given a Flash tutorial to post to the corporate website that is an .exe file with an embedded Flash player. Users will be on IE, so I guess they would get the run/save prompt. I don't like this and I know it generally isn't done, but I need to know if it is OK to just do it. When I try to explain the security issues with executable files, eyes glaze. Is it possible that the users' system admins would be able to block the run prompt and make the user save the file? Could they block that too? The user community is hopeless, so having the embedded Flash player could be a good thing.

View 1 Replies

ActionScript 3.0 :: Keyboard-based Interface Navigation?

Sep 27, 2011

I want to create an interface navigatable through keyboard. The interface is somewhat like nested DVD menus, and it is not known in advance how many buttons there will be or where they will be placed. So for example you would be on button 1, if you press right, the closest button to the right would be selected. how would I go about enabling this? The purpose is to enable keyboard navigation for complex management screens for a game I am doing;

I would like this to be as independant and reusable as possible, which means I would like it to work with any clickable object, not just buttons, and certainly not my own custom class of buttons. This also means the buttons might be placed through the flash IDE and so placing them on a grid is not an option (I'd like this to be easy to use for non-techies).

My thinking goes like this: add all buttons to a manager, then select the first one, then on keypress, triangulate and select the closest in an angle of (+45degrees,-45degrees) of direction pressed. But it seems overkill to me, and I guess in some edge cases, some buttons will be forever unselectable.

View 2 Replies

ActionScript 3.0 :: Grid-based Keyboard Navigation

Jul 7, 2009

A 3*3 grid, consisting of 9 squares (0-0, 0-1, 0-2, 1-0, 1-1, 1-2, 2-0, 2-1, 2-2). I want to be able to navigate the grid using a keyboard by going up, down, left and right. If I hit the edge of the grid, I would like to "wrap" to the other side. This kind of menu is seen on games, mobile devices etc.

Does anyone have a good implementation of navigation algorithm (does not to be in AS3), rather something I can refer to?

View 3 Replies

Flash :: Make Interactive Scenes - Create Navigation?

Oct 12, 2010

I am attempting to make an interactive scenes in flash. I am going for something like this on the Breast Cancer Fund homepage. [URL] What is the easiest way to achieve this?

View 2 Replies

Professional :: Create Belt Navigation Type In Flash?

Aug 15, 2011

I am create a website our companies have a lots of client. i want to put companies logo in bottom of page & sliding motion(mouseover sliding is stop & click to go to hyperlink to appropirate logo site).

View 2 Replies

ActionScript 3.0 :: Create A Navigation Option For A Location Map In Flash?

Apr 10, 2010

how to create a navigation option (like the one seen at the bottom right corner in Google maps) for a location map in flash (as3.0)

View 6 Replies

Web Development :: Web Development - Web Design - Prevent Leeching. Flash Anti Leeching Methods?

Jul 4, 2010

I am designing a website with flash video content. If I pass in the URL to a .flv file as a flash parameter to the embedded video player someone can easily extract the URL and download the flv video file. How to do I prevent this? Can someone refer me to anti-leeching techniques being used my websites like youtube.

View 1 Replies

Web Development :: How To Create A Dynamic Form

Sep 9, 2010

I want to create a form consisting of checkboxes that is based on data stored in a database and accessed via a RESTful web service in JSON format. Furthermore, some of these checkboxes will need to be pre-checked, based on other data stored and accessed in the manner described above. From what I understand I can use a repeater to create the checkboxes, but I'm unsure about the following and

View 1 Replies

Web Development :: Create Checkboxes From ArrayCollection?

Sep 13, 2010

I have an ArrayCollection [{category: "fiction", title: "The Time Machine", author: "H.G. Wells"},...] of objects from which I want to create checkboxes that:Are divided into sections with section headersAre displayed horizontally, i.e. the checkboxes appear left to right and continue onto the following lineAnyone know how to achieve the following displayFICTION[] The Sleeper Awakes -- H.G. Wells [] The Time Machine -- H.G. Wells [] The Invisible Man -- H.G. Wells [] War of the Worlds -- H.G. WellsI tried using an itemRenderer, but it didn't quite achieve what I want:

<s:Panel id="catalogPanel" width="487" minHeight="300" title="Books">
<s:layout>
<s:HorizontalLayout/>

[code].....

View 1 Replies

ActionScript 3.0 :: Creating A Color Changing, Number-based Navigation Menu?

Apr 22, 2009

In a nutshell, the swf contains four ads (which link to portions of the site) and each ad uses the Timer element, displaying it for 5 seconds before moving on to the next one. Everything has come together nicely (although I'd like to clean up the code and use classes at a later date - I'm currently taking AS training from Lynda.com).
 
What's giving me trouble right now is the navigation bar. What I want to do is create four numerical buttons that a) change color during a mouse roll over b) change color for a corresponding ad (for example, when the third ad displays, the number "3" changes from white to gray to show that it is active and goes back to white when the fourth ad comes up).
 
Right now, I'm at a loss as to what to do. I've tried making the numbers buttons, but I can't control color changes unless I create two sets of buttons: one with white numbers, one with gray numbers.This also makes for some really bizarre Actionscript coding ideas (ex: after I code the function for the gray nav buttons, I have to code functions that make the white buttons work - but this ends up screwing with the ad cycles). I tried making them as movie clips, but I lose the ability to assign a large hit area like I can with buttons.

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved