I recently made a .swf file which is hosted here [URL] as you can see the hyperlinks work fine and go to the correct sites. My question and impass is that whenever I post this same file as a forum signature it works fine but when I click on the hyperlinks they don't bring up the websites they act like they are dead.
btw the hyperlinks are just Text that I changed to Dynamic text with urls.
when I try to make text or a button into a hyperlink within that tooltip, it doesn't seem to be usable in the preview. I click on the text/button, and it just doesn't do anything. I've tried coding it several different ways, and looked for an appropriate tutorial, but I haven't been able to find any luck. Is there something I'm missing? Can I even make hyperlinks in a tooltip that's made with that simplified code, or will I have to find another way to make them?
I have begun on a list: My reference is null!Stage is null! Convert this code from as 2 to as 3 for me! Crossdomain policies are in the way of my cool idea Dynamic property names I need to use stuff on the parent! I don't want my children to scale when I scale the parent! Classes vs instances. Mod note: I do not want this topic pinned, we will use a fresh topic once we have agreed to the content.
In other words, I have already created the artwork and I have it in my library. how to link it to my website's forum?
I've watched this video a couple of times: [URL] but I must be missing something as the panel tells me that no actions can be applied this object (my button). Yes, I've already converted it into a symbol - movie clip, and named it 'Forum'.
I really don't understand this forum. I'm trying to search for "Flashthusiast.com" in the Flash section, but all I get is a bunch of icons in the left column with a second column that says: "in Flash". No subject line, nothing. Is this a bug? Or, am I seeing something different than others?
Anyhow, when reading about creating in Flash in the user manual, I'm referred to Flashthusiast.com for sample AS3 code for button behaviors, but Norton Internet Explorer classify that site as dangerous. Has anyone visited it recently?? Why would Abode refer me to that site if it is dangerous?
I have five text boxes and a dropdown box in my flex application, how can I make the progress bar fill up when there is text in each box, and the dropdown selected. For example, if there is input in three out of five of the boxes and there is a selection in the dropdown, then the progress bar would be 4/6 full.
I'm having problems creating a character creation forum, that I've created using ActionScript 2.0 and I've been using the loadVars(), sendandLoad() and many variables to create it. You see, I've tested it but it won't save the characters onto my Angelfire account that I've already created at the start. I've created many things with Flash and I'm a newbie at Dreamweaver, so I'm using ColdFusion to save the information.
I'm building a website application in PHP that requires a signature from the end user. For this part of the website it will be exclusively viewed on Windows based tablets. So, my question is this: What's the best way to capture a signature online? I've looked at flash or HTML5 canvas/excanvas, but I am seeking a more experienced answer.
It is not listed in File Signatures Table nor could I find it in Adobe specs. Or am I misunderstanding something here? The purpose is to verify an uploaded file.
I have started building a website within flash(AS3) and now my client has come to me and said that they want a message/forum board. So I was curious how I would start integrating my website with a php message/forum board?
I have a flash based web****e that has a login section (user & psw) I want to have it work so that when the user enters the user&psw details on the flash site, it then takes you straight to the forum bypassing the phpbb's login form. My code atm is as followed:
Code: //---------------Setup variables var loader:URLLoader = new URLLoader();
I've registered for the apple developer program, and now I'm trying to get my app on iPhone. Everything is going fine until I install my app, then iTunes says: The app "App Name" was not installed on the iPod "iPod Name" because the signer is not valid. I have no idea why. I made my signature using the OpenSSL for windows, and i have downloaded the visual c++ redistributables 2008, and set the RANDFILE to .rnd, and i did it in Firefox.
So if one of the A variants wants to implement the function, it lives in its own namespace. Now, how could I ensure that the compiler checks the argument structure?
I am creating an application that requires a user to draw their hand signature on a tablet. Does anyone the best way to do this on Flex mobile 4.5? What do I draw on to, a Sprite, canvas?
Also, I would need to save the signature as a .jpg, could this be done?
trying to figure out how Voetsjoeba created his signature. I realize it has something to do with the position of the mc, but i don't understand the rest.
I would like to point out that I am not an employee of either Comedy Central, The Daily Show or the website. The labels 'Production Assistant' and 'Intern' are just the sites rankings descriptions.There is an assumption by iPad owners, that all Flash websites must be converted to be compatible with the iPad, rather than the iPad should be compatible with existing websites.Is it worth continuing to defend against this assumption? Should we just give in to these people or try to engage them in a discussion, get them to demand Flash support from Apple?
My friend is making a new signature for use on her forum and she wanted to embed an animated .gif file into her signature. She has no idea how to do this but it sounded to me like something that could be done fairly easily with flash and Actionscript. Personally, I have not used Actionscript in any of my projects since I bought CS3. Mostly I've just been too lazy to learn the differences between Actionscript 2.0 and 3.0, I know it uses a bit different of a syntax.
I have a flash projector file (.exe) that I need to add Code Signing to it so it does not say 'Unknown Publisher' in Vista. I read that for CS3 there is no authenticode signing. Was this added in CS4? I just want to check before I go ahead and purchase a 3rd party app like Juggler. Any software to add authenticode signature to a CS4 flash projector file? Jugglor is pretty old (2007) and I would like to know if there are more recent apps to package and sign projector files.
- I create a new fla file in Flash CS5 Professional,- I go to publish settings and select AIR2 as the target- I click the Settings button on the rightThese settings are supposed to be saved with the fla file, since all of them are related to the project.Application name, icons, files to include, etc, are all preferences related to the fla file of which you are editing the settings.However, when you go to the "Signature" tab and select a digital certificate to sign the air application with, this setting will NOT be saved into the file.Instead, whenever you publish ANY air application, it will use by default the lastcertificate you have used, even if you used it to publish _another_ application.That is absurd, because this is a tab within the "publish settings" and all publish settings are specific to a fla file.
when extending a class, is it impossible to override a method without also matching the parameters?for example, i'd like to use the method's name, in this case it's a socket extension and the method i want to override is connect. however, i want to request additional parameters that the stock connect function does not request.
is the only alternative to create my own connect-like method with my own parameters, call super.connect from this function and override the stock connect function to throw an error if it's called?
create a method with different signature elegantly?For example, I want to create a getData() method which could take id or name. I can either do getData(arg:*):Object where I can guess what that arg is inside the getData method, or create getDataById(id:Number):Object and getDataById(name:String):Object to achieve this, but I am not really liking this much... I am basically stuck with those two options or is there any way to do what Java does where you can do getData(id:Number):Object and getData(name:String):Object?