Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Double Print Box Opens Up


hello!
I am using a pretty hit and miss set up with my printing.
I get a double print box called up, and when I hit the print onthe first i get a good sized pic but when I dont use the topmost box but cancel it and click on the lower most one to print it prints out a smaller image.
This is the set up.
I have a container_mc which holds an image. cept i never get it printed out. The movie clip is linked and called containcer_mc too.
next:
I have a button with the following attached:
on (release) {
getURL ("print:");
print ("_root.container_mc", "bframe");
}
which sits in a movie clip,that is called up at the end of a game.

I have a frame called #P in the root about 4 frames in, which I have had to place the image in instead of the container_mc because it manages to find THIS image here but nowhere else. even if I place the frame #P lable on the container_mc where I presume the image should be got from and no where else.

I know I have got it really messed up but if noone can follow this, at least let me know how a print button works for real and do it step by step in idiot mode pls.
DOH!
Thank you;
Shaf




FlashKit > Flash Help > Flash General Help
Posted on: 01-05-2004, 03:26 PM


View Complete Forum Thread with Replies

Sponsored Links:

Double Print Input Text On MAC?
Hi
I have created a kind of word processinf interface that the user can use to change fonts etc.

I am having problems printing input text fields without the font embedded. The font in use is always native to the machine (using FonList) in use and is displayed ok - my problem is that it is printed on a MAC it prints the text twice (one slightly offset from the other) One appears to be a bitmap too which is wierd!! As soon as I embed the font it stops, however I can't do this as I want the user to change the font (embedding it disbales this functionality)
All is fine on PC.
Anyone got any ideas how to solve this?
Cheers
Ol

View Replies !    View Related
Loading Swf + Double Clicking = Double Load -> Crash
Hello, help plz:

Have a button assigned to loading an swf, if the button is pressed twice the swf reloads and crashes, probably reloads data together and dosnt recognize, web crashes and needs to be reload reloaded... any suggestions?

thanks

View Replies !    View Related
Print Action Doesn't Print Content In The Centre Of Paper.
I am wondering if there is any option to control how the content of the frame can be printed from Flash projector of a loaded movie clip.
The "Print" button resides in the loaded movie clip. Here is the code:

on (release) {
print("_parent.quiz", "bmovie");
gotoAndPlay("#p");
}

Shouldn't be any problem. When I print this frame from the loaded movie itself it is printed well. It printed all content exactly in a centre of the page. However, when I try to print this frame of the loaded movie from the main movie it moves all content to the right bottom side of the paper.
Any advice is highly appreciated.
Thanks!

View Replies !    View Related
PrintJob:: Is It Possible To Select Page No.to Print Directly From Print Dialog Box ?
I'm using PrintJob object to print multiple pages .
When the print dialog ( on pc) opens, under Page Range, the Current Page and Pages radio buttons are greyed out.
Is there a way to enable them so that users can specify what page to print directly from this print dialog box?

Any suggestion is appreciated,
Thanks!

View Replies !    View Related
I Want To Print A Picture Using Print() ; , Trouble With The Backgrund Color
using the print(); action script , the picture prints OK but the background color ends up wasting ink for the user's printer.

print("_root.instance" , "bframe") ;

1. I need that print out to be, over a white background.
Without actually changing the background color to white.


Thanks in advance

samy

View Replies !    View Related
Print Directly To Printer (bypass Print Dialog Box)
Does anyone know of a way to bypass the print dialog box when issuing the print command in flash? I am trying to write a flash application and it is nessesary to avoid printing multiple copies (dialog boxs gives the option of how many copies). Thanks!

I am working with flash 6.0 fyi.

View Replies !    View Related
How To Print From Flash Wihtout Print Dialog Box From Poppin
Is there a way in flash 8 to print from a flash button in where the print dialog box does not pop up? Im developing a kiosk app and I need th user to print the screen without having to select the printer. I also dont want the app sitting in a browser in order for it to auto print.

Any help would be great
thanks

