mxmlc is Adobe's application compiler that compiles SWF files from ActionScript and MXML source files.
Questions tagged [mxmlc]
206 questions
0
votes
2 answers
Error in playing a swf file on internet explorer
In the below code i get an error saying Error #2007: Parameter url must be non-null on Internet Explorer only.What am i doing wrong here
html
0
votes
1 answer
Path referral from html to actionscript
In the below code how will in action script how will i say that the my mp3 is present is in the path specified in the html tag
0
votes
1 answer
Player using FLEX/AS
Can some only indicate a small piece of FLEX/AS code which plays mp3 and with play button only,the objective is to play a sample sound for around 5 to 10 seconds.And the compiled swf should have the mp3 embeded in it

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
Loading progressbar in flex
What is wrong with the following code,I get the progress bar as loading only.

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
3 answers
Change progress bar color in flex
How to chnage progress bar color to green in the following code

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
Flex actionscript code for activitylevel
Can any one indicata me a small piece of code for making this progress bar move on mic activitylevel. i.e, When spoken on the microphone the progressbar should indicate it.Also which works on internet explorer

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
Access camera in a div
In the following why is that the camera does not show up in the div.Is that am i doing anything wrong here

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
addchild not displaying content
In the following code i dont have any error but why is that the addchild(video); i.e, the the video captured by webcam is not displayed

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
2 answers
Handling error conditions on Flex
I have the following AS code.I have noticed that if an Application i s using the webcamera then it cannot be used by any secondary applications until unless the primary application is closed.
My question is that from the following code 1.can we…

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
Declaring buttons in Action script code
How to declare the buttons in the following AS code What is the library that needs to be included
package
{
public class caml extends Sprite
{
public function buttons()
{
saveButton.visible = false;
…

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
save button error in AS project
Whats wrong with the following code,There is an error at
saveButton.visible = false;
discardButton.visible = false;
package
{
import flash.display.Sprite;
import flash.media.Camera;
import flash.media.Video;
import…

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
groovy build script to build a flex project
I am trying to build a flex (and java) project using a groovy build script. See documentation here - http://groovy.codehaus.org/Using+Ant+from+Groovy
I have the build working for the java project, but for some reason it does not work for the flex…

nuaavee
- 1,336
- 2
- 16
- 31
0
votes
1 answer
Cannot import mx packages
In the Below action script file there is an error saying cannot import mx.controls.Label,
I am compiling this through command line on,linux and the environment variable path is set where flex is installed ,how to resolve this
package {
import…

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
1 answer
Actionscript error cannot import library
In the Below action script file i get an error saying cannot import mx.controls.Label,how is this to be resolved
package {
import flash.display.Sprite;
import mx.controls.Label;
public class cld extends Sprite
{
public…

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
4 answers
Inject data in an swf at compile time
Is it possible to inject data, for example a collection of assets (video, images...), in an swf at compile time?
We have a flex application that needs to be able to export an swf at runtime that contains all the necessary data, because it needs to…

Bert Vandamme
- 337
- 1
- 4
- 14