Flash 4 :: Unable To Find The Properties Menu ?

Apr 10, 2009

I can't find the properties menu in flash 4, my text book references flash 3.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Flash Unable To Find New Class File

Jun 28, 2010

C:alexflashportfolioimagesDualGallery.as, Line 15001: The name of package 'portfolio.images' does not reflect the location of this file. Please change the package definition's name inside this file, or move the file. C:alexflashportfolioimagesDualGallery.as

My class file is located here: C:alexflashportfolioimagesDualGallery.as
My class file is defined as:
package portfolio.images
{.....

My FLA is importing it as :
import portfolio.images.DualGallery;

Normally I use portfolio.classes and I have no trouble. My AS3 prefs are set to the alexflash folder.

View 1 Replies

ActionScript 3.0 :: Flash Unable To Find Document Class

Jul 13, 2010

I have a App.fla file on a path and a App.as file on the same path. On the Class field I put "App" and on the ActionScript Settings Source path there is "." which means the same path of the .fla file, right? I open the App.fla file and click on the little "pencil" icon in order to edit App.as but then Flash whether tells me there's no class file associated or it opens a new ActionScript file.

So I can't do nothing , I even copied all code into the App.as , and pasted into the new ActionScript file it generates when I click the little pencil button. It still cannot find the god damned class. A little detail, I'm using Mac OS X 10.6.2. I've been working full time with flash on a Windows and that never happened to me before. That hasn't happend to me on Mac either (though I have hardly used it to do FLASH/AS).

View 3 Replies

ActionScript 3.0 :: Flash Unable To Access Properties Of A Movieclip From Document Class?

Aug 24, 2011

I am developing a Jigsaw puzzle in Flash. I am developing a class for puzzle piece. The code of the PuzzlePiece class in given as follows.

package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;[code]....

I will be choosing which mask to use based on users selection of puzzle piece.When I try to use traingular mask by adding puzzle.gotoAndStop(2) the swf just flickers. Thought the holder_mc and mask_mc are exactly of same dimension one comes below lower than other though I have not altered the position of the clips within a puzzle piece.If you want to take a look at my fla here it is https:[url]....How to go to a specific frame 2. Why is position of two clips inside the piece changing

View 1 Replies

ActionScript 2.0 :: FLV Playback - Xml - Error "unable To Make Connection With Server Or Unable To Find Flv On Server"

Jul 16, 2011

I have a site that plays either .mp3 or .flv files depending on what is selected from the menu. Menu loads in from xml. I get "unable to make connection with server or unable to find flv on server" when I try to play the video. But the video and audio files are all in the same directory and the mp3 files play fine. I think I'm having a problem with the setMedia command. Here's the code that loads the video and audio files.

[Code]...

View 9 Replies

IDE :: Love To Find A Drop Down Flash Menu

Mar 11, 2009

i would like to make a website with this kind of menu.url...

1. where can i get a source for drop down menus? the only place i know is flash den, but they charge money, and i couldn't find similar one like this..

2. is it possible to just drop the flash file into my html website?I just want the drop down menu on top of the white box. eventually my website will have more links and i love the simplicity of the drop down. i know how to make a drop down menu with css, but i just like that simple motion. it's pretty to me.

3. what would be the best place to start learning flash? i'll be taking flash class in a local community college, but class won't start till May. i would like to learn step by step. I bought a book, but it's harder than i thought..

View 1 Replies

ActionScript 1/2 :: Flash Menu: Unable To Get Links To Work

Aug 9, 2011

I purchased a website template that has some flash in it however the auther of the template lacked to include instructions and seemed to have left it unfinished (The links don't work, of course).
 
I can't seem to locate the actionscript he talks about: [URL]
 
[code]....

Notice that nothing there with clickable links :

I cannot find the actionscript that deals with onRollOver actions I would be absolutly ecstatic.
 
Download source files: [URL]

View 8 Replies

IDE :: Can't Find Properties Panel

Apr 6, 2009

I can't find the Properties Panel. I have a label on the stage and I want to change it's text property. Can you not do this like in CS3?

View 2 Replies

ActionScript 3.0 :: Unable To Use Some Properties In Netstream Class?

Sep 13, 2011

I am trying to use "maxPauseBufferTime" property in NetStream class.I am using Adobe Flash Pro CS3. I have defined an object by the name nsStream of NetStream class. When I write nsStream and put a dot next to nsStream it shows me a drop down list of the properties of NetStream. However it doesn't show me maxPauseBufferTime property. I also tried the same with Adobe Flash Pro CS5. Even there the drop down list for nsStream doesnt show me the maxPauseBufferTime property.The adobe help page (first link that shows up when I google for as3 NetStream. Forum rules doesn't allow me to post the link here) indicates that this property is part of NetStream class.

View 3 Replies

ActionScript 2.0 :: Unable To Personalize Dynamic Text Properties?

Feb 5, 2009

So i have a really nice flash gallery that i downloaded from a site but i am trying to personlize it. It uses a dynamic text (for the preloaders and the titles) which is post by this procedure :

fullPreloader.onLoadStart = function(target) {
target.createTextField("my_txt",fullImage_mc.getNe xtHighestDepth(),50,50,200,20);
target.my_txt.selectable = false;
};

So what i did was basically to create a new style (my_fmt) and apply it to dynamic style applied by default (my_txt) :

fullPreloader.onLoadStart = function(target) {
target.createTextField("my_txt",fullImage_mc.getNe xtHighestDepth(),0,0,200,20);
target.my_txt.selectable = false;

[Code]....

Anway nothing changes. The text is always the same (Times New Roman which is by default) I also tried to change de height and width definitions but no difference. It only works when i change the x and y position of the text.

View 2 Replies

ActionScript 3.0 :: Unable To Find An Align Command?

Mar 29, 2011

I been given some banners to adapt, unfortunately on not very familiar with AS3 and im trying to align a word to the left but for the life of me i cant figure out what to change. Can anyone please shed some light? I can get letter spacing to work but I can't find an align command.

ActionScript Code:
import flash.events.EventDispatcher;
  import flash.text.StyleSheet;
  import flash.text.TextFormatAlign;[code].............

View 1 Replies

Flex :: Find The Number Of Properties In Any Element Of An ArrayCollection?

Nov 20, 2010

how do i find out the number of properties in any element of the ArrayCollection? The structure of the ArrayCollection wud be something like:

var arrColl:ArrayCollection = new ArrayCollection([{column1Data:"someData",column2Data:"someData"},{column1Data:"someData",column2Data:"someData",column3Data:"someData"},

[code]........

View 1 Replies

ActionScript 3.0 :: Unable To Access The Public Properties Of Custom Class

Nov 28, 2008

i wonder why i am unable to access the public properties of this custom class the public var w:Number; and the Public var h:Number; i am tracing them and on an instance of the PreLoader() Class.. and ia m getting NAN;

View 12 Replies

Professional :: Unable To Change/find Instance Of Movieclip?

Sep 10, 2011

I adopted and existing site, and am making some changes.
 
Publish settings:
Flash 8
Actionscript 2
 
A seperate movieclip named page4 shows in the library to have 6 uses.  On the clip are two text boxes both static and one has a movieclip button overlayed.  Selecting any of the three changes the propery panel for allowing editing.  However.  Even though I can see the reference point (the cross) of the movieclip page4, I can find no way to get flash (CS5) to show me the properties to allow giving it an instance.

View 7 Replies

Flex :: Asdocs Seems Unable To Find Embedded Assets?

Jul 25, 2010

I'm running asdocs from a .bat file with flex sdk 3.2.0 (I have replaced my long project root folder with PROJECTROOT):"C:Program Files (x86)AdobeFlex Builder 3sdks3.2.0inasdoc" -source-path . "C:Program Files (x86)AdobeFlex Builder 3sdks3.2.0" "_PROJECTROOT_Componentssrc" "C:\_PROJECTROOT_assets" -doc-sources .PAUSE"Unforunately, I keep getting errors similar to this:"_PROJECTROOT_assetsstyles.css(344): Error: Invalid Embed directive in stylesheet - can't resolve source 'Embed(source = "close_button.png")'.downSkin: Embed(source="close_button.png");"I really don't understand this as "close_button.png" is in the same folder as styles.css. When I build the project from within flexbuilder, it compiles it fine and does not throw any errors.

View 2 Replies

Wcf :: Flex - Unable To Find Definition For Type From WCF Service

Nov 9, 2011

I have a WCF Service running SOAP and allowing Flex / Flash to connect to it using basicHttpBinding by using the 'Data' 'Import Web Service' option. Unfortunately when I consume and invoke this service within Flex it throws the following error...

Error: Cannot find definition for type
'http://schemas.datacontract.org/2004/07/System.Drawing::Size' at
mx.rpc.xml::XMLDecoder/decodeType()

...when using the following code...

// This will return an array of presentations
var service:PresentationAuthoring = new PresentationAuthoring();
var token:AsyncToken = service.getAllPresentationByClientId(

[code]. ..

This method returns an array of Presentation objects that are retreived by the service. At the moment there are no DataContracts and I'm allowing the POCO Presentation object to be serialised and punted out by the service that works fine. However, this class has a readonly property of the type System.Drawing.Size that derived from appropriate height and width properties. Looking through the generated code, it doesn't register a 'Size' class in the base import schema although it still seems to create a Size class.

An alternative has been to stop the derived property from being serialised using the [XmlIgnore] but that has not worked. I need a way of allowing my Flex application to communicate with my WCF service but it seems to choke on the System.Drawing.Size type and while I could change this, there are other framework types such as Point, Rectangle, etc, etc. that are utilised within the project.

View 1 Replies

IDE :: Unable To Find Methods To Just Diplay A Random Image?

Feb 17, 2009

This should be rather simple, but for some reason i'm only able to find methods to just diplay a random image, but i want the image to change once a day not every time you load the page.

All i have atm are a empty movieclip to load the photos, an upload system in flash that uploads photos to a specified directory, but now i have to figure out the AS to make the movieclip load a random photo from a specified directory once a day.

View 2 Replies

ActionScript 2.0 :: Unable To Find HMAC Encryption Method?

Jul 20, 2009

i'm need HMAC-SHA1 for doing some encryption, but so far i'm able to found SHA1 in meychi crypto library, but until now i'm still not able to found HMAC encryption method so far.i'm trying to refer to hurlant crypto library, but it's quite confuse as it's using ByteArray which only available on AS3.

View 1 Replies

ActionScript 3.0 :: VideoError: 1000: Unable To Make Connection To Server Or To Find FLV?

May 26, 2009

I keep getting this error in my output panel when I switch from one flv to another. I am loading up multiple flvs from an xml file.

VideoError: 1000: Unable to make connection to server or to find FLV on server
at fl.video::VideoPlayer/pause()
at fl.video::FLVPlayback/pause()

[Code].....

My flv componenets name is obviously myFLVPlybk and the list is myList ...

View 6 Replies

ActionScript 2.0 :: Unable To Find Good Tutorials Or Hints On Terrain Scrollers That Isn't Random

Aug 15, 2005

I was unable to find any good tutorials or hints on terrain scrollers that isn't random.. like a huge world, and a map that points where on the map you are.

View 4 Replies

Actionscript 3 :: Change A Flash Context Menu That Is Already Personalized -- Can't Find It To Change?

Dec 16, 2009

Is there any way to change a context menu that already has been personalized. I have an small application that I purchased to learn with and also to save some time. When I right click the context menu appears with the other person's information in it. I want to change that information if it is possible to do so. I tried

var my_menu:ContextMenu = new ContextMenu();
my_menu.hideBuiltInItems();
contextMenu = my_menu;

and added my info but the menu will not change from the person I got the app from. Is this considered unethical or illegal? I put so much work into this, I don't want the person to get credit for it.

View 1 Replies

ActionScript 3.0 :: Find A Xml Menu?

Apr 18, 2011

I want to find a xml menu with as3. but there are xml menu with as2 who tell me where xml menu with as3 are?

View 1 Replies

ActionScript 2.0 :: Unable To Make A Menu Bar?

Jan 7, 2005

Im new to AS but Im working everyday to improve, Im trying to make a menu but Im having difficulties with moving the menu:

I have a bar in 500 length and mask of 100 And I have 5 buttons. When I click 1 ofthem I want it to bring the correct positon of the bar with easing. Btw the registration point of thebar is upper left corner

View 4 Replies

Can't Find Menu Text And Links?

Nov 12, 2010

Here's the link to my flash menu:[URL]how I can adjust the links inside the menu and the menu item text?

View 1 Replies

ActionScript 3.0 :: Find A Menu Tutorial?

Apr 12, 2011

I'm looking for a menu tutorial for ActionScript 3.

Basically,

When you click a button two boxes appear, one with all the navigation buttons and one with the contents of each page.

It's intended for a game, btw. In case anybody thinks it's for a website or something.

View 0 Replies

Professional :: Alpha Value Option Is Not Show Up On The Properties Menu?

Sep 19, 2010

where the Alpha Value is located?  It is not show up on the properties menu. I'm trying to animate and object to fade in and out similar to this walk through.  CS flash 5 seems be different.

View 4 Replies

Unable To See The "alpha" Properties When I Select The Symbol Or The Tween In The Timeline?

Mar 19, 2010

I was using CS3 and Flash 8 (macromedia).I am working on a file that was created in maybe flash cs3 or perhaps flash 8, from another developer.It shows tweens on the time line.The developer created fade tweens, with names like "Transform 1" etc.The fades are on symbols (the developer converted  jpegs to a symbols)from 100 percent to 0 percent alpha.I can see the fade go from 100 to 0, but I am unable to see the "alpha" properties when I select the symbol or the tween in the timeline.The tween is displayed in the timeline as a line with an arrowhead at the keyframe when the visibility goes to zero.I do not seem to be able to see the properties for the tween, i.e. 100 in keyframe 1, to 0 in keyframe 20.No information shows in the CS4 "Motion Editor".

I created a tween in a layer that I added, and it seems that CS4 no longer show the lines with arrowheads, but uses a different color for the tween range.And I get the motion properties in the "Motion Editor".I am sure it is pilot error here.Since I just installed CS4, etc.How can I view tween properties, like alpha on a symbol created in an earlier version of Flash?

View 2 Replies

ActionScript 2.0 :: Click NextBtn And Change Properties Of Menu Buttons

Sep 28, 2004

I just want to click on nextBtn and change the properties of the menu buttons. But, it doesn's change. How I can do it?

View 2 Replies

ActionScript 2.0 :: Click On NextBtn And Change The Properties Of The Menu Buttons?

Sep 28, 2004

I just want to click on nextBtn and change the properties of the menu buttons. But, it doesn's change.

View 2 Replies

ActionScript 3.0 :: Find Out Where On TextField Context Menu Appears?

Feb 4, 2010

I want users to be able to right click on a certain line in the text field, and I don't want to go through the hassle and extra memory and coding involved in breaking up the field.If the user has not selected the textField yet, right clicking will set the "caretIndex" to the correct value, however, if the field is in focus when they right click, the carrotIndex will not display the correct value, but will display the selection value.How can I detect which line/character was right clicked? Is it even possible to get the coordinates of the right click without needing to resort to detecting MOUSE_MOVE and updating some sort of global value each time?

View 2 Replies







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