Scripts All Other

Ques:- Someone who protect my excel file, m using ms office 2007 and windows 7 operating system, pls help me, how can i unprotect sheet
Ques:- what will this do? function show_alert value=”Show User” eval(“x=10; y=20; document.write(x*y)”);
Recent Answer : Added by Admin On 2020-05-17 11:40:51:

it means that toyotanon is dead. OP killed him and his girlfriend.
salt lake city, USA
07/29/2012
toyotanon is hero

Ques:- How do you insert record into scripting using siebel crm
Ques:- I have deducted tds on pay slip for employees ist month tell me how to deposit this amt to govt. by bank or any form is available fill the same and deposit the govt. department. Pls explain me which form to be used for deposit the same with due date.
Ques:- Why we use Action Script(Multimedia Flash) rather than using other scripting languages (JAVA,VB…etc) ?
Ques:- what is the difference between 32 bit O.S n 64 bit O.S?
Recent Answer : Added by Admin On 2020-05-17 11:40:51:

The difference is the amount of information the PC’s processor
can handle at any precise moment. While a computer designed
for a 64-bit operating system has vastly more potential
computing power, it requires fundamental changes to the way
its software is designed.
There are also some significant mathematical limits to the two
different types of processor. A 32-bit processor can only work
with a maximum of 4GB of memory, and this is usually limited
to 2GB for any one program. A 64-bit processor could
theoretically work with 17 billion GB of memory.

Ques:- i a had secured second class in tenth and twelth and i secured first claas.can i apply for job
Ques:- what is the fullform of URL or URI?
Recent Answer : Added by Admin On 2020-05-17 11:40:54:

URL — Universal resource Locater
URI — Unifor resource identifier

Ques:- which is best institute for flex and actionscript in hyderabad
Recent Answer : Added by Admin On 2020-05-17 11:40:52:

space multimedia is the best in hyderabad, ameerpeta,

Ques:- how do invoke OS task through ANT?
Ques:- how do u define in ur build.xml If I need to execute a task before executing my task?
Ques:- can I name the build.xml with any name? if so how can I invoke ?
Ques:- what is the Structure of an ANT file?
Ques:- what is the diff between ANT and MAVEN?
Recent Answer : Added by Admin On 2020-05-17 11:40:53:

Apache Ant
•Ant doesn’t have formal conventions like a common project
directory structure or default behavior. You have to tell
Ant exactly where to find the source and where to put the
output. Informal conventions have emerged over time, but
they haven’t been codified into the product.
•Ant is procedural. You have to tell Ant exactly what to do
and when to do it. You have to tell it to compile, then
copy, then compress.
•Ant doesn’t have a lifecycle. You have to define goals and
goal dependencies. You have to attach a sequence of tasks
to each goal manually.
Apache Maven
•Maven has conventions. It knows where your source code is
because you followed the convention. Maven’s Compiler
plugin put the bytecode in target/classes, and it produces
a JAR file in target.
•Maven is declarative. All you had to do was create a
pom.xml file and put your source in the default directory.
Maven took care of the rest.
•Maven has a lifecycle which was invoked when you executed
mvn install. This command told Maven to execute a series of
sequential lifecycle phases until it reached the install
lifecycle phase. As a side-effect of this journey through
the lifecycle, Maven executed a number of default plugin
goals which did things like compile and create a JAR.

Ques:- Need a batch file or VB script to delete old (more than 90datys) roaming profiles
Ques:- why do u need an ANT?
Ques:- How applet differ from Swings in java ?
Ques:- I have installed QTP version 9.0. I have installed Mozilla firefox version 2.0. But QTP “Record and Run settings” in WEB tab shows FIREFOX 1.5 in drop down to run session begins. So QTP does not record anything which I type in firefox. How can i recognise firefox 2.0 and how can i update browser version in QTP?
Ques:- I Am Planning to Write ISTQB foundation level Ceritification of inida. can Any Body let me know how to prepare for it & Any Study material can you provide or Any other E-books i should need to Study. Please Mail to me ajaybe_2004@yahoo.co.in THnaks in advance Ajay
Ques:- What is URL Loader.?
Recent Answer : Added by Admin On 2020-05-17 11:40:51:

The URLLoader Class is responsible for loading all textual
content and that include in addition to regular text files,
XML, HTML, and CSS.

Ques:- How can Loading video files in AS3?
Ques:- what is Eventflow.?
Recent Answer : Added by Admin On 2020-05-17 11:40:50:

