669 Posted Topics
Hey all, I've been registered here for a little while now. Figured it's about time to introduce myself to the wider community here. I'm Jason, I'm thirtysomething (I forget!). My friends call me Hippy 'cause I used to have long hair and a huge goatee beard......I've long since lost the … | |
Re: [QUOTE=mughal_states;857598]How to show image in place of swf if flash player is not installed in browser ! plz help ![/QUOTE] The standard approach would be to use some javascript to check whether the users browser has flash-player installed and if not display an image instead...Do a quick google and you … | |
Re: Wow, that post was a nightmare to read! Can you use code tags in future please?! The maths in this looked terrible at first glance too...How does 82 + 52 = 89?? It took me a while to work out that you meant, but I got there in the end! … | |
![]() | Re: I wouldn't say it's impossible to do, but it depends on how complex you want to make the app. Using Flashdevelop and AS3, I recently made a simple flash app to put onto my active desktop at work so I can leave TODO notes on my desktop, or aimlessly doodle … ![]() |
Re: [QUOTE=jakesee;854040]Hi everyone, Say I have a MovieClip that has nested MovieClips for example [CODE]person_mc > body_mc > toe_mc > toe_nail_mc > leg_mc > hand_mc[/CODE] Then, I want to export this person_mc and use AS3 to move the body parts _mc around. How do I reference the body parts? Ideally, I … | |
Re: In windows, by including shlobj.h you can use a call to determine the path to the users desktop using the following: [CODE] // This variable will store the path to the users desktop LPSTR desktopPath = new CHAR(MAX_PATH); // this function call will populate the variable above with the path … | |
Re: [QUOTE=Dannyo329;853713]Hi, I have a question with ofstream, is there anyway to ask the user for a file name, then create the file, and write to it? Like: [CODE] string file; cout << "Enter filename:"; getline(cin, file); ofstream ofile; ofile.open(file); ofile << (stuff....); ofile.close; [/CODE] ...except that doesn't work properly.:S Thanks … | |
Re: [QUOTE=vddmanikanta;853715]Hai everyone I need a clarification on the following issue Why does C++ compiler doesn't allow, to initialize static member function inside a class And please do tell me about what is meant by initializing a function (member function) Please help me in getting it clear thank you Have a … | |
Re: The easiest way would be to use the ios::app flag, this will open the file in append mode if the file exists, if it can't find the file, a new one will be created. [CODE=C++] ofstream myfile; myfile.open("path\filename.ext", ios::app ); [/CODE] Cheers for now, Jas. | |
Re: [QUOTE=jakesee;848927]Oops, seems like I am asking too much question in this forum.... hehe.. So now in the first frame, I put (using the GUI tools) a textfield in flash CS4 and give it an instance name "Status". What I want to do is to update this status from other classes … | |
Re: [QUOTE=jakesee;848032]Hi all, Need some advice here: I wrote some code to recieve KeyboardEvents but when I "Test Movie" inside the flash program, many keys are being captured by the flash program instead of my swf test movie. Most notably, all alphabets are trapped only numbers are detected within the swf. … | |
Re: [QUOTE=jakesee;848152]Hi all, The previous flash 8 I used has got an swf player such that when I open the swf from the windows folders, the swf runs in its own standalone player. (not the exe projector) But recently I tried to do the same for Flash CS4, the swf does … | |
Re: [QUOTE=Latent12;842952]Hello everyone, I am in the process of developing a crossword puzzle website at [url snippedl] I want to start adding Flash crossword puzzles to the site. However, I am no Flash developer. Is there any software available that would allow me to easily create Flash Crossword Puzzles for my … | |
Re: [QUOTE=PC_Nerd;838955]Hi, I'm trying to create an array or <list> of different objects ( of different type). All of the objects will have parent objects of a Manager type, but each one ( as a singleton) will be in the array/list. It's for some networking code I'm building, where each incoming … | |
Re: Hey there, first up you need to decide exactly what you are going to be passing via the command line when the program is called.. i.e. perhaps you're going to call the program and pass the numbers to populate the array and the seed.. The numbers used are 1 to … | |
Re: Hope I'm not too late on this one! One other thing that you may have overlooked which could be making the difference is flash's local playback security settings. What are your settings for local playback security? Open up your source .fla and use ctrl + shift + F12 to access … | |
Re: The answer is in all of the error messages you are recieving from the compiler. [code]C:\Documents and Settings\Visitor\Desktop\rx-asn-2-re-worked_v3\rx-asn-2-re-worked v3\includes.h(18) : fatal error C1083: Cannot open include file: 'windns.h': No such file or directory[/code] What the compiler is telling you is that in "include.h" it cannot find the header file "windns.h" … | |
Re: [QUOTE=35nando;772889]I made an application in Builder C++ 6. It contains few graphic elements, few image lists. I use drawing on Canvas. After short using my application, following message appears: "out of system resources". After it, my application behaves strangly and freezes. I use onPaint event. My exe weights 2200 KB[/QUOTE] … | |
Re: I'm not sure exactly what you're asking when you say "can you tell me which style below function is showing in C++" But I can answer the question in the topic title "what is going on in this function?" [code] SmeConfigRnc::SmeConfigRnc(uint32_t rncId, uint16_t pc) : m_RncId(rncId), m_Pc(pc) { //Allocate userId … |
The End.