Linking With Flash Junkie Active Search List
--------------------------------------------------------------------------------
Using the file attached, I am tryng to create a list of words which I then want to be able to click and go to a picture of that word. The file attached is just what I need but I am having problems with the link part. Currently on the file the person who created it has linked each word to a website but these links dont work. Could anyone tell me why?
Also, more importantly, can anyone tell me how to create a link to go to a section on the scene showing a picture of that word. What is the script I need to place into the link after each word?
Finally! Is it possible to have the words link to a html file (Dreamweaver file) so all I have to do is place each picture into a separate dreamweaver file? If yes, how?!
here is the script:
ActionScript Code:
text1 = "CNN";
link1 = "www.cnn.com";
text2 = "MTV";
link2 = "www.mtv.com";
text3 = "Toyota Online";
link3 = "www.toyota.com";
etc etc etc
Thanks for any help
ActionScript.org Forums > ActionScript Forums Group > ActionScript 1.0 (and below)
Posted on: 08-24-2005, 12:10 PM
View Complete Forum Thread with Replies
Sponsored Links:
Active Search List
Hey, I had a question about the editing of The Active Search List fla. If I want to change the links in the list from websites to .m3u files, what exactly do I have to change. I've been trying to edit everything, but nothing works!
View Replies !
View Related
Active Search List
I have a list which scrolls and i want to be able to click on a word in the list and go to a different scene and to a named frame.
The goto and play doesnt seem to work with this list... can anyone help?
There arethree scripts within the one scene: (Please excuse the scripters comments but I didnt want to delete incase I accidentally took out something important)
FIRST SCRIPT (Containing the links section of which the links included dont work - syntax error????))
// ----------------------------------------------
// Variables
// ----------------------------------------------
minimum_search = 3;
case_sensitive = 0;
trailing_gap = "100";
indent = 0;
active_search = 1;
scroll_distance = 20;
alphabetize = 0;
button_spacing = 12;
// ----------------------------------------------
// WISH-LIST: I'd love to be able to get property or set property to a mask. Wow would that save a lot of hassles I've encountered over time. Maybe in the next version.
// ----------------------------------------------
// >>>>must be manually set:
first_link_yposition = 115;
mask_height = 223.5;
// >>>>determine how many items fit on screen so we can hide the scrollbars if fewer than this number are shown.
list_height = int(mask_height/button_spacing);
// ----------------------------------------------
// Define some links
// ----------------------------------------------
text1 = "CNN";
link1 = "www.cnn.com";
text2 = "MTV";
link2 = "www.mtv.com";
text3 = "Toyota Online";
link3 = "www.toyota.com";
text4 = "AltaVista Search Engine";
link4 = "www.altavista.com";
text5 = "Yahoo! Search Engine";
link5 = "www.yahoo.com";
text6 = "Health Information";
link6 = "www.webmd.com";
text7 = "Elle Magazine";
link7 = "www.elle.com";
text8 = "Coca-Cola Online";
link8 = "www.coca-cola.com";
text9 = "Pepsi Online";
link9 = "www.pepsi.com";
text10 = "Sony's Website";
link10 = "www.sony.com";
text11 = "The CIA are online too!";
link11 = "www.cia.gov";
text12 = "You want recipes?";
link12 = "www.recipes.com";
text13 = "WIRED magazine";
link13 = "www.wired.com";
text14 = "Reuters-the world's news";
link14 = "www.reuters.com";
text15 = "Disney Online";
link15 = "www.disney.com";
text16 = "Shockwave.com";
link16 = "www.shockwave.com";
text17 = "Some site or other";
link17 = "www.wine.com";
text18 = "Some other site";
link18 = "www.beer.com";
text19 = "Edmonton, Canada";
link19 = "www.edmonton.ab.ca";
text20 = "Canada.com";
link20 = "www.canada.com";
text21 = "Vancouver.com";
link21 = "www.vancouver.bc.ca";
text22 = "Nike";
link22 = "www.nike.com";
text23 = "Levis Jeans";
link23 = "www.levis.com";
text24 = "Visit the Maytag Man!";
link24 = "www.maytag.com";
text25 = "Pampers Parenting Institute";
link25 = "www.pampers.com";
text26 = "Um... www.com exists!";
link26 = "www.www.com";
text27 = "Microsoft Online";
link27 = "www.microsoft.com";
text28 = "Apple Computer";
link28 = "www.apple.com";
text29 = "Bungie's Web Site";
link29 = "www.bungie.com";
text30 = "Download Anything";
link30 = "www.download.com";
text31 = "Corel Online";
link31 = "www.corel.com";
text32 = "The Makers of QuarkXPress";
link32 = "www.quark.com";
text33 = "Adobe's Homepage";
link33 = "www.adobe.com";
text34 = "CBS Broadcasting Online";
link34 = "www.cbs.com/netshow/";
text35 = "MP3 homepage";
link35 = "www.mp3.com";
text36 = "Music Videos";
link36 = "video.launch.com/index.cfm";
text37 = "Universal Studios";
link37 = "www.universalstudios.com/showcase/";
text38 = "Only This is a Test";
link38 = "www.thisisatest.com";
text39 = "Onlinesoaps";
link39 = "www.onlinesoaps.com";
text40 = "Onlinaspirations";
link40 = "www.onlineaspirations.com";
SECOND SCRIPT
// ----------------------------------------------
// How many links?
// ----------------------------------------------
n = 1;
while (length (eval("link" add n))>1) {
n = Number(n)+1;
}
/:total = n-1;
// ----------------------------------------------
// Alphabetical Sort
// ----------------------------------------------
if (/:alphabetize) {
// ----------------------------------------------
// EXPLANATION: we need 2 counters for this sort. (c and d). We start at the first item. We check if it is greater than the one in the position after it. It it is, it's in the wrong place, and we swap the two items. We do this all the way to the end of the list. THEN, we go back and star again, but since we already know the last item in the list is in its correct place now, we don't check that one any more. Each time through the sort, one more item is in its correct place. So we sort through fewer and fewer items. As you can imagine, this leads to Thousands of calculations. Since Flash 4 has a built-in 200,000 limit, we run in to a problem at somewhere over 160 items...
// ----------------------------------------------
c = /:total;
while (Number(c)>1) {
c = c-1;
d = 0;
while (Number(d)<Number(c)) {
d = Number(d)+1;
if (eval("/:text" add d) gt eval("/:text" add (d+1))) {
// perform swap:
temp = eval("/:text" add d);
set("/:text" add d, eval("/:text" add (d+1)));
set("/:text" add (d+1), temp);
temp = eval("/:link" add d);
set("/:link" add d, eval("/:link" add (d+1)));
set("/:link" add (d+1), temp);
}
}
}
}
THIRD SCRIPT
/menu:active_links = /:total add " link(s) in list.";
/:active_links = /:total;
stop();
View Replies !
View Related
Active Search List
Hi
I am a flash student and I have a problem working this active search list for a project i am doing on Museums. What i need is the user to be able to type a word and the dynamic text box and the swf to locate any museum with that word. E.g. the user typed "National" and The National Gallery will be shown. Also i want the Museum text to link to another frame in another scene so the user can view information about that museum.
Can any body help? Pleassse
Thanks
Jel
View Replies !
View Related
Active Search List
g'day i was checking out the following link
http://www.actionscripts.org/tutoria...st/index.shtml
and i liked the idea of the active search list..
my question is..
rather than with this example which links to a webpage, and then loads it externally.
is it possible to make it so, when you click on a search result, that it plays a instance of a movie clip.
for example... what i'm trying to do is make an address book with a map..
so when someone searches for james smith (great name i know).. and then they click on his name.. the map re-adjusts and zooms in to where his room is..
hope that makes sense.
thanx in advance.
View Replies !
View Related
Drop Down Menu With An Active Scrollable Search List
I need to create a drop down menu box, which is scrollable, as there will be a lot of different items on this menu (possibly over 100!). I found a quite a useful tutorial on : http://www.actionscripts.org/tutorials.shtml, which is in the Advanced Level at No1. entitled : Active Search List, the creater is Flash Junkie. ]
The menu that is shown in the aforementioned site, is exactly what i'd like to create, except it does not need to be as complicated as that, for example the whole menu is draggable and I do not require for this action to be performed.
However I'm finding the aforementioned tutorial a little bit too complicated to follow, can anyone help me with designing such a menu.
Many thanks in advanced.
Kind regards,
T2303.
View Replies !
View Related
Active Search In Flash Help
I'm trying to follow Flash Junkie's "Active Search tutorial". It's loacted here
When I open the SWF from the ZIP file (downloaded from flashkit) the links work perfectly. However, when I open Active_Search_List.fla, then publish it (without modifying it from how it came out of the ZIP) the links won't work. Instead of going to MTV.com, the browser address shows "http:/%20/www.mtv.com". So confused! Thanks for any help you can provide.
View Replies !
View Related
Problem: Active Search Engin By Flash Junky
I dowloaded the active search engin written by flash junky.
the fla's script is flash 4 and i use flash 5
the problem is that my links
(text1 = whatever
link1 = http://www.whatever.com )
gives me http:/20%/www.whatever.com in internet explorer
why does this happen?
how can i work around this?
i'd appreciate any help i can get on this subject
feel free to E-mail me at Angleise@yahoo.com
View Replies !
View Related
Flash Wish List: Search And Replace
I am posting this because I just spent the past hour changing label and variable names from "bio_" to "discography_" when I could have been moving on with my project.
Please, a search and replace actionscript utility. Please. It's just so painful.
View Replies !
View Related
Active Search
I'm trying to follow Flash Junkie's "Active Search tutorial".
When I open the SWF from the ZIP file (downloaded from flashkit) the links work perfectly. However, when I open Active_Search_List.fla, then publish it (without modifying it from how it came out of the ZIP) the links won't work. Instead of going to MTV.com, the browser address shows "http:/%20/www.mtv.com".
Is this a version issue since the original was posted so long ago?
I've seen several posts regarding the same issues but no responses. Can one of the heavyweights throw a punch at this?
Anything would be of great help.
Thanks!
Andy
View Replies !
View Related
Active Search - Willing To Pay For Help
I'm trying to follow Flash Junkie's "Active Search tutorial".
When I open the SWF from the ZIP file (downloaded from flashkit) the links work perfectly. However, when I open Active_Search_List.fla, then publish it (without modifying it from how it came out of the ZIP) the links won't work. Instead of going to MTV.com, the browser address shows "http:/%20/www.mtv.com".
Is this a version issue since the original was posted so long ago?
I've seen several posts regarding the same issues but no responses. Can one of the heavyweights throw a punch at this?
Anything would be of great help. I'm frustrated enough to pay someone for help. e-mail me if you are interested. ryffco@bellsouth.net
Thanks!
Andy
View Replies !
View Related
Need Some Help With Active Search
Hi, I've come across this most excellent movie here, and I'm basically tinkering with it. I've been learning flash for a little while and I suppose getting reasonably good... find the best way to learn is to do tutorials and mess around with other movies, but this one has me stumped!
http://www.flashkit.com/movies/Scrip...-114/index.php
I hope the author doesn't mind .
The links in this movie are to external html pages using getUrl... I'm wondering if they can be used to link to a movieclip inside the same flash movie, or perhaps link to another frame?
If anyone can offer any pointers, I will quite happily email them a cup of Darjeeling and a choccy biscuit!
View Replies !
View Related
Active Search
Hello
I have downloaded the active search file but im having problems with editting the links. they are ok on the demo but when i extract the files they are refresed and the links dont work? e.g http:/&20/www... SEE THE SPACE (%20) HOW CAN I GET RID OF THIS SO THAT MY LINKS WORK OK?
PLEASE SOME ONE HELP ME!!!!
THANKS
View Replies !
View Related
Active Search Help
I am in the process to create a fully flash based website and on this website I would like to have a search function in the upper right corner where the user can search though the site.
I found a wonderful tutorial here on Flashkit with the search function here:
http://www.flashkit.com/tutorials/In...u-73/index.php
It was just what I was looking for except that when you click on one of the tutorials search results you went to a different homepage. What I would like is to instead for it go to a different frame in the flash file.
All answers would be appreciated
Thanks
View Replies !
View Related
Active Search
I am in the process of creating an active search that reads out of an xml file. But I am having a problem with my textFields showing up over another mc. Even though they are a layer above and they have higher depths. I have included the fla and xml files. It is mx2004 format because for some reason it saves the fla as a smaller file size .
Thanks
Here is the code:
ActionScript Code:
incre = 18;tIncre = 0;// create linesfor(i=0;i<(total-1);i++){dataa.dLine.duplicateMovieClip("dLine"+i, i);dataa["dLine"+i]._y = incre;incre += 18;if(i%2 == 0){dataa["dLine"+i]._alpha = 0;}}//create text fieldsfor(i=0;i<total;i++){dataa.dText.createTextField("dNamee"+i,dataa.dText.getNextHighestDepth(),5,0+tIncre,200,18); dataa.dText["dNamee"+i].text = dName[i];tIncre+=18;}
View Replies !
View Related
Flash List Results - From Portal Search Usage
Hi Chaps,
Im pretty sure that more heads are better than one on this one as there are so many possible ways to structure something like this its crazy. Im sure you guys have come accross stuff that you've seen before that I havent and Visa Versa. Apologies for the long post, I think the more you explain the better.
What I want to do is use flash for its prime competitive advantage in its ability to list and display search results.
So if someone does a search for products on a site, I'm looking for what ways you guys have seen that you reckon is rock solid in terms of displaying those results.
What I'm looking for is some good examples of how flash has been used creatively and competitively over html to display a number of search results from a db e.t.c..
Im looking for the next industry standard "display search results" examples. Whereby flash dominates in terms of possibly(speed, control, user friendliness,e.t.c). Pretty much anything, if its cool and you can remember it, I would really appreciate your post or link to it.
Can be links, fla's, actual sites or anything where something has been searched and the search results have been displayed in flash.
Thanks guys, let me know if that is too broad a question or if I can elaborate any further on it.
View Replies !
View Related
[MX04] Active Search Help...
I have been using the " Active Seach by FlashJunky" but can somebody please help me.
the program has default www. links, but the links I want it to go, does not have www. all of my links are http://mywebsite.com . So when I remove the www. its adding a space like this http:/%20/. al my links are coming out corrupted like this...http:/%20/mywebsite.com
how do i remove this??? please help..
.
I've also gone thru the entire code, I cannot find getURL and seeing where this HTTP:// is being added...
Please help...................
This is the only relevant section I don't understand, but I think the spacing is being added on here, can anyone or please help me with this?
c = /:total;
while (Number(c)>1) {
c = c-1;
d = 0;
while (Number(d)<Number(c)) {
d = Number(d)+1;
if (eval("/:text" add d) gt eval("/:text" add (d+1))) {
// perform swap:
temp = eval("/:text" add d);
set("/:text" add d, eval("/:text" add (d+1)));
set("/:text" add (d+1), temp);
temp = eval("/:link" add d);
set("/:link" add d, eval("/:link" add (d+1)));
set("/:link" add (d+1), temp);
}
}
}
}
View Replies !
View Related
[CS3] Active Search Function
I'm making a project and need to make a search function based on a list of places, but i want to make it like the apple site search, at the same time you type you are seeing possible results. but need a little direction on how to make it, like if it would be better with XML .
make something like this
PHP Code:
<?xml version="1.0" encoding="ISO-8859-1"?><places> <pName info= "Florida" link="AS instance name to be use"/> <pName info= "Chicago" link="AS instance name to be use"/> <pName info= "California" link="www.place.com"/> <pName info= "Texas" link="AS instance name to be use"/> <pName info= "New York" link="AS instance name to be use"/></places>
am able to load the file in flash and read it but need to convert each name in a button and use the link attr. as the instance name, but doesn't know how to make the search function
?
any help its appreciate
View Replies !
View Related
Help Integrating Flash Search Map (swi/swf) With Drop-down List In (html/xtml)
I have a version of a flash search map in various formats (.exe, .html, .swi, .swf) that I want to integrate on the same html page that a drop-down list is on.
In other words, does anyone know of a way to "link" the flash map to an xtml file?
For example, what Im after is =>
When someone clicks on a Country (like JAPAN) on the map, the drop down list should change to JAPAN at the same time (similar to a Dhtml effect). Or if the user selects a Country (like PORTUGAL) from the drop down list, then the map should act as though someone clicked on PORTUGAL on the map and rotate and show PORTUGAL. In other words, the map and drop down list should be linked ...
I am therefore asking you if there is a way of doing this? Any tips or examples would be GREATLY appreciated.
Thank you very much in advance,
Porac69
View Replies !
View Related
Search Feature And XML List
Hi there,
Ok I have an XML page that contains a ton of links. That list loads into a scroll menu in Flash MX.
Is there a script/way to have a search feature and have the box display only results to that search.
For instance:
User types "Networking", and the text box list filters down to links only containing the word networking?
Thanks
View Replies !
View Related
POP-UP WINDOW From A List Search
Hi,
can you tell if it's possible to create a pop-up window from a list search like this one: http://actionscript.org/tutorials/advanced/active_search_list/index.shtml
if you know any outher idea you are free to sheare.
thank you
View Replies !
View Related
Search And Replace From Word List....
I'm working on a way to send data to and from the server that bit is easy, but I want to put some of the workings in the client as this will speed up the servers responce...anyways.
my question s how do I take an array such as :
h,e,l,l,o, ,t,h,e,r,e
search the word list and replace words or groups of words with a hex value?
so a user input of
hello there
becomes
h,e,l,l,o, ,t,h,e,r,e
and then becomes for example
4,f, ,d,5
the word list is not yet formed, but will contain about 1000(to start) of the most commonly used words and phrases in the english langage. I do not yet know how to achive any of this task, can someone just point me in the right direction please
View Replies !
View Related
Itune Search & List Function
Howdy boys & girls!
I've gotta question / I'm seeking inspiration. For my study I've to build a prototype for big, huge grocery shop, with new "idioms" to buy the products (using direct manipulation etc, not using the conventional hierarchy structure f.i) Because the shop has over more than 10000 products I was looking for a good way to buy them. Looking at the way Apple developed the Itunes search option gave me real good inspiration.
What I (and the rest of my project group) want to do is this.... We want to develop a real time search function: Type in the word (or a part of it) and get instantly feedback. So when typing "me" the results "meat, meatballs, etc" are projected instantly in a list. Just the way Itunes does it.
Does anyone has ideas how to do this? Or could some one help me by tossing over an interesting link? It only has to be a prototype.
thanks !
View Replies !
View Related
Combo Box List NOT Linking To URL?
Hi i am having difficulty with a combo box list. I want to use it in a kind of quiz. so i can give feedback on their answer by using dynamic text. However despite filling in all the potential answer choices ok, in all the books it only says how to make their choice link to a URL. But i just want it to make dynamic text aapper in the same keyframe. Can you help?
View Replies !
View Related
Combo Box List NOT Linking To URL?
Hi i am having difficulty with a combo box list. I want to use it in a kind of quiz. so i can give feedback on their answer by using dynamic text. However despite filling in all the potential answer choices ok, in all the books it only says how to make their choice link to a URL. But i just want it to make dynamic text aapper in the same keyframe. Can you help?
View Replies !
View Related
Flash Search Field - Atomz Search
I currently use Atomz for their search engine. A clients site as of now is all HTML, however I am buidling some flash elements which will incorporate a simple "search" field and submit button.
I will include the HTML, however I am unsure how to make a form in Flash to be able to include the hidden fields, etc. I hope this makes sense, and thank you in advance!
<form method="get" action="http://search.atomz.com/search/" name="search">
<input name="sp-q" class="textbox" id="sp-q" value="Search" size="15">
<input type="hidden" name="sp-a" value="sp1002ad5d">
<input type="hidden" name="sp-p" value="all">
<input type="hidden" name="sp-f" value="ISO-8859-1">
<input type="submit" name="Submit" value="Submit">
</form>
If someone could create a small file, or let me know where to place what code where, please let me know. Any help is greatly appreciated! As well, if you have paypal, I can send a little something for the help!
View Replies !
View Related
Load Xml Data(list Of Names), Use List As Buttons In Flash Possible?
Hi, basically I have a quiz game that I made, the quiz is done but I want to keep track of how many times a person has failed the quiz. I have an XML file that has a list of names. I want to take those names, put them in a quiz game (at the beginning) as a "list" of some sort and let the user be able to choose their own name (which is of course already in the XML file). This name will be used to keep track of how many times they have tried the quiz.
I have successfully loaded the XML file (names) into an ARRAY in Flash but how can I output them to the screen AND let the user be able to choose those from the list? as a button? This will add the count after they clicked their name to +1 and then save it to somewhere(where is best?). I will attach the zipped files (there are 4, the fla,swf,2 XML files[quiz/names]). If anyone can help me ASAP it would be awesome.
View Replies !
View Related
Search Help Text Search In Flash
Hello, i'm realy stuck, and I need help... read dead end , i need to make a search on my site in flash, and also i need to explain ... what i need , example, whole site is in flash, and i need when someone wonna to find something just type word or sentence and then find on my site, but not google find or something like that... i wonna something easy, like CTRL + F, but label with find button... if anyone can help me or give me a guide i will be so happy, so thanks
sorry for my english... I hope it's readable )
View Replies !
View Related
(Flash MX Or 8) List/List Component Issues
Hello all.
I recently completed Kirupa's "Creating a Listbox" tutorial, (http://www.kirupa.com/developer/mx/listbox.htm) but have been having a difficult time modifying the event attributes of each list item. Basically, I want to click on an item and have an object on the stage move to a unique xy coordinate. I can get the object to move already (object._x = object._x +10, but unfortunately ALL items on the list execute this script command. I've tried fooling around with the code to get each item to do a unique movement but...well, clearly I haven't succeeded yet.
I'm a Flash nooby and help in the form of specifics would be greatly appreciated. If you can provided modified code from the tutorial to move an object to a unique positions that's even better.
Thanks.
David
View Replies !
View Related
Flash Being Active
Hey there, is there a way to prevent flash to be so 'active' wich has a result that the browser scrollbar doesnt work, that backspace doesnt work as back button and that refresh shortcut won't work and more.
Is there any way to fix, or work around this problem?
thanks
View Replies !
View Related
Flash And IE 6 Active-x
I still could not solve my problem with IE 6 and the blocking of flash interpreted as active-x controls.
Still quite new with flash, I made a nice little film with works perfectly in Firefox.
It works also in IE 6, but I always have to activate this idiotic bar.
And, in IE the flash movie does not stream.
I found the solution for the non-streaming with Satay, and it works fine.
Then I tried the ObjectSwap Javascript to avoid the problem with the activation bar in the IE.
It does not work!!! I could not even make the example-page work in IE without having the same problem again with the activation bar.
Anything I did not check? Maybe I forgot something simple.... and how comes I CAN see other flash movies from other side WITHOUT having to activate the bar??
Thanks for any advice,
Chunga
View Replies !
View Related
Active, De-active Script
hello im trying to write a script to set a MC value to active onRollOver and deactive when you mouseOver another MC.
when each button becomes active it also executes it's own set of functions.
can someone help me please get this started, thanks in advance!
View Replies !
View Related
Can Flash Tell Witch Mc Is Active?
Hi everybody(hi dr. nick)
I am making a small flashsite and instead of loading movies I just have MC´s with the pages and they are all loaded in the beginning.
the basic effect is a textbox and the picture of a person, when you click a button a wireframe model of the person pops up blink and get colored, this is the same effect with all 4 pages but with different persons, I would like that when you press a new button NOT just to remove the Mc and play a new one but to have the "active MC, the one currently present play its effect backwards so it dissapers before the new one pops up.
is there some way of telling flash witch MC is being showed cause then I could just tell it to go next frame and have the dissaper effect there.
Thank you hope it´s clear what I need.
View Replies !
View Related
Can Flash Tell Witch Mc Is Active?
Hi
I am making a small flashsite and instead of loading movies I just have MC´s with the pages and they are all loaded in the beginning.
the basic effect is a textbox and the picture of a person, when you click a button a wireframe model of the person pops up blink and get colored, this is the same effect with all 4 pages but with different persons, I would like that when you press a new button NOT just to remove the Mc and play a new one but to have the "active MC, the one currently present play its effect backwards so it dissapers before the new one pops up.
is there some way of telling flash witch MC is being showed cause then I could just tell it to go next frame and have the dissaper effect there.
Thank you hope it´s clear what I need
View Replies !
View Related
IE Blocking Flash (Active X)
A new security release by our friends at MicroSoft has thrown a wrench into Flash development. The latest "security patch" for Windows/IE now disables the <embed> and <object> tags, forcing users to "Click to Activate" the Flash content. There is a JavaScript workaround located here: Active X Workaround.
Thought you might be interested.
View Replies !
View Related
Active X Control In Flash Nav Bar In IE6
Hey guys,
I have a flash based nav bar that I am using for a HTML site. Works fin in FireFox but in IE6 explorer when you load the page there is a disclaimer saying that you are accessing a page that uses Active X controls and that it may be used to control your computer. And even after you accept that content when you mouse over the menu a selection box appears around the transparent object and aome ALT TEXT says to click or press space bar to activate the control. What is the deal and how can I get around this. I have never seen it on other sites... Why am I so special!
Thanks
dptoot
View Replies !
View Related
Flash & Active X Controlz
I'm email broadcasting a bunch of flash movies and Active X must be enabled in order to view flash within Outlook/Outlook express.
This is controlled within
tools/
options/
security
and your zone must be set to internet.
Does anyone know of a script to check for this¿?
View Replies !
View Related
Ugly Flash Active Box
Im designing a site that will use several flash objects. How do I get rid of the ugly flash active boxes in IE? I tried using the ieupdate.js but it makes the site load twice real quick.
Please help!!
View Replies !
View Related
Active Image In Flash
How can I get the following code to work on my flash website?
<a href="http://www.horror-movies.ca/horror_movie_2086.htm"> <img src="http://www.horror-movies.ca/vote/sig_movie.php?id=2086" border="0"></a>
Here is a link to the site I'm working on. http://www.hallowedmovie.com/Templates/
View Replies !
View Related
Flash 8 And IE Blocking Active X
OK. So I have a website with some flash buttons added. When I open the website in Internet Explorer, it blocks the buttons saying there is some ActiveX script. The problem is: Other websites with flash buttons are not being blocked. Just my buttons. How did the other websites bypass that? (BTW the IE security setting is on default)
Thanks for your help guys!
View Replies !
View Related
|