When events happen to an object on the display list (an
object displayed on the screen), all the objects that
contain the object are notified of the event and notify
their event listeners in turn. This process starts with the
Stage and proceeds through the display list to the actual
object where the event occurred, and then proceeds back to
the Stage again. This process is known as the event flow.

Ques:- what is difference between AS2 and AS3.?
Recent Answer : Added by Admin On 2020-05-17 11:40:50:

AS2 uses a lot of attributes that start with an underscore
(._x, ._alpha, etc). In AS3 the underscores are removed
(ie. .x, .alpha), if you see underscores you’re probably in
2.
Second, look for variable typing. It’s not required in
either version but a lot more people type their variables
in AS3…if variables are being typed (ie. var a:Number =
5) you’re probably in 3.
Lastly, look for function return types. The majority of
functions in either language will be returning void…in
AS2 look for a capitol V (function():Void{) and in AS3 that
got lowercased (function():void{).
Another difference is the fact that all events in AS3 are
called with addEventListener function, instead of using
the “onEventName” property of each object.
• To add event listeners in ActionScript 2.0, you use
addListener() in some cases and addEventListener() in
others, whereas in ActionScript 3.0 you use addEventListener
() in all cases.
• There is no event flow in ActionScript 2.0, which
means that the addListener() method can be called only on
the object that broadcasts the event, whereas in
ActionScript 3.0 the addEventListener() method can be
called on any object that is part of the event flow.
• In ActionScript 2.0, event listeners can be either
functions, methods, or objects, whereas in ActionScript
3.0, only functions or methods can be event listeners.
• The on(event) syntax is no longer supported in
ActionScript 3.0, so you cannot attach ActionScript event
code to a movie clip. You can only use addEventListener()
to add an event listener.

Ques:- How to Communicate with JavaScript?
Recent Answer : Added by Admin On 2020-05-17 11:40:50:

1. In previous versions of Flash, JavaScript communication
was done via fscommand. This was a buggy and complex
technology. In fact, it was so bad that most developers
actually preferred to put their JavaScript function calls
inside the getURL function. This got the job done, but was
far from ideal.
2. Flash 8 introduces a ground-breaking new way to
integrate Flash with its host called the External
Interface. This allows Flash/JavaScript integration to be
more powerful and stable. It is also very easy to use.
External Interface offers Flash 8 Developers the following
advantages: it’s easier to implement, it allows for
synchronous communication, and it supports sending a wider
selection of data types, including objects.
3. Fscommand didn’t allow for synchronous communication.
4. The External Interface allows you to call a JavaScript
function and receive a return value.
5. Fscommand allowed you to send primitive data types as
arguments in the function calls. Now, with External
Interface, you can send complex objects as arguments. In
example 2 below, we are passing the entire
system.capabilities object back to JavaScript.

import flash.external.ExternalInterface;
function displayPageLocation():Void {
locationDisplay.text = ExternalInterface.call
(“getLocation”);
}
locationButton.addEventListener(“click”,
mx.utils.Delegate.create(this,
displayPageLocation));

Ques:- how can i get two different fonts in a single line
Ques:- what is the difference between the start_form and open_form
Recent Answer : Added by Admin On 2020-05-17 11:40:49:

Sart_form open the layouts
open_form open the layout.
Start_form initialise the spool.
Open_form initialise the layout.

Ques:- please send the scrpit driver program
Recent Answer : Added by Admin On 2020-05-17 11:40:50:

: When events happen to an object on the display list (an
object displayed on the screen), all the objects that
contain the object are notified of the event and notify
their event listeners in turn. This process starts with the
Stage and proceeds through the display list to the actual
object where the event occurred, and then proceeds back to
the Stage again. This process is known as the event flow.

Ques:- Would you tell me that what is test script? and how to write it? are there some templates?
Ques:- what we will test in functionality testing
Recent Answer : Added by Admin On 2020-05-17 11:40:49:

Check all the Functions,Like Buttons/Shortcut keys/Radio
button/Scroll/Date combo box/Etc…
All function in the Screen must work accordingly.
Mohammed Mustafa Hussain
If any question mail me
mustafa_7_8_6@yahoo.com

Ques:- how do i compose the text message in the yahoomail using descriptive programming in QTP?
Recent Answer : Added by Admin On 2020-05-17 11:40:48:

even i need answer

Scroll to top