View Replies !    View Related
Double My Array? Double The Fun
HEY!
Have a nice random array here courtesy of Pixelwit from this site but i need the numbers to duplicate in the array..as an example, instead of the array saying...
[7, 4, 23, 14, etc]
it would double them...
[7, 7, 4, 4, 23, 23, 14, 14, etc]
Below is the code...i'm too much of a newbie so far to make it work, any help would be great!
(alternativly, i just need code that makes a random 10 number array, no two numbers the same, but then duplicates each one twice in the array then assigns that array to a variable)
thanks

ActionScript Code:
// How to shuffle any Array
// (Robert Penner June 2001)
Array.prototype.shuffle = function () {
        var len = this.length;
        for (var i = 0; i<len; i++) {
                var rand = Math.floor(Math.random()*len);
                var temp = this[i];
                this[i] = this[rand];
                this[rand] = temp;
        }
}
//
// Make initial array and shuffle it
totalImgs = 25;
allImgsArry = [];
for(i=0; i<totalImgs; i++){
        allImgsArry[i] = i+1;
}
allImgsArry.shuffle();
trace("allImgsArry = "+allImgsArry);
//
// How to chop big array into little ones
function chopAllImgsArry(divisor){
        var i = 1;
        while(i*divisor<allImgsArry.length){
                this["imgsArry"+i] = allImgsArry.slice((i-1)*divisor, i*divisor);
                i++;
        }
        this["imgsArry"+i] = allImgsArry.slice((i-1)*divisor);
}
//
// Chop big array and show results
divisor = 10;
chopAllImgsArry(divisor)
for(i=1; i<Math.ceil(allImgsArry.length/divisor+1); i++){
        trace("imgsArry"+i+" = "+this["imgsArry"+i])
}

View Replies !    View Related
Print Actionscript Vs Context Menu Print
I can't for the life of me figure out this oxymoron:

If I include a Print button in my flash movie, I can't seem to find a way in actionscript to print the current frame.

But, in the Flashplayer, if you right click and select Print, you can pick Selection, and it does prints the current frame.

