convert lowercase to uppercase
Hi
most of the photoshop users wanted to have a tool with in flash to convert the textfiled data to uppercase by a click as they can do it in photoshop.
so just developed a jsfl command to do that select your text filed on the stage and run the command it will convert all text data to uppercase.
let me know if any additions required.
save the following code using notepad with filename “uppercase.jsfl”
open the file from with in flash by selecting commands >> run command and file.
uppercase = function(selIndex)
{
var textLength = fl.getDocumentDOM().selection[selIndex].length;
if(textLength == undefined){
return;
}
var lower_string = fl.getDocumentDOM().selection[selIndex].getTextString(0,textLength);
}
var theSelectionArray = fl.getDocumentDOM().selection;
for(var j=0;j<theSelectionArray.length;j++){
uppercase(j)
}
My first attempt to learn stratus (RTMFP)
Please find below A peer2peer video chat application using a new protocol introduced in flash player 10 Real-Time Media Flow Protocol (RTMFP). The most important features of RTMFP include low latency, end-to-end peering capability, security and scalability. These properties make RTMFP especially well suited for developing real-time collaboration applications by not only providing superior user experience but also reducing cost for operators.
In order to use RTMFP, Flash Player endpoints must connect to an RTMFP-capable server, such as the Adobe Stratus service. Stratus is a beta, hosted rendezvous service that aids establishing communications between Flash Player endpoints. Unlike Flash Media Server, Stratus does not support media relay, shared objects, scripting, etc. So by using Stratus, you can only develop applications where Flash Player endpoints are directly communicating with each other.
Some important tips:
Read the rest of this entry »
Designers friendly CS4: some new IDE features
Some of them outlined below
Most liked by me are in Green BOLD color
Hats off to Adobe Team.
Object-based animation
Motion Editor panel
Motion Tween Presets
Inverse Kinematics with the Bone tool
3D Transformation
Decorative drawing with the Deco tool
Adobe Kuler panel
Sample Sounds library
Vertical Property inspector
New Project Panel
Adobe Media Encoder with H.264 support
Adobe ConnectNow integration
Edit in Soundbooth
Enhanced metadata support
Collaborate with Flex developers
XFL import
Support for Adobe Pixel Bender
JPEG deblocking
Improved Library panel
New Creative Suite user interface
New Font menus
Hardware Acceleration
Community Help
Adobe and Intel announce partnership to get Flash on TVs :)
Extending the Flash to TV’s gr8
read more
source
http://www.intel.com/pressroom/archive/releases/20090105corp.htm
Air Error 3122 and 3125, embarrassed me :(
One day my COO of company called me and showed an error of Application I developed diabetesdairy on AIR 1.1. The error 3122. it is very embarrassing getting such an error figured out by your boss’s boss. It was my 1st External project on AIR.
Read the rest of this entry »
Find the Code You need on below links
Just sharing couple of links i use when i look around for some code samples for prototyping when i feel lazy to write all my self
http://www.google.com/codesearch
http://snippets.dzone.com/
Is AS3 is better?
Hi all well I am not very sure about this for now as I have a year experience with AS3, however would like sketch some points over it pros and cons as per my observation.
Read the rest of this entry »
