A Flash Developer Resource Site

Search:

Type: Posts; User: zeroreality

Page 1 of 6 1 2 3 4

Search: Search took 0.18 seconds.

  1. im trying to avoid complicated code. the reason...

    im trying to avoid complicated code. the reason the system works right now with 'base' is because its very very easy to change.

    base can change from http://localhost to http://www.website.com to...
  2. alright ASP.NET developers, how do i use a variable in ascx AND aspx pages?

    i got me a header.ascx, a navigation.ascx, a footer_nav.ascx, and a trailer.ascx

    i do this in the header.ascx


    <%
    public base as string = "http://localhost"
    %>
    --- skip ahead skip ahead...
  3. Replies
    1
    Views
    633

    if (document.location ==...

    if (document.location == "<home-path>/<file.php>") {
    imgsDir = "images/"
    } else {
    imgsDir = "../images/"
    }


    then refer to all your images in the JS by
    imgsDir + "filename.jpg"
    instead of
  4. ASP.NET - using the Cache and Session in a Module

    how does one do it? i cant get it to work.



    Module Module1
    Public WithEvents myGateway As GatewayClient.GatewayXML

    Public Sub checkGatewayObj(ByVal Cache As...
  5. after some more intense research, i found out...

    after some more intense research, i found out something.

    ASP.NET automatically stores all the information you need. so if you submit a form to itself, the form fields are automatically...
  6. ASP.NET need help maintaining object from page-to-page

    Hi!
    I'm rather new to the ASP.NET architecture, but I am impressed none-the-less with Microsoft... for a second time.

    I'm re-developing a site for my employer with the use of ASP.NET. The site...
  7. Replies
    107
    Views
    17,895

    MAD PROPS TO jstarkey AND mmarkin FOR RESTORING...

    MAD PROPS TO jstarkey AND mmarkin FOR RESTORING MY ACCOUNT!!!!!!!!
  8. Replies
    1
    Views
    438

    open window in foreground

    im making a stand alone kiosk for our company

    and it will run full screen, but will need to open 3 websites (that we define)

    but when i do a:
    getURL("http://yadayadayada");
    the website opens...
  9. figured it out ORDER BY MID(Name,INSTR(Name,'...

    figured it out

    ORDER BY MID(Name,INSTR(Name,' ')+1,LENGTH(Name))

    this seems to do everything i need :)
  10. Replies
    1
    Views
    638

    you'll need a IP forwarder like www.no-ip.com ...

    you'll need a IP forwarder like www.no-ip.com

    my home computer does basically the same thing, so i gave my computer a dynamic ip so i could test things...

    problem is that every time you turn on...
  11. Help with MY MySQL Query (sorta advanced)

    i have the JOY of making a flash kiosk thing for our company's front door (so they dont have to pay for someone at the front desk)

    anyway, this is what i have.


    SELECT
    ID,
    Name,
    Email,...
  12. Replies
    3
    Views
    628

    try this: SELECT table1.name, table1.date,...

    try this:


    SELECT
    table1.name,
    table1.date,
    table1.time
    FROM table1, table2
    WHERE table1.name = table2.name
    GROUP BY table1.name
  13. Replies
    3
    Views
    394

    3 cheers for oldnewbie oldnewbie = new Object()...

    3 cheers for oldnewbie
    oldnewbie = new Object()
    oldnewbie.posts = FK.forum.posts
    oldnewbie.ego++:)
    i submit my thanx for your help as well
  14. Replies
    3
    Views
    483

    THATS the one dont you hate it when you forget...

    THATS the one
    dont you hate it when you forget what a method is called?

    thanx alot :)
  15. Replies
    4
    Views
    938

    http://surface.yugop.com/ click on the 24th...

    http://surface.yugop.com/
    click on the 24th little circle at the bottom

    might give you a beter idea of how it works

    incidently this is the company/team that made the nikelabs website. the...
  16. Replies
    3
    Views
    483

    is there a Flash 5 z-index

    ive got one of these right?
    but problems occur when the targetWidth/targetHeight get so big they overlap another MC
    // function for elastic motion
    // obj the value to affect
    // pdst the...
  17. yes then change back to my other custom cursor...

    yes
    then change back to my other custom cursor when the button is 'mouseOut'ed

    kinda complicated... just looking for an easier way than the one im currently using
  18. Replies
    2
    Views
    914

    thanx a bunch :) i got it working with a...

    thanx a bunch :)
    i got it working with a different method tho

    turns out that Flash 5 and FlashMX have very different ways of handling POST data

    i used this

    onClipEvent (load) {...
  19. Replies
    2
    Views
    400

    displayVariableName = int(loadedDecimalValue) +...

    displayVariableName = int(loadedDecimalValue) + "%":)
  20. can you track mouseOver events from outside the button?

    what i have is a component that i've written that basically hides YOUR mouse and replaces it with my own custom mose (yay)

    anyway, im looking for an EASY way to automatically change my custom...
  21. many thanx

    many thanx
  22. how do you make a multi-dimmensional array?

    i need to reference stuff in a 2D array

    arrPeople[0,i] and so on

    any way of doing this?
  23. Replies
    1
    Views
    788

    forgot to post this im using Flash 5

    forgot to post this

    im using Flash 5
  24. Replies
    2
    Views
    914

    sending POST data to an ASP file

    i saw the code somewhere to do it, it was something LIKE this
    im looking for clarification

    new loadVars()
    loadVars[0] = somevar
    loadVars[1] = somevar
    loadVars[2] = somevar...
  25. Replies
    1
    Views
    788

    sending POST data to an ASP file

    i saw the code somewhere to do it, it was something LIKE this
    im looking for clarification


    new loadVars()
    loadVars[0] = somevar
    loadVars[1] = somevar
    loadVars[2] = somevar
    loadvars.send()
Results 1 to 25 of 132
Page 1 of 6 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center