Ask a Question related to Macromedia Director Basics, Design and Development.
-
Ruku webforumsuser@macromedia.com #1
What am I doing wrong
I am trying to fade in an image over time, however the image keeps blinking, it fades in all the time. Below is my script.
on exitFrame me
go to the frame
on beginSprite me
startTimer
end
on enterFrame me
if the timer >=100 then
sprite(2).member=member"gallery40"
repeat with b = 1 to 100
sprite(2).blend =b
updateStage
end repeat
end if
end
JJ
Ruku webforumsuser@macromedia.com Guest
-
something wrong..
I want to integrate following php-file into my Flash-movie, but something still does not work. The Php-file is like that: Online it looks like... -
What am I doing wrong?
> rs.Source="SELECT id From User Where upper I asked this before... Try sql = "SELECT id FROM user WHERE UPPER(cLoginID) = '" & vUserID &... -
What is wrong?
Take a look at your Stored Procedure. It takes a wide variety of data types. But in your code, you use an overloaded version of the Add() method of... -
What am I doing wrong???!?!
I have a simple form that based on the the two inputs, ExAD_Tracking and ExAD_DateEntered, will query the database and display the records... -
What am I doing wrong with this SP??
Gives me a NULL value at this line. and I know it has a 1 myShippingDetails.theShippingType = CStr(parametertheShippingType.Value) Public... -
JB #2
Re: What am I doing wrong
the fade inside of the b loop advanes soo quickly, one probably doesnt
see the fade, either add a delay time inside fo the fade loop, or use
score frame rate to do fade, like below example (Not sure what your
timer code was to d0)
on exitFrame me
go to the frame
on beginSprite me
sprite(2).blend = 0 -- better to establish this with score setting
end
on enterFrame me
if sprite(2).blend < 100 then
sprite(2).blend = sprite(2).blend + 4 -- inc. each frame
-- try larger value for faster fade
end if
end
JB Guest
-
srathin #3
what am i doing wrong
I'm getting the following error when i access a method in my webservice from
the aspx layer.Please help me understand. thanks
1) Exception Information
*********************************************
Exception Type: System.Web.Services.Protocols.SoapException
Actor:
Code: [url]http://schemas.xmlsoap.org/soap/envelope/:Server[/url]
Detail: System.Xml.XmlElement
Message: System.Web.Services.Protocols.SoapException: Server was unable to
process request. ---> System.InvalidOperationException: There was an error
generating the XML document. ---> System.InvalidCastException: At least one
element in the source array could not be cast down to the destination array
type.
at System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array
destinationArray, Int32 destinationIndex, Int32 length)
at System.Collections.ArrayList.ToArray(Type type)
at Qwest.DCP.DAO.Contracts.GetRCBSCodes(String Acronym) in
c:\dcp\dcpdao\contracts.cs:line 346
at Qwest.DCP.DAO.ApplicationDataResponse.get_RCBSCode () in
c:\dcp\dcpdao\applicationdataresponse.cs:line 59
at
Microsoft.Xml.Serialization.GeneratedAssembly.XmlS erializationWriter1.Write6_ApplicationDataResponse (String
n, String ns, ApplicationDataResponse o, Boolean isNullable, Boolean needType)
at
Microsoft.Xml.Serialization.GeneratedAssembly.XmlS erializationWriter1.Write52_getApplicationsRespons e(Object[] p)
--- End of inner exception stack trace ---
at System.Xml.Serialization.XmlSerializer.Serialize(X mlWriter xmlWriter,
Object o, XmlSerializerNamespaces namespaces, String encodingStyle)
at System.Xml.Serialization.XmlSerializer.Serialize(X mlWriter xmlWriter,
Object o, XmlSerializerNamespaces namespaces)
at System.Web.Services.Protocols.SoapServerProtocol.W riteReturns(Object[]
returnValues, Stream outputStream)
at System.Web.Services.Protocols.WebServiceHandler.Wr iteReturns(Object[]
returnValues)
at System.Web.Services.Protocols.WebServiceHandler.In voke()
--- End of inner exception stack trace ---
TargetSite: System.Object[]
ReadResponse(System.Web.Services.Protocols.SoapCli entMessage,
System.Net.WebResponse, System.IO.Stream, Boolean)
HelpLink: NULL
Source: System.Web.Services
StackTrace Information
*********************************************
at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)
at
Qwest.DCP.UI.SMVTService.SMVTracker.getApplication s(ApplicationDataRequest
requestPms) in c:\inetpub\wwwroot\dcpui\web
references\smvtservice\reference.cs:line 227
at Qwest.DCP.UI.CreateSMVT.ddlApp_SelectedIndexChange d(Object sender,
EventArgs e) in c:\inetpub\wwwroot\dcpui\createsmvt.aspx.cs:line 340
srathin Guest



Reply With Quote