(I need this selectivity, because I have a line of sofas being displayed between keyframes, and I don't want to print out all the sofas in the movies, just the one the user paused the player on)

If anyone has ideas about how to print the CURRENT frame, I'd love to hear it...

View Replies !    View Related
Using Print Function, Selecting Which Frame To Print?
I have an elearning tutorial movie built using flash, and each frame is navigated to with forward and back buttons. I want the ability to print certain frames, without having to convert what i want to print to separate movie clips or separpate levels and then targeting them. Is there anyway?

Thanks

View Replies !    View Related
Print Doesn't Print Variables, But Displays It ?
Q1. Dynamic values are passed to a print frame (say frame 10 of the main timeline). A movieclip in the

frame 10 contains 2 frames.
Q2. The dynamic values are passed correctly into frame 1 of the movieclip, but not frame 2 of the same

movieclip in the print movieclip timeline.
Also, when I move from frame 1 to 2 and back to frame 1,

the values in frame 1 are also not displayed in the dynamic text.
Q3. When the Print command is clicked, it doesn't print all the dynamic values. Say while giving print

command from frame 1, the values in the frame 2 are not printed. When I move to page 1 and page 2

backand forth, and then give the print command both of the values are not printed (but they are

displayed). Where is the problem?

<as>
Code:
first frame:

stop();
letter = "B";

for(i = 1; i<5; i++){
this["item"+i+"_txt"].text = "value"+i;
trace(i);
}

//code for the print button to transfer the values to the print page.
choose_btn.onPress = function(){
PBitem3 = item3_txt.text;
PBitem4 = item4_txt.text;
for(j = 1;j<3; j++){
_level0["P"+letter+"item"+j]= _level0["item"+j+"_txt"].text;
}
gotoAndStop("print");
}


print frame:
for(k=1;k<8;k++){
_level0["printable_mc"]["PBitem"+k+"mc_txt"].text = _level0["PBitem"+k]
}

print_btn.onPress = function(){
print(_root.printable_mc, "bframe");

}

</as>

View Replies !    View Related
Can You Use Print() To Print External Swf's That Are Not In The Library?
Can this be done.

If i have a swf loaded (but not in the library) can i use print() from another .swf and print my target file?

thanks

View Replies !    View Related
Print Button Shows Up On Print Out
how do you set a print button so that it does no show up in the print out?

View Replies !    View Related
Window.print() Or Document.print()
Hello,

I'm trying to print some text that is in a Flash page with a button in the swf. I have never done this before and was wondering if anyone could show me the proper way to do this.

Thanks!

View Replies !    View Related
Print Directly Without Print Pannel
I have a trouble, and i dunno how resolve them.

I wanna print, but when i do click i need the command PRINT directly (like word when you click in the icon print), but in this case, appears the window print pannel, i dunno how print directly (i dont wanna see the window print pannel).

this is my as, it is correct, but anybody how to give the action to print directly (whitout print window pannel).

is really hard, my brain is don now... im freeze

// The code
on (release) {
var imp = new PrintJob();
var resultado = imp.start();
//var resultado = true;
if (resultado) {
imp.addPage(_root, {}, {printAsBitmap:true});
imp.send();
} else {
trace("Fallo");
}
//delete imp;
}

View Replies !    View Related
Print 2 Levels In One Print-command
Hi,

What I have done is a print-window that lets the user choose which pages to print. This works fine when the user selects only one checkbox but when more then one page is to be printed the problems starts.

Each page is loaded onto a different level. I don't want to have to reload the movie-clips since I have variables in them that need to remain intact. I then make the movie-clips invisible so that only on appear at a time on the main time-line (frames 5-9).

The code so far for the print-dialog looks like this...

on (press) {
if (_root.utskrift.alla_checkbox.getValue() == true) {
print(???);
unloadMovieNum(8);
}
if (_root.utskrift.prog_checkbox.getValue() == true) {
print(_level1, "bmovie");
unloadMovieNum(8);
}
if (_root.utskrift.dd_checkbox.getValue() == true) {
print(_level2, "bmovie");
unloadMovieNum(8);
}
if (_root.utskrift.dh_checkbox.getValue() == true) {
print(_level3, "bmovie");
unloadMovieNum(8);
}
if (_root.utskrift.funk_checkbox.getValue() == true) {
print(_level4, "bmovie");
unloadMovieNum(8);
}
if (_root.utskrift.samm_checkbox.getValue() == true) {
print(_level5, "bmovie");
unloadMovieNum(8);
}
}

... where movie8 is the print-window. The first if-statement is for printing all pages and if you can help me witj tjis I will be satisfied.

Any ideas that you have will be grately appreciated. This is the last thing I have to do before the project is finished so please help me before I go mad.

If you could axamplafy with some code that would be grate since I'm not a used programmer.

View Replies !    View Related
Print Wants To Print A Page For Each Layer?
hi,

i'm trying to figure out why my print button acts like it does, i've read a lot of posts and Macromedia docs on printing.
i have a main file with a blank MC that has external swfs loaded into it. the ext swfs have dynamic data which i need to be able to print.
a print button (which is in the main timeline) will pop up the print options and ask if you want to print pages 1-30, or 1-7, depending on the swf that is loaded (it would ideally only give the option to print 1 page... a page with the data).
the print button uses
printNum ("_root.main", "bmovie");
(i've also tried the "printasbitmap", and just "print")
the empty MC ("main") has a bounding box with a frame labelled #b.
the external swfs have #p on the frames i would like to print, and i even tried !#p on other frames to try to prevent it from asking if i want to print multiple pages.

any suggestions or pointing to articles/tuts that focus on involved printing practices would be greatly appreciated.
thanks!

View Replies !    View Related
WOH.. A Box Opens Up Itself? How?
Hey, I'm wondering if its possible to have a box open up once clicked.

I want to do a enter page with a gift box sitting there, and then once clicked open itself up and page content comes out..

Can anyone point me in the right direction? I can show an example of the box I want to use.

thanks!

View Replies !    View Related
Get URL Opens 2 Windows...help
Hi everyone I'm brand new at FLASH MX. I want a simple button to open a mailto window, i used=
on (release) {
getURL("mailto:tungston_webdesign@hotmail.com", "_blank");
}

It does open the mailto window BUT it also opens a browser window behind or infront of it! Has this happened to anyone before?
thank you for reading.

View Replies !    View Related
Click Here - Opens A PDF
Hi everyone,

Im wanting to make a click here button (which I can do) but instead of "go to web page and open" or "load external webpage or SWF" Im wanting to make a button where you click and it opens a PDF in Acrobat reader automatically.
Is this possible?

Is someone able to help??

View Replies !    View Related
Only One Swf File Opens, Then Nothing...
all of my files are here under exiled folder:
http://briefcase.yahoo.com/downloadgeek

what happens is that the index file opens (thats good) then you click on the lyrics button and the lyrics page opens (thats good) then you click on one of the titles and those lyrics open up (thats good)...but after that no matter what else you click on in the titles area nothing else opens up!!!

can someone please assist me?
thank you!

View Replies !    View Related
File Opens On Some Pc's And Not On Others
Hello. I have a button that is programmed to open a PDF file in a new window. On some pc's this works and on others it doesn't. It comes up saying:

Action canceled
Internet Explorer was unable to link to the Web page you requested. The page might be temporarily unavailable.

I've read that it can be caused from having more than one browser type installed on your pc and to make sure that you have IE set as the default. I have set it as the default and it still doesn't work however it works every time on other pc's.

Any ideas why?

Cheers
Lugosi

View Replies !    View Related
FP 8 Install But Opens With FP 6
Our company just updated our Flash Player to version 8. Although all computers have version 8 installed, some are opening files in version 6. Does anyone have any ideas as to why this might be happening; perhaps a corrupt install? Thanks for the help.

View Replies !    View Related
Opens In Different Folder
THIS FLASH IS DRIVING ME CRAZY!
I am using Flash CS3. I am on a network, however I am working on my local hard drive. When I open a Flash CS3 project in one folder it defaults to save and publish in the previous folder I was working in. I always have to make sure it's saving and publishing in my current folder! WHY IS THIS?

Also, it is NOT letting me publish. I get an error:
Error opening URL 'file:///HK%2D179%2DChrtt/Users/chrtt/Desktop/SlideShow%5FNano/photos.xml

Can anyone help?
Thanks.'

View Replies !    View Related
Url Always Opens New Page
Hi,

I'm having a couple of problems when publishing my flash file.

1) How do I get a url link to open it in the current page instead of opening a new link?

2) When I publish my swf, flash creates an html with it. When I open the html and click on one of the links in the flash, it doesn't do anything. However, when testing my movie it works fine.

Any ideas? Thank you!

Jay

View Replies !    View Related
URL Opens In New Window, Don't Want That.
Hi all,

At http://www.bartlett-family.net/chris/flash/assignment5/ I have the screen set up so that once the correct password is entered, it will allow you to go to my site.

It all works, the trouble is that the URL to my site opens in a NEW window, which I don't want. I want it to open in the same window. How do I do this?

To get to where you can see it, you'll need the password. It's "WorldBuilder" without the quotes and it IS case sensitive.

Here's the fla file.

Thanks,

Chris

View Replies !    View Related
GetUrl Opens Two Windows
the site i designed is fullscreen using a frameset to avoid scrollbars. i have buttons with geturl action. sometime 2 windows open. can this be?????


thanxxxx

View Replies !    View Related
GetUrl Opens Two Windows
I have a button which shoud open a new browser window wit getUrl("http://www.example.at", "blank"). Sometimes this action opens two windows. Can this be?????

any ideas

View Replies !    View Related
Closing One Image While Another Opens
I am trying to create a series of buttons which activate fade in images.Iwould like to have the image fade in when the button is clicked and fade out when the button is re-clicked, if another button is click while an image is still open the image will fade out before the new image opens. I have placed a test page here http://www.ibrowseplus.com/button_test.html but it does not work properly. Any help I can get would be greatly appreciated. Cheers!

View Replies !    View Related
Mailto Opens 2 Windows
HI...
my problem is that when I click on the e-mail address to 'contact' it brings up a window that says 'action cancelled no page to display..microsoft...'
This is on explorer on a pc. A friend of mine didn't get this on her mac. Is this just a weird pc/mac thing? Any suggestions?

http://www.geocities.com/ddplaisted/contact.html
thanks

View Replies !    View Related
That Window The .swf File Opens In
when you get a choice, Enter Flash Site or Enter HTML Site, some, when you click the flash site, have the flash come up in a little pop-up window, i would like to know how to do that i think it has something to do with the HTML but i'm not sure, if you guys know how, which i'm sure you do, please tell me, thank you.

View Replies !    View Related
Actionscript Window Opens In Same?
Flash 5 Stupid Popup Problem Heeelp !!!!

hi i have a main html that loads a first pop up (called VRAIINTRO.html) then in that pop i have a page with another pop up that should open over with a email script (called ukdetc.html)
the problem is when i click that email link to pop it doesn't pop but opens in the same window (with no browser menu!!!)
how come it won't pop another new window over the main one??

thanx for your help, i must get this site online tonite !!!!


•••••••this is what i have put on my buttons on flash : ••••••••

on (release) {
getURL ("Javascriptopupwindow(1)");
}



heres's the texts :


•••••••••••••The VRAIINTRO.html document••••••••••••••••••

<HTML>
<HEAD>
<script language="javascript">
function popupwindow(index)
{
if(index==1)
{
site="diffcomp.html"
}
if(index==2)
{
site="ukdetc.html"
}

window.open(site,"newwindow"," toolbar=0,location=0,directories=0,status=0,menuba
r=0,scrollbars=1,resizeable=1,width=800,height=500
")
}

</script>
<TITLE>VRAIINTRO</TITLE>
</HEAD>
<BODY bgcolor="#CCCCCC" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- URL's used in the movie--> <A HREF=Javascriptopupwindow(1)></A> <A HREF=Javascriptopupwindow(2)></A>
<!-- text used in the movie--> <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
WIDTH=800 HEIGHT=500>
<PARAM NAME=movie VALUE="VRAIINTRO.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="VRAIINTRO.swf" quality=high bgcolor=#FFFFFF WIDTH=800 HEIGHT=500 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
</BODY>
</HTML>




•••••••••••THE UKDETC.HTML DOCUMENT HERE••••••••••

<HTML>
<HEAD>
<script language="javascript">
function popupwindow(index)
{
if(index==3)
{
site="emailacp.html"
}
if(index==4)
{
site="emailinfo.html"
}
window.open(site,"newwindow"," toolbar=0,location=0,directories=0,status=0,menuba
r=1,scrollbars=0,resizeable=0,width=350,height=350
")
}
</script>
<TITLE>ukdetc</TITLE>
</HEAD>
<BODY bgcolor="#FFFFFF">
<!-- URL's used in the movie-->
<A HREF=Javascriptopupwindow(3)></A> <A HREF=Javascriptopupwindow(4)></A> <!-- text used in the movie-->
<!--The Different Company was born with this century, to offer e (Moscow). To find a store near you click on the link below : --><OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
WIDTH=800 HEIGHT=500>
<PARAM NAME=movie VALUE="ukdetc.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="ukdetc.swf" quality=high bgcolor=#FFFFFF WIDTH=800 HEIGHT=500 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
</BODY>
</HTML>

View Replies !    View Related
Add Time Before Window Opens?
I'm trying to figure out how to add a small pause between the press command and actually opening up a new window. There is a small animation that plays on press and it's always getting interupted by the new window. Any suggestions? Here's my script so far:


on (press) {gotoAndPlay(62);}
on (release) { getURL("http://www.xx.com", _blank");
}

View Replies !    View Related
External Swf Always Opens Get Url In New Window
Hey, I have created an external swf for a presentaion and it will go on a cd. It has a couple of buttons that will open up different web links...
The problem I am having is that each button will open up "its own" browser window...and if you click each button several times it opens several browser windows. (only the first time you use that button though)
I would like the presentation to only open one browser window...no matter how many times you click, or how many buttons you click.
Can this be done?
Thanks for the help!

This is the code I am using for the buttons now:

on (release) {

//Goto Webpage Behavior
getURL("http://www.webaddress.com","_self");
//End Behavior

}

View Replies !    View Related
Mail To Opens Safari First?
Hi,
I created a button to send mail to an email adress and am having some trouble.

Here is the script:

on (release) {
getURL("mailto:don@doneastburn.com?subject=Video Production Question");
}

It works, and puts the subject in, but the problem is it opens an Untitled window in Safari first?! How do I get it to just open my mail program?

Thanks,
Riceman

View Replies !    View Related
Autocenter The Web When The Html Opens
I'm creating a web and need it to autocenter when opens into the explorer window. Depending the resolution of the monitor would has to be centered in a place or another, so I need it to do it automaticaly.

thanks...and sorry 'bout my english.

View Replies !    View Related
URL In Textfile Opens New Window
Hi,

Seems simple but I can't seem to figure out how to do it ;
I've got several textfiles that open in my flashmovie. In those textfiles are url codes. Now every time I click on an url my browser redirects to the url. When I return to my flashmovie (back button from the browser) it starts playing from the beginning. Very annoying.
Is there a way to make those url codes open in a new window ?

Hope someone can assist ?

Thanks,
Daniλl

View Replies !    View Related
Button That Opens A File
Is it possible to open a file (specifically a .mpg) just by clicking a button?

I plan to compile the .exe and .mpg on one cd. Then in the .exe, there's a button when clicked will open the .mpg on the default media player of the computer where the disk is inserted.

I hope you get my point..

View Replies !    View Related
Browser Opens Behind Projector--please Help
ok so all my getURLs launch the browsers fine, but if the user allready has a window open, the browser launches behind the projector causing the user to minimize and tab over to the web browser. this only seems to happen on a pc

is there any way to attach something to either the first frame of the flash to close any open browser windows? i know this is a bit of an annoyance for me, as well as many others, from a usablitiy standpoint, but this is the last tweak my client is not budging on

here is the absolute path script i am using for my getURLs:


Code:
on (press) {
poslastslash = this._url.lastIndexOf("\");
if (poslastslash == -1) {
poslastslash = this._url.lastIndexOf("/");
}
folderurl = this._url.substr(0, poslastslash+1);
poscolon = folderurl.indexOf("|");
if (poscolon<>-1) {
folderurlstart = folderurl.substr(0, poscolon);
folderurlend = folderurl.substr(poscolon+1);
folderurl = folderurlstart+":"+folderurlend;
}
targeturl = folderurl+"games/hallofthewild/hall_of_the_wild.htm";
getURL(targeturl, "_blank");
}
thanks for your time and input

View Replies !    View Related
LoadMovieNum Opens In New Popup
Hi all,
I am willing to fix a problem where loaded swf into another one, which replaces the original one, opens in a popup window and not in the original window .... how to fix that ? I would like user to get directly to site no allow popups or such a dings ...????
Thanks

View Replies !    View Related
A Button That Opens A New Window
i'm making a site with alot of photo's on in and i would like to have a page full of button thumbs that open the large photo's in a new window to utilize as much room as possiable.

View Replies !    View Related
Window Opens To SIZE
Hey guys I'm looking to make a button in flash 8 that when CLICKED will open a new window to the size I set it to. Also have no scroll bar or title bar.

Anyone have any clue how to do this? PLEASE HELP!! i need to finish this 2nite !!!

View Replies !    View Related
I Want All My Video To Stop When A New Pop Up Swf Opens ...
I have my main flash movie. And i have 3 different scenes in that movie that using the media display and media control components stream flv's.

I also have in the navigation a button that calls javascript from the html to have a new external swf pop up.

It all works great.
But when the Swf pops up i want to pause the video that's playing ... I can't figure this stupid thing out for some reason. I know it's probably simple.

I'd appreciate any suggestions!

View Replies !    View Related
Detecting When ContextMenu Opens
Is there any way to know when the Context Menu is opened? I can't find any events or properties to detect this.

In the browser, items underneath the Context Menu in a Data Grid are still being rolled over, and I need to stop it.

View Replies !    View Related
Detect If Application Opens
I need to open powerpoint, pdfs and word documents from with my flash application. My flash presentation will be running from a cd. Is there a way to detect if the application does not open and throw an alert message "could not open file"? I am assuming the worst, where the user will not have powerpoint, pdf or word installed on their machine.

View Replies !    View Related
Link Opens In New Window
using this code now in the action script and it works great - only problem
is, when I run it, the link opens in a new window instead of the current
window. Can someone tell me how to fix this?


var link:URLRequest = new URLRequest("home.html");

skip_btn.addEventListener(MouseEvent.CLICK,Skip);

function Skip(event:MouseEvent):void
{
navigateToURL(link);
}


Thank you!

View Replies !    View Related
Help My Flash Site Opens Pop Ups?
http://www.meekostudios.com

why might this be happening? a viewer wrote this...

when i pressed on your gallery 27 windows popped up, i was using Mozilla Firefox when i opened it

i got 8 windows with Mozilla and 18 windows with Windows Explorer. The first time was with my desktop and now it was with my laptop. and yes it is from the home page it asks me if i will allow pop-ups from your web site then i say yes and then it comes up with all the tabs.

thanks

View Replies !    View Related
Mailto Opens Browser On Mac
When i use
on (release) {getURL("mailto:info@mahonimusic.de");}
in an Offline-Project (DVD), only on Mac the Script calls the primary Mailer, but it opens a Window in the primary WebBrowser too. It works like it should on Windows Machines.
I read in many Forums about the Phenomenon - but no Solution.
There must be a Solution - it would very crazy, if not.
Any Ideas?
( please sorry for my cruel English - thanks)

View Replies !    View Related
NavigatetoURL Opens Dreamweaver
why doesnt this open in my web browser when testing? its opens dreamweaver and sits... is it a pref I have somewhere?









Attach Code

home_btn.addEventListener(MouseEvent.CLICK, powerClick2);
function powerClick2(event:MouseEvent):void {
navigateToURL(new URLRequest("http://www.cnn.com"));
}

View Replies !    View Related
[MX] Loadvar Opens New Window, I Don't Want This
Hi, everything is working great about this script except that it is opening a new browser window when the submit button is pressed. Is this "open window" function in the following script or in the php file that it calls? If it is in the actionscript, how do I stop a new window from opening? Thank you.


Code:
_root.submit.onRelease = function() {
formData = new LoadVars();
formData.email = _root.form.mymail_add;
formData.id = "JerseybandEmailList";
formData.type = "text";
formData.send("http://www.jerseyband.com/MyMail/add.php", formData, "POST");
_root.gotoAndStop(2);
};

View Replies !    View Related
Pop-up Window Opens In Firefox, But Not In IE?
Hi,

I am having problems with launching a pop-up window from Flash in IE (I'm working in MX 2004).

I noticed the following comment in the toturial http://www.kirupa.com/developer/mx2004/chromeless.htm:

"The only glaring problem with this cool effect is that you have to use Internet Explorer. Users with Netscape or Mozilla browsers are out of luck".

I have the exact opposite problem: In Firefox it works perfectly, in IE nothing shows - I tried everything: Internet settings, pop-up blockers, downloading up dates for IE - nothing helps.

I had a similar problem with lauching a full screen window from a Flash file (in a html file). Worked great in Firefox - a no go in IE.

If anyone have an idea what is happening, please let me know.

Thanks!!! - from Marie
(new on the forum and quite new to Flash also)

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved